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
!64174
Attempt to create a non-recursive fromDecay in the FixHepMC
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Attempt to create a non-recursive fromDecay in the FixHepMC
averbyts/athena:nonrecursivefromdecay
into
23.0
Overview
39
Commits
14
Pipelines
6
Changes
2
Merged
Andrii Verbytskyi
requested to merge
averbyts/athena:nonrecursivefromdecay
into
23.0
1 year ago
Overview
39
Commits
14
Pipelines
6
Changes
2
Expand
Attempt to create a non-recursive fromDecay in the FixHepMC
@ewelina
0
0
Merge request reports
Compare
23.0
version 5
9ce23d87
1 year ago
version 4
6e42df03
1 year ago
version 3
c1bcb17d
1 year ago
version 2
a9080304
1 year ago
version 1
ff654e42
1 year ago
23.0 (base)
and
latest version
latest version
4d745c91
14 commits,
1 year ago
version 5
9ce23d87
13 commits,
1 year ago
version 4
6e42df03
11 commits,
1 year ago
version 3
c1bcb17d
10 commits,
1 year ago
version 2
a9080304
9 commits,
1 year ago
version 1
ff654e42
8 commits,
1 year ago
2 files
+
24
−
11
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/EvgenProdTools/EvgenProdTools/FixHepMC.h
+
4
−
1
Options
@@ -8,6 +8,9 @@
#define FIX_HEPMC
#include
"GeneratorModules/GenBase.h"
#include
"AtlasHepMC/GenParticle.h"
#include
<set>
#include
<memory>
/// @brief A "fix-up" algorithm to correct weird event records
@@ -39,7 +42,7 @@ private:
bool
isPID0
(
const
HepMC
::
ConstGenParticlePtr
&
p
)
const
;
bool
isNonTransportableInDecayChain
(
const
HepMC
::
ConstGenParticlePtr
&
p
)
const
;
bool
isLoop
(
const
HepMC
::
ConstGenParticlePtr
&
p
)
const
;
bool
fromDecay
(
const
HepMC
::
ConstGenParticlePtr
&
p
)
const
;
bool
fromDecay
(
const
HepMC
::
ConstGenParticlePtr
&
p
,
std
::
shared_ptr
<
std
::
set
<
int
>
>&
storage
)
const
;
//@}
/// @name Config properties
Loading