Skip to content
Snippets Groups Projects
Commit a8bd69cf authored by scott snyder's avatar scott snyder
Browse files

GeneratorObjectsTPCnv: Clear flow information when reading.

For versions p2, p3, and p4, we weren't clearing flow information before
filling it.  Since these objects are managed by a DataPool, than means
that the flow information is garbage when we read these versions.
Fixed.

See ATLASSIM-5403.
parent 8594a3d5
No related branches found
No related tags found
No related merge requests found
......@@ -288,6 +288,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 );
......
......@@ -315,6 +315,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 );
......
......@@ -537,6 +537,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