Skip to content
Snippets Groups Projects
Commit 12de4a54 authored by Edward Moyse's avatar Edward Moyse Committed by Atlas Nightlybuild
Browse files

Merge branch 'flow.GeneratorObjectsTPCnv-20210917' into 'master'

GeneratorObjectsTPCnv: Clear flow information when reading.

See merge request atlas/athena!46581

(cherry picked from commit 5c99a242)

a8bd69cf GeneratorObjectsTPCnv: Clear flow information when reading.
parent 2cc0097f
No related branches found
Tags v8r9-pre3
No related merge requests found
......@@ -245,6 +245,7 @@ McEventCollectionCnv_p2::createGenParticle( const GenParticle_p2& persPart,
// fillin' the flow
const unsigned int nFlow = persPart.m_flow.size();
p->m_flow.clear();
for ( unsigned int iFlow= 0; iFlow != nFlow; ++iFlow ) {
p->m_flow.set_icode( persPart.m_flow[iFlow].first,
persPart.m_flow[iFlow].second );
......
......@@ -277,6 +277,7 @@ McEventCollectionCnv_p3::createGenParticle( const GenParticle_p3& persPart,
// setup flow
const unsigned int nFlow = persPart.m_flow.size();
p->m_flow.clear();
for ( unsigned int iFlow= 0; iFlow != nFlow; ++iFlow ) {
p->m_flow.set_icode( persPart.m_flow[iFlow].first,
persPart.m_flow[iFlow].second );
......
......@@ -403,6 +403,7 @@ McEventCollectionCnv_p4::createGenParticle( const GenParticle_p4& persPart,
// setup flow
const unsigned int nFlow = persPart.m_flow.size();
p->m_flow.clear();
for ( unsigned int iFlow= 0; iFlow != nFlow; ++iFlow )
{
p->m_flow.set_icode( persPart.m_flow[iFlow].first,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment