We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbda522 commit ab70391Copy full SHA for ab70391
Analysis/Tasks/PWGHF/taskDPlus.cxx
@@ -62,6 +62,11 @@ struct TaskDPlus {
62
void process(aod::HfCandProng3 const& candidates)
63
{
64
for (auto& candidate : candidates) {
65
+ //apply only candidate pre-selections for the moment, not possible in Filter
66
+ //since expressions do not support binary operators
67
+ if (!(candidate.hfflag() & DPlusToPiKPi)) {
68
+ continue;
69
+ }
70
registry.fill(HIST("hMass"), InvMassDPlus(candidate));
71
registry.fill(HIST("hPt"), candidate.pt());
72
registry.fill(HIST("hEta"), candidate.eta());
0 commit comments