|
11 | 11 |
|
12 | 12 | /// \file corrSparse.cxx |
13 | 13 | /// \brief Provides a sparse with usefull two particle correlation info |
14 | | -/// \author Thor Jensen (djt288@alumni.ku.dk) |
| 14 | +/// \author Thor Jensen (thor.kjaersgaard.jensen@cern.ch) and Debojit Sarkar (debojit.sarkar@cern.ch) |
15 | 15 |
|
16 | 16 | #include <vector> |
17 | 17 | #include "Framework/runDataProcessing.h" |
@@ -42,7 +42,7 @@ struct CorrSparse { |
42 | 42 | O2_DEFINE_CONFIGURABLE(cfgEtaCut, float, 0.8f, "Eta cut") |
43 | 43 | O2_DEFINE_CONFIGURABLE(cfgMinMixEventNum, int, 5, "Minimum number of events to mix") |
44 | 44 |
|
45 | | - ConfigurableAxis axisVertex{"axisVertex", {20, -10, 10}, "vertex axis for histograms"}; |
| 45 | + ConfigurableAxis axisVertex{"axisVertex", {10, -10, 10}, "vertex axis for histograms"}; |
46 | 46 | ConfigurableAxis axisEta{"axisEta", {40, -1., 1.}, "eta axis for histograms"}; |
47 | 47 | ConfigurableAxis axisPhi{"axisPhi", {72, 0.0, constants::math::TwoPI}, "phi axis for histograms"}; |
48 | 48 | ConfigurableAxis axisPt{"axisPt", {VARIABLE_WIDTH, 0.5, 1.0, 1.5, 2.0, 3.0, 4.0, 6.0, 10.0}, "pt axis for histograms"}; |
@@ -81,7 +81,7 @@ struct CorrSparse { |
81 | 81 |
|
82 | 82 | registry.add("Sparse_mixed", "", {HistType::kTHnSparseF, {{axisMultiplicity, axisVertex, axisPtTrigger, axisPtAssoc, axisDeltaPhi, axisDeltaEta}}}); // Make the output sparse |
83 | 83 | registry.add("Sparse_same", "", {HistType::kTHnSparseF, {{axisMultiplicity, axisVertex, axisPtTrigger, axisPtAssoc, axisDeltaPhi, axisDeltaEta}}}); |
84 | | - registry.add("Trig_Hist", "", {HistType::kTH3F, {{axisMultiplicity, axisVertex, axisPtTrigger}}}); |
| 84 | + registry.add("Trig_Hist", "", {HistType::kTHnSparseF, {{axisMultiplicity, axisVertex, axisPtTrigger}}}); |
85 | 85 |
|
86 | 86 | registry.add("eventcount", "bin", {HistType::kTH1F, {{3, 0, 3, "bin"}}}); // histogram to see how many events are in the same and mixed event |
87 | 87 | } |
|
0 commit comments