You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// loop over McCollisions and UDCCs simultaneously
689
692
auto mccol = mccols.iteratorAt(0);
690
693
auto mcOfInterest = std::find(generatorIds->begin(), generatorIds->end(), mccol.getGeneratorId()) != generatorIds->end();
694
+
if (verboseInfoMC)
695
+
LOGF(info, "Is Generator ID OK %d, MCcoll GenId %d, SubGenID %d, SourceId %d, Set in json ID %d", mcOfInterest, mccol.getGeneratorId(), mccol.getSubGeneratorId(), mccol.getSourceId(), *(generatorIds->begin()));
691
696
auto lastmccol = mccols.iteratorAt(mccols.size() - 1);
692
697
auto mccolAtEnd = false;
693
698
@@ -701,6 +706,7 @@ struct McSGCandProducer {
701
706
bool goon = true;
702
707
while (goon) {
703
708
auto globBC = mccol.bc_as<BCs>().globalBC();
709
+
704
710
// check if dgcand has an associated McCollision
705
711
if (sgcand.has_collision()) {
706
712
auto sgcandCol = sgcand.collision_as<CCs>();
@@ -875,6 +881,7 @@ struct McSGCandProducer {
875
881
LOGF(info, "Number of McCollisions %d", mccols.size());
876
882
LOGF(info, "Number of SG candidates %d", sgcands.size());
877
883
LOGF(info, "Number of UD tracks %d", udtracks.size());
884
+
LOGF(info, "Number of McParticles %d", mcparts.size());
0 commit comments