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
Copy file name to clipboardExpand all lines: PWGHF/Tasks/HFMCValidation.cxx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -325,7 +325,7 @@ struct ValidationRecLevel {
325
325
auto collision = track.collision_as<CollisionsWithMCLabels>();
326
326
auto mcCollision = particle.mcCollision();
327
327
uint index2 = 2;
328
-
if ((collision.mcCollisionId() - particle.mcCollisionId()) && std::abs(collision.posZ() - mcCollision.posZ()) < 0.02) { // 200 microns compatibility of Z vertex position also required
328
+
if ((collision.mcCollisionId() == particle.mcCollisionId()) && std::abs(collision.posZ() - mcCollision.posZ()) < 0.02) { // 200 microns compatibility of Z vertex position also required
0 commit comments