We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c04fec commit c9831f7Copy full SHA for c9831f7
PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx
@@ -920,9 +920,7 @@ struct HfCorrelatorDsHadrons {
920
}
921
if (std::abs(candidate.flagMcMatchRec()) == hf_decay::hf_cand_3prong::DecayChannelMain::DsToPiKK) {
922
// DsToKKPi and DsToPiKK division
923
- if (candidate.isSelDsToKKPi() >= selectionFlagDs) {
924
- fillHistoMcRecSig(candidate, 0.);
925
- } else if (candidate.isSelDsToPiKK() >= selectionFlagDs) {
+ if (candidate.isSelDsToKKPi() >= selectionFlagDs || candidate.isSelDsToPiKK() >= selectionFlagDs) {
926
fillHistoMcRecSig(candidate, 0.);
927
928
} else {
0 commit comments