From 7760c2a95d3e60c31e068e8fb77eff454a7cf3f9 Mon Sep 17 00:00:00 2001 From: Lucia Anna Tarasovicova Date: Mon, 31 Mar 2025 09:49:07 +0200 Subject: [PATCH 1/2] fix - adding histos to repository --- PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx b/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx index e5ae0c911ba..6e44c656ad9 100644 --- a/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx +++ b/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx @@ -840,6 +840,14 @@ struct HStrangeCorrelation { } } } + + if (TESTBIT(doCorrelation, 8)) { + histos.add("hAsssocTrackEtaVsPtVsPhi","", kTH3F, {axisPtQA, axisEta, axisPhi}); + histos.add("hAssocPrimaryEtaVsPt","", kTH3F, {axisPtQA, axisEta, axisMultNDim}); + histos.add("hAssocHadronsAllSelectedEtaVsPt","", kTH3F, {axisPtQA, axisEta, axisMultNDim}); + histos.add("hAssocPtResolution", ";p_{T}^{reconstructed} (GeV/c); p_{T}^{generated} (GeV/c)", kTH2F, {axisPtQA, axisPtQA}); + } + if (hStrange) { histos.addClone("sameEvent/Signal/", "sameEvent/LeftBg/"); histos.addClone("sameEvent/Signal/", "sameEvent/RightBg/"); From 0711b0633bf1c19d45e9394017eaa78982ca676f Mon Sep 17 00:00:00 2001 From: Lucia Anna Tarasovicova Date: Mon, 31 Mar 2025 09:54:49 +0200 Subject: [PATCH 2/2] clang --- PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx b/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx index 6e44c656ad9..97bf402dec3 100644 --- a/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx +++ b/PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx @@ -842,9 +842,9 @@ struct HStrangeCorrelation { } if (TESTBIT(doCorrelation, 8)) { - histos.add("hAsssocTrackEtaVsPtVsPhi","", kTH3F, {axisPtQA, axisEta, axisPhi}); - histos.add("hAssocPrimaryEtaVsPt","", kTH3F, {axisPtQA, axisEta, axisMultNDim}); - histos.add("hAssocHadronsAllSelectedEtaVsPt","", kTH3F, {axisPtQA, axisEta, axisMultNDim}); + histos.add("hAsssocTrackEtaVsPtVsPhi", "", kTH3F, {axisPtQA, axisEta, axisPhi}); + histos.add("hAssocPrimaryEtaVsPt", "", kTH3F, {axisPtQA, axisEta, axisMultNDim}); + histos.add("hAssocHadronsAllSelectedEtaVsPt", "", kTH3F, {axisPtQA, axisEta, axisMultNDim}); histos.add("hAssocPtResolution", ";p_{T}^{reconstructed} (GeV/c); p_{T}^{generated} (GeV/c)", kTH2F, {axisPtQA, axisPtQA}); }