Skip to content

Commit 161fa17

Browse files
ChiaraDeMartin95Chiara De Martin
andauthored
Addition of one histogram for rapidities (AliceO2Group#15134)
Co-authored-by: Chiara De Martin <chdemart@alicecerno2.cern.ch>
1 parent 0fc5c63 commit 161fa17

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

PWGLF/TableProducer/Strangeness/cascadeflow.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -930,6 +930,7 @@ struct cascadeFlow {
930930
histos.add("hv2CEPvsv2CSP", "hv2CEPvsV2CSP", HistType::kTH2F, {{100, -1, 1}, {100, -1, 1}});
931931
histos.add("hv1EPvsv1SP", "hV1EPvsV1SP", HistType::kTH2F, {{100, -1, 1}, {100, -1, 1}});
932932
histos.add("hv1SP_ZDCA_vs_ZDCC", "hv1SP_ZDCA_vs_ZDCC", HistType::kTH2F, {{100, -1, 1}, {100, -1, 1}});
933+
histos.add("hV0RapidityvsPt", "hV0RapidityvsPt", HistType::kTH2F, {{100, 0, 10}, {100, -2, 2}});
933934
histos.add("hEtaV0", "hEtaV0", HistType::kTH1F, {{100, -1, 1}});
934935
histos.add("hEtaV0posDau", "hEtaV0posDau", HistType::kTH1F, {{100, -1, 1}});
935936
histos.add("hEtaV0negDau", "hEtaV0negDau", HistType::kTH1F, {{100, -1, 1}});
@@ -2039,6 +2040,7 @@ struct cascadeFlow {
20392040
if (!isSelectedV0[0] && !isSelectedV0[1])
20402041
continue;
20412042

2043+
histos.fill(HIST("hV0RapidityvsPt"), v0.pt(), v0.yLambda());
20422044
histos.fill(HIST("hEtaV0"), v0.eta());
20432045
Float_t posDauEta = RecoDecay::eta(std::array{v0.pxpos(), v0.pypos(), v0.pzpos()});
20442046
histos.fill(HIST("hEtaV0posDau"), posDauEta);

0 commit comments

Comments
 (0)