@@ -20,6 +20,7 @@ Int_t Compare(TString pathFileO2 = "AnalysisResults_O2.root", TString pathFileAl
2020 // Histogram specification: axis label, AliPhysics name, O2Physics path/name, rebin, log scale histogram, log scale ratio, projection axis
2121
2222 VecSpecHis vecHisEvents ;
23+ AddHistogram (vecHisEvents , "#it{z}_{prim. vtx.} (cm)" , "Events Vertex Distribution" , "jet-validation-track-collision-qa/controlCollisionVtxZ" , 1 , 0 , 0 );
2324
2425 VecSpecHis vecHisJets ;
2526 AddHistogram (vecHisJets , "#it{p}_{T, ch jet} (GeV/#it{c})" , "jetPt" , "jet-validation-track-collision-qa/jetPt" , 1 , 1 , 0 );
@@ -33,9 +34,9 @@ Int_t Compare(TString pathFileO2 = "AnalysisResults_O2.root", TString pathFileAl
3334 VecSpecVecSpec vecSpecVecSpec ;
3435
3536 // Add vector specifications in the vector.
36- // if (options.Contains(" events "))
37- // vecSpecVecSpec.push_back(std::make_tuple("events", vecHisEvents, 4, 2 ));
38- if (options .Contains ("jets" ))
37+ if (options .Contains (" events " ))
38+ vecSpecVecSpec .push_back (std ::make_tuple ("events" , vecHisEvents , 1 , 1 ));
39+ if (options .Contains (" jets " ))
3940 vecSpecVecSpec .push_back (std ::make_tuple ("jets" , vecHisJets , 3 , 2 ));
4041
4142 return MakePlots (vecSpecVecSpec , pathFileO2 , pathFileAli , pathListAli , doRatio );
0 commit comments