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
!58971
Update GenEvent.h to add functions which return the whole maps
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update GenEvent.h to add functions which return the whole maps
averbyts-master-patch-20298
into
master
Overview
9
Commits
1
Pipelines
1
Changes
1
All threads resolved!
Show all comments
Merged
Andrii Verbytskyi
requested to merge
averbyts-master-patch-20298
into
master
2 years ago
Overview
9
Commits
1
Pipelines
1
Changes
1
All threads resolved!
Show all comments
Expand
Update GenEvent.h to add functions which return the whole maps
Tag
@jchapman
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
88a95cfe
1 commit,
2 years ago
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Generators/AtlasHepMC/AtlasHepMC/GenEvent.h
+
2
−
1
Options
@@ -94,7 +94,8 @@ public:
}
}
}
std
::
unordered_map
<
int
,
GenVertexPtr
>
barcode_to_vertex_map
()
const
{
return
m_vertexBC
;
}
+1
std
::
unordered_map
<
int
,
GenParticlePtr
>
barcode_to_particle_map
()
const
{
return
m_particleBC
;
}
private
:
std
::
unordered_map
<
int
,
GenVertexPtr
>
m_vertexBC
;
std
::
unordered_map
<
int
,
GenParticlePtr
>
m_particleBC
;
Loading