Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!71554
MuonReadoutGeometry - Plugin all subvolumes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MuonReadoutGeometry - Plugin all subvolumes
jojungge/athena:FixMmVolTrans
into
main
Overview
7
Commits
1
Pipelines
0
Changes
1
Merged
Johannes Junggeburth
requested to merge
jojungge/athena:FixMmVolTrans
into
main
10 months ago
Overview
7
Commits
1
Pipelines
0
Changes
1
Expand
Should fix exceptions in the R4 -> legacy readout geometry conversion
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
01118309
1 commit,
10 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
MuonSpectrometer/MuonDetDescr/MuonReadoutGeometry/src/MMReadoutElement.cxx
+
1
−
1
Options
@@ -92,7 +92,7 @@ namespace MuonGM {
ATH_MSG_DEBUG
(
"Expected a GeoTrd but got "
<<
printGeoShape
(
pvc
->
getLogVol
()
->
getShape
()));
}
std
::
vector
<
GeoChildNodeWithTrf
>
children
{
get
ChildrenWithRef
(
pvc
,
false
)};
std
::
vector
<
GeoChildNodeWithTrf
>
children
{
get
AllSubVolumes
(
pvc
)};
for
(
const
GeoChildNodeWithTrf
&
child
:
children
)
{
ATH_MSG_VERBOSE
(
"Child node "
<<
child
.
nodeName
<<
" "
<<
child
.
volume
->
getLogVol
()
->
getName
());
if
(
child
.
volume
->
getLogVol
()
->
getName
().
find
(
"Sensitive"
)
==
std
::
string
::
npos
)
{
Loading