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
!39295
Hepmc3 nightly fixes 17122020 part 2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Hepmc3 nightly fixes 17122020 part 2
averbyts/athena:hepmc3_nightly_fixes_17122020_part_2
into
master
Overview
6
Commits
6
Pipelines
3
Changes
1
Merged
Andrii Verbytskyi
requested to merge
averbyts/athena:hepmc3_nightly_fixes_17122020_part_2
into
master
4 years ago
Overview
6
Commits
6
Pipelines
3
Changes
1
Expand
In this MR:
Migration of the recent update to Pythia8 interface to hepmc3.
Edited
4 years ago
by
Andrii Verbytskyi
0
0
Merge request reports
Compare
master
version 2
edaa9b1b
4 years ago
version 1
b5b9fb53
4 years ago
master (base)
and
latest version
latest version
e3acfef6
6 commits,
4 years ago
version 2
edaa9b1b
3 commits,
4 years ago
version 1
b5b9fb53
2 commits,
4 years ago
1 file
+
21
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Generators/Pythia8_i/src/Pythia8_i.cxx
+
21
−
0
Options
@@ -606,6 +606,26 @@ StatusCode Pythia8_i::genFinalize(){
////////////////////////////////////////////////////////////////////////////////
void
Pythia8_i
::
addLHEToHepMC
(
HepMC
::
GenEvent
*
evt
){
#ifdef HEPMC3
HepMC
::
GenEvent
*
procEvent
=
new
HepMC
::
GenEvent
();
// Adding the LHE event to the HepMC results in undecayed partons in the event record.
// Pythia's HepMC converter throws up undecayed partons, so we ignore that
// (expected) exception this time
m_pythiaToHepMC
.
fill_next_event
(
m_pythia
->
process
,
procEvent
,
evt
->
event_number
(),
&
m_pythia
->
info
,
&
m_pythia
->
settings
);
for
(
auto
p
:
*
procEvent
){
p
->
set_status
(
1003
);
}
//This code and the HepMC2 version below assume a correct input, e.g. beams[0]->end_vertex() exists.
for
(
auto
v
:
procEvent
->
vertices
())
v
->
set_status
(
1
);
auto
beams
=
evt
->
beams
();
auto
procBeams
=
procEvent
->
beams
();
if
(
beams
[
0
]
->
momentum
().
pz
()
*
procBeams
[
0
]
->
momentum
().
pz
()
<
0.
)
std
::
swap
(
procBeams
[
0
],
procBeams
[
1
]);
for
(
auto
p
:
procBeams
[
0
]
->
end_vertex
()
->
particles_out
())
beams
[
0
]
->
end_vertex
()
->
add_particle_out
(
p
);
for
(
auto
p
:
procBeams
[
1
]
->
end_vertex
()
->
particles_out
())
beams
[
1
]
->
end_vertex
()
->
add_particle_out
(
p
);
#else
HepMC
::
GenEvent
*
procEvent
=
new
HepMC
::
GenEvent
(
evt
->
momentum_unit
(),
evt
->
length_unit
());
// Adding the LHE event to the HepMC results in undecayed partons in the event record.
@@ -668,6 +688,7 @@ void Pythia8_i::addLHEToHepMC(HepMC::GenEvent *evt){
vit
=
vtxCopies
.
find
((
*
p
)
->
end_vertex
());
if
(
vit
!=
vtxCopies
.
end
())
vit
->
second
->
add_particle_in
(
pCopy
);
}
#endif
return
;
}
Loading