@@ -132,7 +132,7 @@ struct CascadeAnalysisLightIonsDerivedData {
132132 Configurable<float > competingmassrej{" competingmassrej" , 0.008 , " Competing mass rejection" };
133133 // Axes parameters
134134 ConfigurableAxis centEstimatorHistBin{" centEstimatorHistBin" , {101 , 0 .0f , 101 .0f }, " " };
135- ConfigurableAxis centralityBinning{" centralityBinning" , {VARIABLE_WIDTH, 0 , 5 , 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 , 90 , 100 }, " " };
135+ ConfigurableAxis centralityBinning{" centralityBinning" , {VARIABLE_WIDTH, 0 . 0f , 5 . 0f , 10 . 0f , 20 . 0f , 30 . 0f , 40 . 0f , 50 . 0f , 60 . 0f , 70 . 0f , 80 . 0f , 90 . 0f }, " " };
136136 ConfigurableAxis axisNch{" axisNch" , {500 , 0 .0f , +5000 .0f }, " Number of charged particles" };
137137 ConfigurableAxis axisMult{" axisMult" , {500 , 0 .0f , +100000 .0f }, " Multiplicity" };
138138
@@ -302,16 +302,16 @@ struct CascadeAnalysisLightIonsDerivedData {
302302 registryMC.add (" h2dGenXiPlusVsMultMC_RecoedEvt" , " h2dGenXiPlusVsMultMC_RecoedEvt" , HistType::kTH2D , {axisNch, ptAxis});
303303 registryMC.add (" h2dGenXiMinusVsMultMC" , " h2dGenXiMinusVsMultMC" , HistType::kTH2D , {axisNch, ptAxis});
304304 registryMC.add (" h2dGenXiPlusVsMultMC" , " h2dGenXiPlusVsMultMC" , HistType::kTH2D , {axisNch, ptAxis});
305- registryMC.add (" h2dGenXiMinus" , " h2dGenXiMinus" , HistType::kTH2D , {{ 101 , 0 . 0f , 101 . 0f } , ptAxis});
306- registryMC.add (" h2dGenXiPlus" , " h2dGenXiPlus" , HistType::kTH2D , {{ 101 , 0 . 0f , 101 . 0f } , ptAxis});
305+ registryMC.add (" h2dGenXiMinus" , " h2dGenXiMinus" , HistType::kTH2D , {centAxis , ptAxis});
306+ registryMC.add (" h2dGenXiPlus" , " h2dGenXiPlus" , HistType::kTH2D , {centAxis , ptAxis});
307307
308308 // Histograms for omega (mc)
309309 registryMC.add (" h2dGenOmegaMinusVsMultMC_RecoedEvt" , " h2dGenOmegaMinusVsMultMC_RecoedEvt" , HistType::kTH2D , {axisNch, ptAxis});
310310 registryMC.add (" h2dGenOmegaPlusVsMultMC_RecoedEvt" , " h2dGenOmegaPlusVsMultMC_RecoedEvt" , HistType::kTH2D , {axisNch, ptAxis});
311311 registryMC.add (" h2dGenOmegaMinusVsMultMC" , " h2dGenOmegaMinusVsMultMC" , HistType::kTH2D , {axisNch, ptAxis});
312312 registryMC.add (" h2dGenOmegaPlusVsMultMC" , " h2dGenOmegaPlusVsMultMC" , HistType::kTH2D , {axisNch, ptAxis});
313- registryMC.add (" h2dGenOmegaMinus" , " h2dGenOmegaMinus" , HistType::kTH2D , {{ 101 , 0 . 0f , 101 . 0f } , ptAxis});
314- registryMC.add (" h2dGenOmegaPlus" , " h2dGenOmegaPlus" , HistType::kTH2D , {{ 101 , 0 . 0f , 101 . 0f } , ptAxis});
313+ registryMC.add (" h2dGenOmegaMinus" , " h2dGenOmegaMinus" , HistType::kTH2D , {centAxis , ptAxis});
314+ registryMC.add (" h2dGenOmegaPlus" , " h2dGenOmegaPlus" , HistType::kTH2D , {centAxis , ptAxis});
315315
316316 // Histograms for event loss/splitting
317317 registryMC.add (" hGenEvents" , " hGenEvents" , HistType::kTH2D , {{axisNch}, {2 , -0 .5f , +1 .5f }});
@@ -662,7 +662,7 @@ struct CascadeAnalysisLightIonsDerivedData {
662662 bool atLeastOne = false ;
663663 int biggestNContribs = -1 ;
664664 int nCollisions = 0 ;
665- float centralitydata = - 1 . 0f ;
665+ float centralitydata = 100 . 5f ;
666666 for (auto const & collision : groupedCollisions) {
667667 // event selections
668668 if (applySel8 && !collision.sel8 ())
@@ -741,8 +741,8 @@ struct CascadeAnalysisLightIonsDerivedData {
741741 initCCDB (collision);
742742
743743 // Define the event centrality using different estimators
744- float centrality = -1 . 0f ;
745- float multiplicity = -1 . 0f ;
744+ float centrality = -1 ;
745+ float multiplicity = -1 ;
746746
747747 if (centralityEstimator == Option::kFT0C ) {
748748 centrality = collision.centFT0C ();
@@ -885,8 +885,8 @@ struct CascadeAnalysisLightIonsDerivedData {
885885 initCCDB (RecCol);
886886
887887 // Define the event centrality using different estimators
888- float centralityMcRec = -1 . 0f ;
889- float multiplicityMcRec = -1 . 0f ;
888+ float centralityMcRec = -1 ;
889+ float multiplicityMcRec = -1 ;
890890
891891 if (centralityEstimator == Option::kFT0C ) {
892892 centralityMcRec = RecCol.centFT0C ();
0 commit comments