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
!72387
MuonPRDTestR4: HepMC2 compatibility.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MuonPRDTestR4: HepMC2 compatibility.
ssnyder/athena:hepmc2.MuonPRDTestR4-20240620
into
main
Overview
8
Commits
1
Pipelines
1
Changes
1
Merged
Scott Snyder
requested to merge
ssnyder/athena:hepmc2.MuonPRDTestR4-20240620
into
main
8 months ago
Overview
8
Commits
1
Pipelines
1
Changes
1
Expand
Fix compilation with HepMC2.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
9766d60c
1 commit,
8 months ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
MuonSpectrometer/MuonPhaseII/MuonValidation/MuonPRDTestR4/Root/SimHitTester.cxx
+
2
−
2
Options
@@ -60,7 +60,7 @@ namespace MuonValR4{
const
Amg
::
Transform3D
&
locToGlobal
{
re
->
localToGlobalTrans
(
gctx
,
trfHash
)};
m_globPos
.
push_back
(
locToGlobal
*
locPos
);
m_globDir
.
push_back
(
locToGlobal
.
linear
()
*
locDir
);
m_globDir
.
push_back
(
Amg
::
Vector3D
(
locToGlobal
.
linear
()
*
locDir
)
)
;
m_locPos
.
push_back
(
locPos
);
m_locDir
.
push_back
(
locDir
);
m_globTime
.
push_back
(
simHit
->
globalTime
());
@@ -74,4 +74,4 @@ namespace MuonValR4{
return
true
;
}
}
\ No newline at end of file
}
Loading