Skip to content

Commit

Permalink
Merge pull request #122 from EmanuelPerez/RecoUpdates_from_GM
Browse files Browse the repository at this point in the history
Bug fix in ReconstructedParticle::remove (a break statement had been …
  • Loading branch information
clementhelsens committed Mar 7, 2022
2 parents 362ffba + 81b22fb commit ce7853d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/dataframe/ReconstructedParticle.cc
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ ROOT::VecOps::RVec<edm4hep::ReconstructedParticleData> ReconstructedParticle::re
abs(py1-py2) < epsilon &&
abs(pz1-pz2) < epsilon ) {
result.erase(it);
//break;
break;
}
}
}
Expand Down

0 comments on commit ce7853d

Please sign in to comment.