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/correlatorDplusHadrons.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ struct HfCorrelatorDplusHadrons {
if (std::abs(yD) >= yCandMax || particle1.pt() <= ptCandMin) {
continue;
}
std::vector<int> listDaughters{};
std::vector<int> listDaughters{};
std::array<int, NDaughters> const arrDaughDplusPDG = {+kPiPlus, -kKPlus, kPiPlus};
std::array<int, NDaughters> prongsId{};
listDaughters.clear();
Expand All @@ -584,7 +584,7 @@ struct HfCorrelatorDplusHadrons {
if (!isDaughtersOk)
continue; // Skip this D+ candidate if any daughter fails eta cut
counterDplusHadron++;

registry.fill(HIST("hDplusBin"), poolBin);
registry.fill(HIST("hPtCandMCGen"), particle1.pt());
registry.fill(HIST("hEtaMcGen"), particle1.eta());
Expand Down
Loading