Skip to content
Merged
Changes from 2 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: 4 additions & 0 deletions PWGHF/D2H/Tasks/taskDirectedFlowCharmHadrons.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ struct HfTaskDirectedFlowCharmHadrons {
registry.add("hpQytQypvscent", "hpQytQypvscent", HistType::kTHnSparseF, {thnAxisCent, thnAxisScalarProd}, true);
registry.add("hpQxtQypvscent", "hpQxtQypvscent", HistType::kTHnSparseF, {thnAxisCent, thnAxisScalarProd}, true);
registry.add("hpQxpQytvscent", "hpQxpQytvscent", HistType::kTHnSparseF, {thnAxisCent, thnAxisScalarProd}, true);
registry.add("hpQxtQxpvsmass", "hpQxtQxpvsmass", HistType::kTHnSparseF, {thnAxisInvMass, thnAxisScalarProd}, true);
registry.add("hpQytQypvsmass", "hpQytQypvsmass", HistType::kTHnSparseF, {thnAxisInvMass, thnAxisScalarProd}, true);
registry.add("hpuxQxpvscentpteta", "hpuxQxpvscentpteta", HistType::kTHnSparseF, axes, true);
registry.add("hpuyQypvscentpteta", "hpuyQypvscentpteta", HistType::kTHnSparseF, axes, true);
registry.add("hpuxQxtvscentpteta", "hpuxQxtvscentpteta", HistType::kTHnSparseF, axes, true);
Expand Down Expand Up @@ -336,6 +338,8 @@ struct HfTaskDirectedFlowCharmHadrons {
registry.fill(HIST("hpuyQypvscentpteta"), massCand, cent, ptCand, etaCand, uyQyp, sign, outputMl[0], outputMl[1]);
registry.fill(HIST("hpuxQxtvscentpteta"), massCand, cent, ptCand, etaCand, uxQxt, sign, outputMl[0], outputMl[1]);
registry.fill(HIST("hpuyQytvscentpteta"), massCand, cent, ptCand, etaCand, uyQyt, sign, outputMl[0], outputMl[1]);
registry.fill(HIST("hpQxtQxpvsmass"), massCand, qxtQxp);
Comment thread
alicamarie marked this conversation as resolved.
Outdated
registry.fill(HIST("hpQytQypvsmass"), massCand, qytQyp);
Comment thread
alicamarie marked this conversation as resolved.
Outdated

registry.fill(HIST("hpuxvscentpteta"), massCand, cent, ptCand, etaCand, ux, sign, outputMl[0], outputMl[1]);
registry.fill(HIST("hpuyvscentpteta"), massCand, cent, ptCand, etaCand, uy, sign, outputMl[0], outputMl[1]);
Expand Down
Loading