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
!34852
Genz module const correctness
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Genz module const correctness
averbyts/athena:GenzModuleEvent_const
into
master
Overview
9
Commits
3
Pipelines
2
Changes
2
All threads resolved!
Show all comments
Merged
Andrii Verbytskyi
requested to merge
averbyts/athena:GenzModuleEvent_const
into
master
4 years ago
Overview
9
Commits
3
Pipelines
2
Changes
2
All threads resolved!
Show all comments
Expand
In this MR:
Const correctness for the GenzModuleEvent
0
0
Merge request reports
Compare
master
version 1
918fdd8e
4 years ago
master (base)
and
latest version
latest version
c3013895
3 commits,
4 years ago
version 1
918fdd8e
2 commits,
4 years ago
2 files
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Generators/GenzModuleEvent/GenzModuleEvent/KineHepMcmap.h
+
2
−
2
Options
@@ -13,8 +13,8 @@ class KineHepMcmap
public:
KineHepMcmap
(
const
HepMC
::
GenEvent
*
evt
);
int
giveParticle_getkine
(
HepMC
::
GenParticlePtr
p
)
const
;
HepMC
::
GenParticlePtr
givekine_getParticle
(
const
int
ikine
)
const
;
int
giveParticle_getkine
(
HepMC
::
Const
GenParticlePtr
p
)
const
;
+1
HepMC
::
Const
GenParticlePtr
givekine_getParticle
(
const
int
ikine
)
const
;
private:
const
HepMC
::
GenEvent
*
m_evt
;
const
int
m_kine_offset
;
Loading