Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PWGHF/HFC/TableProducer/correlatorXicHadrons.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1574,13 +1574,13 @@ struct HfCorrelatorXicHadrons {
if (IsXicPlus) {
// Final state: p, pi-, pi-, pi+, pi+
std::array<int, XicDecayDaughtersCount::XicPlusDaughtersCount> const arrDaughXicPlusPDG = {kProton, kPiMinus, kPiMinus, kPiPlus, kPiPlus};

// Pass -1 to automatically traverse the entire cascade down to the final state
RecoDecay::getDaughters(particle, &listDaughters, arrDaughXicPlusPDG);
} else {
// Final state: p, pi-, pi-, pi+
std::array<int, XicDecayDaughtersCount::Xic0DaughtersCount> const arrDaughXic0PDG = {kProton, kPiMinus, kPiMinus, kPiPlus};

// Pass -1 to automatically traverse the entire cascade down to the final state
RecoDecay::getDaughters(particle, &listDaughters, arrDaughXic0PDG);
}
Expand Down
Loading