Skip to content

Commit 7daab4f

Browse files
authored
[PWGCF] flowDirectedFlowTask.cxx: add histograms (#16579)
1 parent a9b88de commit 7daab4f

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

PWGCF/Flow/Tasks/flowDirectedFlowTask.cxx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,18 +114,19 @@ struct flowDirectedFlowTask {
114114
ConfigurableAxis centAxis{"centAxis", {VARIABLE_WIDTH, 0., 5., 10., 20., 30., 40., 50., 80.}, "Centrality (%)"};
115115
ConfigurableAxis ptAxis{"ptAxis", {VARIABLE_WIDTH, 0.2, 0.5, 1., 1.5, 2., 2.5, 3., 4., 5., 6.5, 8., 10.}, "#it{p}_{T} (GeV/#it{c})"};
116116
ConfigurableAxis etaAxis{"etaAxis", {VARIABLE_WIDTH, -0.8, -0.4, -0.2, 0., 0.2, 0.4, 0.8}, "#eta"};
117-
ConfigurableAxis massAxis{"massAxis", {100, 1.0, 1.2}, "#it{M} (GeV/#it{c}^{2})"};
118-
ConfigurableAxis polAxis{"polAxis", {200, -1.0, 1.0}, "polarization observable"};
119-
ConfigurableAxis spAxis{"spAxis", {400, -10.0, 10.0}, "SP observable"};
117+
ConfigurableAxis massAxis{"massAxis", {50, 1.09, 1.14}, "#it{M} (GeV/#it{c}^{2})"};
118+
ConfigurableAxis polAxis{"polAxis", {200, -3.0, 3.0}, "polarization observable"};
119+
ConfigurableAxis spAxis{"spAxis", {200, -3.0, 3.0}, "SP observable"};
120120
ConfigurableAxis q1Axis{"q1Axis", {VARIABLE_WIDTH, 0., 0.5, 1., 1.5, 2., 3., 5., 10.}, "q_{1}^{ZDC}"};
121-
ConfigurableAxis qAxis{"qAxis", {200, -10., 10.}, "Q"};
121+
ConfigurableAxis qAxis{"qAxis", {100, -3., 3.}, "Q"};
122122
ConfigurableAxis resAxis{"resAxis", {200, -1., 1.}, "resolution / correlation"};
123123

124124
HistogramRegistry histos{"histos", {}, OutputObjHandlingPolicy::AnalysisObject};
125125

126126
Service<o2::ccdb::BasicCCDBManager> ccdb;
127127
TProfile2D* accprofileL = nullptr;
128128
TProfile2D* accprofileAL = nullptr;
129+
129130
int currentRunNumber = -999;
130131
int lastRunNumber = -999;
131132

@@ -185,6 +186,9 @@ struct flowDirectedFlowTask {
185186
histos.add("hSparseLambdaPolSPCQ1", "Lambda SP polarization numerator C vs q1", HistType::kTHnSparseF, axesPolSPQ1, true);
186187

187188
histos.add("hSparseAntiLambdaPolSPQ1", "AntiLambda SP polarization numerator vs q1", HistType::kTHnSparseF, axesPolSPQ1, true);
189+
histos.add("hSparseAntiLambdaPolSPuxQ1", "AntiLambda SP polarization numerator vs q1", HistType::kTHnSparseF, axesPolSPQ1, true);
190+
histos.add("hSparseAntiLambdaPolSPuyQ1", "AntiLambda SP polarization numerator vs q1", HistType::kTHnSparseF, axesPolSPQ1, true);
191+
188192
histos.add("hSparseAntiLambdaPolSPAQ1", "AntiLambda SP polarization numerator A vs q1", HistType::kTHnSparseF, axesPolSPQ1, true);
189193
histos.add("hSparseAntiLambdaPolSPCQ1", "AntiLambda SP polarization numerator C vs q1", HistType::kTHnSparseF, axesPolSPQ1, true);
190194

0 commit comments

Comments
 (0)