Skip to content

Commit e396a16

Browse files
authored
[PWGLF] Bug fix (#9054)
1 parent 6ad1f65 commit e396a16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ struct HyperNucCandidate {
350350
}
351351
KFParticle getDaughterTrackKfp(int track)
352352
{
353-
return kfpDaughters.at(track + isCascade() ? 1 : 0);
353+
return kfpDaughters.at(track + (isCascade() ? 1 : 0));
354354
}
355355
float getDcaTrackToVtxXY(int track, std::vector<float> vtx)
356356
{

0 commit comments

Comments
 (0)