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
//Printf("MC Rec: Rejected: too many direct daughters: %d (expected %ld final)", indexDaughterLast - indexDaughterFirst + 1, N);
751
751
return -1;
752
752
}
@@ -766,7 +766,7 @@ class RecoDecay
766
766
// Check that the daughter is in the list of final daughters.
767
767
// (Check that the daughter is not a stepdaughter, i.e. particle pointing to the mother while not being its daughter.)
768
768
bool isDaughterFound = false; // Is the index of this prong among the remaining expected indices of daughters?
769
-
for (auto iD = 0; iD < arrAllDaughtersIndex.size(); ++iD) {
769
+
for (std::size_t iD = 0; iD < arrAllDaughtersIndex.size(); ++iD) {
770
770
if (arrDaughtersIndex[iProng] == arrAllDaughtersIndex[iD]) {
771
771
arrAllDaughtersIndex[iD] = -1; // Remove this index from the array of expected daughters. (Rejects twin daughters, i.e. particle considered twice as a daughter.)
772
772
isDaughterFound = true;
@@ -781,7 +781,7 @@ class RecoDecay
781
781
auto PDGParticleI = particleI.pdgCode(); // PDG code of the ith daughter
0 commit comments