Skip to content

Commit 97ad562

Browse files
[PWGHF,Trigger] fix a small mistake of the 3pfemto in the HF filter task (#10555)
1 parent 04d3771 commit 97ad562

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

EventFiltering/PWGHF/HFFilter.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1317,7 +1317,8 @@ struct HfFilter { // Main struct for HF triggers
13171317
}
13181318
}
13191319
}
1320-
} else if (isDeuteron && track.collisionId() == thisCollId) {
1320+
}
1321+
if (isDeuteron && track.collisionId() == thisCollId) {
13211322
for (int iHypo{0}; iHypo < kNCharmParticles - 1 && !keepEvent[kFemto3P]; ++iHypo) {
13221323
if (isCharmTagged[iHypo] && enableFemtoChannels->get(1u, iHypo + 1)) {
13231324
float relativeMomentum = helper.computeRelativeMomentum(pVecFourth, pVec3Prong, massCharmHypos[iHypo]);

0 commit comments

Comments
 (0)