@@ -148,7 +148,7 @@ struct PhotonChargedTriggerCorrelation {
148148 {-10000 , 10000 },
149149 " zPv mixing bins" };
150150 Configurable<std::vector<double >> binsMultMcTrue{" binsMultMcTrue" ,
151- {-0.5 , 5.5 , 10.5 , 15.5 , 20.5 , 25.5 , 30.5 , 35.5 , 40.5 },
151+ {-0.5 , 10.5 , 15.5 , 20.5 , 25.5 , 30.5 , 35.5 , 40.5 , 50.5 , 64 },
152152 " multiplicity mixing bins for mc true" };
153153
154154 // configurables from other tasks
@@ -212,7 +212,7 @@ struct PhotonChargedTriggerCorrelation {
212212 // (possibly replace by some advanced derived data method and O2 event mixing in future?)
213213 class MixingTriggerMemory
214214 {
215- public:
215+ public:
216216 // finds bin that value belongs to (assumes ordered bins) (starts at 0; includes underflow (return -1) and overlflow (return bins.size() - 1))
217217 // should be faster than some std binary search due to small number of bins (zPv, mult)
218218 static int findIntervalBin (double value, const std::vector<double >& bins)
@@ -262,7 +262,7 @@ struct PhotonChargedTriggerCorrelation {
262262 return savedTriggersZPvMult[iBinCorrZPv][iBinCorrMult];
263263 }
264264
265- private:
265+ private:
266266 double const zPvRoundingErrorAdjust = 1.0001 ;
267267 int nTriggerSavedForMixing;
268268 std::vector<double > triggerBinValuesZPv;
@@ -1082,7 +1082,7 @@ struct PhotonChargedTriggerCorrelation {
10821082 Photon = 2 ,
10831083 Pi0 = 3 ,
10841084 Eta = 4 };
1085- static constexpr const char * mcHistPaths [2 ][2 ][5 ] = {
1085+ static constexpr const char * McHistPaths [2 ][2 ][5 ] = {
10861086 {{" mc/true/corr/h6_corr_hadron" , " mc/true/corr/h6_corr_pipm" , " mc/true/corr/h6_corr_photon" ,
10871087 " mc/true/corr/h6_corr_pi0" , " mc/true/corr/h6_corr_eta" },
10881088 {" mc/true/corr/h6_mix_hadron" , " mc/true/corr/h6_mix_pipm" , " mc/true/corr/h6_mix_photon" ,
@@ -1093,7 +1093,7 @@ struct PhotonChargedTriggerCorrelation {
10931093 " mc/recoCol_true/corr/h6_mix_pi0" , " mc/recoCol_true/corr/h6_mix_eta" }}};
10941094 static constexpr const char * getMcHistPath (McCorrEventType eventType, McCorrCorrelationType correlationType, McCorrAssociatedType associatedType)
10951095 {
1096- return mcHistPaths [static_cast <int >(eventType)][static_cast <int >(correlationType)][static_cast <int >(associatedType)];
1096+ return McHistPaths [static_cast <int >(eventType)][static_cast <int >(correlationType)][static_cast <int >(associatedType)];
10971097 }
10981098
10991099 // fill mc correaltion histograms based on given associated mc particle
0 commit comments