@@ -65,9 +65,9 @@ struct JetSpectraEseTask {
6565 ConfigurableAxis binFit0{" binFit0" , {100 , 0 , 50 }, " " };
6666 ConfigurableAxis binFit13{" binFit13" , {100 , 0 , 1.4 }, " " };
6767 ConfigurableAxis binFit24{" binFit24" , {100 , 0 , 10 }, " " };
68- ConfigurableAxis binTrackPt{" binTrackPt" , {1000 , 0 , 100 }, " " };
68+ ConfigurableAxis binTrackPt{" binTrackPt" , {100 , 0 , 100 }, " " };
6969 ConfigurableAxis dbinEta{" dbinEta" , {100 , -1.6 , 1.6 }, " " };
70- ConfigurableAxis dbinPhi{" dbinPhi" , {120 , -o2::constants::math::PIHalf, o2::constants::math::TwoPI - o2::constants::math::PIHalf }, " " };
70+ ConfigurableAxis dbinPhi{" dbinPhi" , {120 , -o2::constants::math::PIHalf, 3 * o2::constants::math::PI / 2 }, " " };
7171
7272 Configurable<float > jetPtMin{" jetPtMin" , 5.0 , " minimum jet pT cut" };
7373 Configurable<float > jetR{" jetR" , 0.2 , " jet resolution parameter" };
@@ -136,6 +136,9 @@ struct JetSpectraEseTask {
136136 AxisSpec fitAxis24 = {binFit24, " Fit24" };
137137
138138 AxisSpec trackPtAxis = {binTrackPt, " #it{p}_{T}" };
139+ ConfigurableAxis assocTrackPt{" assocTrackPt" , {VARIABLE_WIDTH, 0.2 , 0.3 , 0.4 , 0.5 , 0.6 , 0.7 , 0.8 , 0.9 , 1.0 , 1.1 , 1.2 , 1.3 , 1.4 , 1.5 , 2.0 , 2.5 , 3.0 , 3.5 , 4.0 , 4.5 , 5.0 , 6.0 , 7.0 , 8.0 , 9.0 , 10.0 }, " pT of associated track" };
140+ ConfigurableAxis rhoAxis{" rhoAxis" , {50 , 0 , 200 }, " #rho" };
141+ ConfigurableAxis vertexZAxis{" vertexZAxis" , {50 , -10.0 , 10.0 }, " z vertex" };
139142
140143 HistogramRegistry registry{" registry" , {}, OutputObjHandlingPolicy::AnalysisObject, false , false };
141144
@@ -212,15 +215,15 @@ struct JetSpectraEseTask {
212215 registry.add (" hJetPt_bkgsub" , " jet pT background sub;#it{p}_{T,jet} (GeV/#it{c});entries" , {HistType::kTH1F , {{jetPtAxis}}});
213216 registry.add (" hJetEta" , " jet #eta;#eta_{jet};entries" , {HistType::kTH1F , {{etaAxis}}});
214217 registry.add (" hJetPhi" , " jet #phi;#phi_{jet};entries" , {HistType::kTH1F , {{phiAxis}}});
215- registry.add (" eventQA/hRho" , " ;#rho;entries" , {HistType::kTH2F , {{centAxis}, {100 , 0 , 200 . }}});
216- registry.add (" eventQA/hRhoPhi" , " ;#rho;entries" , {HistType::kTH2F , {{centAxis}, {100 , 0 , 200 . }}});
217- registry.add (" hJetArea" , " ;area_{jet};entries" , {HistType::kTH1F , {{80 , 0 , 10 .}}});
218- registry.add (" hJetAreaRho" , " " , {HistType::kTH1F , {{100 , 0 , 500 .}}});
218+ registry.add (" eventQA/hRho" , " ;#rho;entries" , {HistType::kTH2F , {{centAxis}, {rhoAxis }}});
219+ registry.add (" eventQA/hRhoPhi" , " ;#rho;entries" , {HistType::kTH2F , {{centAxis}, {rhoAxis }}});
220+ registry.add (" hJetArea" , " ;area_{jet};entries" , {HistType::kTH1F , {{50 , 0 , 5 .}}});
221+ registry.add (" hJetAreaRho" , " " , {HistType::kTH1F , {{50 , 0 , 10 .}}});
219222 registry.add (" hCentJetPtdPhiq2" , " " , {HistType::kTHnSparseF , {{centAxis}, {jetPtAxis}, {dPhiAxis}, {eseAxis}}});
220223 registry.add (" hCentJetPtdPhiq2RhoPhi" , " " , {HistType::kTHnSparseF , {{centAxis}, {jetPtAxis}, {dPhiAxis}, {eseAxis}}});
221224
222- registry.add (" eventQA/before/hVtxZ" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{100 , - 10.0 , 10.0 }}});
223- registry.add (" eventQA/after/hVtxZ" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{100 , - 10.0 , 10.0 }}});
225+ registry.add (" eventQA/before/hVtxZ" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{vertexZAxis }}});
226+ registry.add (" eventQA/after/hVtxZ" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{vertexZAxis }}});
224227
225228 registry.get <TH1>(HIST (" eventQA/hEventCounter" ))->GetXaxis ()->SetBinLabel (kFilteredInputEv , " Input filtered event" );
226229 registry.get <TH1>(HIST (" eventQA/hEventCounter" ))->GetXaxis ()->SetBinLabel (kEventSel , " Event selection" );
@@ -240,9 +243,9 @@ struct JetSpectraEseTask {
240243 registry.add (" eventQA/hfitPar3" , " " , {HistType::kTH2F , {{centAxis}, {fitAxis13}}});
241244 registry.add (" eventQA/hfitPar4" , " " , {HistType::kTH2F , {{centAxis}, {fitAxis24}}});
242245 registry.add (" eventQA/hPValueCentCDF" , " p-value cDF vs centrality; centrality; p-value" , {HistType::kTH2F , {{centAxis}, {40 , 0 , 1 }}});
243- registry.add (" eventQA/hCentChi2Ndf" , " Chi2 vs centrality; centrality; #tilde{#chi^{2}}" , {HistType::kTH2F , {{centAxis}, {100 , 0 , 5 }}});
244- registry.add (" eventQA/hCentPhi" , " centrality vs #rho(#varphi); centrality; #rho(#varphi) " , {HistType::kTH2F , {{centAxis}, {210 , - 10.0 , 200.0 }}});
245- registry.add (" eventQA/hdPhiRhoPhi" , " #varphi vs #rho(#varphi); #varphi - #Psi_{EP,2}; #rho(#varphi) " , {HistType::kTH2F , {{40 , -o2::constants::math::PI, o2::constants::math::PI}, {210 , - 10.0 , 200.0 }}});
246+ registry.add (" eventQA/hCentChi2Ndf" , " Chi2 vs centrality; centrality; #tilde{#chi^{2}}" , {HistType::kTH2F , {{centAxis}, {50 , 0 , 5 }}});
247+ registry.add (" eventQA/hCentPhi" , " centrality vs #rho(#varphi); centrality; #rho(#varphi) " , {HistType::kTH2F , {{centAxis}, {rhoAxis }}});
248+ registry.add (" eventQA/hdPhiRhoPhi" , " #varphi vs #rho(#varphi); #varphi - #Psi_{EP,2}; #rho(#varphi) " , {HistType::kTH2F , {{40 , -o2::constants::math::PI, o2::constants::math::PI}, {rhoAxis }}});
246249
247250 registry.add (" jetQA/before/hLeadJetPt" , " ;Centrality;#it{p}_{T,lead jet} (GeV/#it{c});entries" , {HistType::kTH2F , {{centAxis}, {jetPtAxis}}});
248251 registry.add (" jetQA/before/hLeadJetPhi" , " ;Centrality;#phi_{lead jet};entries" , {HistType::kTH2F , {{centAxis}, {phiAxis}}});
@@ -255,7 +258,7 @@ struct JetSpectraEseTask {
255258 std::vector<o2::framework::AxisSpec> axes = {
256259 {centAxis},
257260 {jetPtAxis},
258- {trackPtAxis },
261+ {assocTrackPt },
259262 {detaAxis},
260263 {dphiAxis},
261264 {dPhiAxis},
@@ -283,14 +286,14 @@ struct JetSpectraEseTask {
283286 registry.get <TH1>(HIST (" eventQA/hEventCounterMixed" ))->GetXaxis ()->SetBinLabel (kEse , " ESE available" );
284287 registry.get <TH1>(HIST (" eventQA/hEventCounterMixed" ))->GetXaxis ()->SetBinLabel (kRhoLocal , " rho(#phi) available" );
285288 registry.get <TH1>(HIST (" eventQA/hEventCounterMixed" ))->GetXaxis ()->SetBinLabel (kLeadJetCut , " leading jet pT cut" );
286- registry.add (" eventQA/before/hVtxZMixed" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{100 , - 10.0 , 10.0 }}});
287- registry.add (" eventQA/after/hVtxZMixed" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{100 , - 10.0 , 10.0 }}});
288- registry.add (" eventQA/before/hVtxZMixed2" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{100 , - 10.0 , 10.0 }}});
289- registry.add (" eventQA/after/hVtxZMixed2" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{100 , - 10.0 , 10.0 }}});
289+ registry.add (" eventQA/before/hVtxZMixed" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{vertexZAxis }}});
290+ registry.add (" eventQA/after/hVtxZMixed" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{vertexZAxis }}});
291+ registry.add (" eventQA/before/hVtxZMixed2" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{vertexZAxis }}});
292+ registry.add (" eventQA/after/hVtxZMixed2" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{vertexZAxis }}});
290293 registry.add (" eventQA/hCentralityAnalyzedMixed" , " ;Centrality;entries" , {HistType::kTH1F , {{centAxis}}});
291294 registry.add (" eventQA/hCentralityAnalyzedMixed2" , " ;Centrality;entries" , {HistType::kTH1F , {{centAxis}}});
292- registry.add (" eventQA/hDeltaCentMixed" , " ;Centrality difference;entries" , {HistType::kTH1F , {{100 , -100 , 100 }}});
293- registry.add (" eventQA/hDeltaVtxZMixed" , " ;z_{vtx} difference (cm);entries" , {HistType::kTH1F , {{100 , -20.0 , 20.0 }}});
295+ registry.add (" eventQA/hDeltaCentMixed" , " ;Centrality difference;entries" , {HistType::kTH1F , {{50 , -100 , 100 }}});
296+ registry.add (" eventQA/hDeltaVtxZMixed" , " ;z_{vtx} difference (cm);entries" , {HistType::kTH1F , {{50 , -20.0 , 20.0 }}});
294297
295298 registry.add (" trackQA/before/hTrackPtMixed" , " " , {HistType::kTH2F , {{centAxis}, {trackPtAxis}}});
296299 registry.add (" trackQA/before/hTrackEtaMixed" , " " , {HistType::kTH2F , {{centAxis}, {etaAxis}}});
@@ -301,12 +304,12 @@ struct JetSpectraEseTask {
301304 std::vector<o2::framework::AxisSpec> axes = {
302305 {centAxis},
303306 {jetPtAxis},
304- {trackPtAxis },
307+ {assocTrackPt },
305308 {detaAxis},
306309 {dphiAxis},
307310 {dPhiAxis},
308311 {eseAxis}};
309- registry.add (" thn_jethad_corr_mixed" , " jet-had; centrality; #it{p}_{T,lead jet} - #rho_{local} * area_{jet} (GeV/#it{c}); #it{p}_{T,track} (GeV/#it{c}); #Delta#eta; #Delta#phi; #Delta#phi to EP; #it{q}_{2}" , {HistType::kTHnSparseF , axes});
312+ registry.add (" thn_jethad_corr_mixed" , " jet-had; centrality; #it{p}_{T,jet} - #rho_{local} * area_{jet} (GeV/#it{c}); #it{p}_{T,track} (GeV/#it{c}); #Delta#eta; #Delta#phi; #Delta#phi to EP; #it{q}_{2}" , {HistType::kTHnSparseF , axes});
310313 registry.add (" hNtrigMixed" , " " , {HistType::kTHnSparseF , {{centAxis}, {jetPtAxis}, {dPhiAxis}, {eseAxis}}});
311314 }
312315 if (doprocessESEEPData) {
0 commit comments