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
!63921
G4AtlasAlg: Fix case where shadow truth event is not used (
ATLASSIM-6614
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
G4AtlasAlg: Fix case where shadow truth event is not used (
ATLASSIM-6614
)
jchapman/athena:FixATLASSIM-6614_23.0
into
23.0
Overview
5
Commits
1
Pipelines
1
Changes
1
All threads resolved!
Hide all comments
Merged
John Derek Chapman
requested to merge
jchapman/athena:FixATLASSIM-6614_23.0
into
23.0
1 year ago
Overview
5
Commits
1
Pipelines
1
Changes
1
All threads resolved!
Hide all comments
Expand
Fix bug in
G4AtlasAlg
accidentally introduced by
!63059 (merged)
.
0
0
Merge request reports
Compare
23.0
23.0 (base)
and
latest version
latest version
d7629844
1 commit,
1 year ago
1 file
+
2
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Simulation/G4Atlas/G4AtlasAlg/src/G4AtlasAlg.cxx
+
2
−
0
Options
@@ -360,6 +360,8 @@ StatusCode G4AtlasAlg::execute()
else
{
// copy input Evgen collection to output Truth collection
outputTruthCollection
=
std
::
make_unique
<
McEventCollection
>
(
*
inputTruthCollection
);
// empty shadow Truth collection
shadowTruth
=
std
::
make_unique
<
McEventCollection
>
();
// Apply QS patch if required
if
(
not
m_qspatcher
.
empty
()
)
{
for
(
HepMC
::
GenEvent
*
currentGenEvent
:
*
outputTruthCollection
)
{
Loading