From 4e5bc1265a0f061e6150e287a20cc58966256546 Mon Sep 17 00:00:00 2001 From: Chiara De Martin Date: Tue, 24 Feb 2026 11:16:21 +0100 Subject: [PATCH] addition of one histogram for rapidities --- PWGLF/TableProducer/Strangeness/cascadeflow.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PWGLF/TableProducer/Strangeness/cascadeflow.cxx b/PWGLF/TableProducer/Strangeness/cascadeflow.cxx index d3439736b36..d342a3effcd 100644 --- a/PWGLF/TableProducer/Strangeness/cascadeflow.cxx +++ b/PWGLF/TableProducer/Strangeness/cascadeflow.cxx @@ -930,6 +930,7 @@ struct cascadeFlow { histos.add("hv2CEPvsv2CSP", "hv2CEPvsV2CSP", HistType::kTH2F, {{100, -1, 1}, {100, -1, 1}}); histos.add("hv1EPvsv1SP", "hV1EPvsV1SP", HistType::kTH2F, {{100, -1, 1}, {100, -1, 1}}); histos.add("hv1SP_ZDCA_vs_ZDCC", "hv1SP_ZDCA_vs_ZDCC", HistType::kTH2F, {{100, -1, 1}, {100, -1, 1}}); + histos.add("hV0RapidityvsPt", "hV0RapidityvsPt", HistType::kTH2F, {{100, 0, 10}, {100, -2, 2}}); histos.add("hEtaV0", "hEtaV0", HistType::kTH1F, {{100, -1, 1}}); histos.add("hEtaV0posDau", "hEtaV0posDau", HistType::kTH1F, {{100, -1, 1}}); histos.add("hEtaV0negDau", "hEtaV0negDau", HistType::kTH1F, {{100, -1, 1}}); @@ -2039,6 +2040,7 @@ struct cascadeFlow { if (!isSelectedV0[0] && !isSelectedV0[1]) continue; + histos.fill(HIST("hV0RapidityvsPt"), v0.pt(), v0.yLambda()); histos.fill(HIST("hEtaV0"), v0.eta()); Float_t posDauEta = RecoDecay::eta(std::array{v0.pxpos(), v0.pypos(), v0.pzpos()}); histos.fill(HIST("hEtaV0posDau"), posDauEta);