Skip to content

Commit

Permalink
[PWGLF] Bug fix (#9054)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhartung71 authored Dec 18, 2024
1 parent 6ad1f65 commit e396a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGLF/TableProducer/Nuspex/hypKfRecoTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ struct HyperNucCandidate {
}
KFParticle getDaughterTrackKfp(int track)
{
return kfpDaughters.at(track + isCascade() ? 1 : 0);
return kfpDaughters.at(track + (isCascade() ? 1 : 0));
}
float getDcaTrackToVtxXY(int track, std::vector<float> vtx)
{
Expand Down

0 comments on commit e396a16

Please sign in to comment.