@@ -26,24 +26,24 @@ struct McConverter {
2626
2727 std::vector<int > mothers;
2828 if (p.mother0Id () >= 0 ) {
29- mothers.push_back (p.mother0Id ());
29+ mothers.push_back (p.mother0Id ());
3030 }
3131 if (p.mother1Id () >= 0 ) {
32- mothers.push_back (p.mother1Id ());
32+ mothers.push_back (p.mother1Id ());
3333 }
3434
35- int daughters[2 ] = { -1 , -1 };
35+ int daughters[2 ] = {-1 , -1 };
3636 if (p.daughter0Id () >= 0 && p.daughter1Id () >= 0 ) {
37- daughters[0 ] = p.daughter0Id ();
38- daughters[1 ] = p.daughter1Id ();
37+ daughters[0 ] = p.daughter0Id ();
38+ daughters[1 ] = p.daughter1Id ();
3939 } else if (p.daughter0Id () >= 0 ) {
40- daughters[0 ] = p.daughter0Id ();
41- daughters[1 ] = p.daughter0Id ();
40+ daughters[0 ] = p.daughter0Id ();
41+ daughters[1 ] = p.daughter0Id ();
4242 }
4343
4444 mcParticles_001 (p.mcCollisionId (), p.pdgCode (), p.statusCode (), p.flags (),
45- mothers, daughters, p.weight (), p.px (), p.py (), p.pz (), p.e (),
46- p.vx (), p.vy (), p.vz (), p.vt ());
45+ mothers, daughters, p.weight (), p.px (), p.py (), p.pz (), p.e (),
46+ p.vx (), p.vy (), p.vz (), p.vt ());
4747 }
4848 }
4949};
0 commit comments