@@ -246,7 +246,7 @@ struct JetSpectraEseTask {
246246 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 }}});
247247
248248 registry.add (" thn_jethad_corr_same" , " jet-had; centrality; #it{p}_{T,lead jet} - #rho_{local} * area_{jet} (GeV/#it{c}); #it{p}_{T,sublead 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 , {{centAxis}, {jetPtAxis}, {jetPtAxis}, {trackPtAxis}, {detaAxis}, {dphiAxis}, {dPhiAxis}, {eseAxis}}});
249- registry.add (" h2Ntrig " , " " , {HistType::kTH2F , {{centAxis}, {jetPtAxis}}});
249+ registry.add (" hNtrig " , " " , {HistType::kTHnSparseF , {{centAxis}, {jetPtAxis}, {dPhiAxis}, {eseAxis }}});
250250
251251 registry.add (" trackQA/before/hTrackPt" , " " , {HistType::kTH2F , {{centAxis}, {trackPtAxis}}});
252252 registry.add (" trackQA/before/hTrackEta" , " " , {HistType::kTH2F , {{centAxis}, {etaAxis}}});
@@ -270,7 +270,7 @@ struct JetSpectraEseTask {
270270 registry.add (" eventQA/after/hVtxZMixed" , " ;z_{vtx} (cm);entries" , {HistType::kTH1F , {{100 , -10.0 , 10.0 }}});
271271
272272 registry.add (" thn_jethad_corr_mixed" , " jet-had; centrality; #it{p}_{T,lead jet} - #rho_{local} * area_{jet} (GeV/#it{c}); #it{p}_{T,sublead 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 , {{centAxis}, {jetPtAxis}, {jetPtAxis}, {trackPtAxis}, {detaAxis}, {dphiAxis}, {dPhiAxis}, {eseAxis}}});
273- registry.add (" h2NtrigMixed " , " " , {HistType::kTH2F , {{centAxis}, {jetPtAxis}}});
273+ registry.add (" hNtrigMixed " , " " , {HistType::kTHnSparseF , {{centAxis}, {jetPtAxis}, {dPhiAxis}, {eseAxis }}});
274274 }
275275 if (doprocessESEEPData) {
276276 LOGF (info, " JetSpectraEseTask::init() - Event Plane Process" );
@@ -470,7 +470,7 @@ struct JetSpectraEseTask {
470470 registry.fill (HIST (" eventQA/hEventCounter" ), kSubLeadJetPtCut );
471471 const auto leaddPhi = RecoDecay::constrainAngle (leadingJet.phi () - psi.psi2 , -o2::constants::math::PI);
472472
473- registry.fill (HIST (" h2Ntrig " ), centrality, dijetEv.lead );
473+ registry.fill (HIST (" hNtrig " ), centrality, dijetEv.lead , leaddPhi, qPerc[ 0 ] );
474474 for (auto const & track : tracks) {
475475 registry.fill (HIST (" trackQA/before/hTrackPt" ), centrality, track.pt ());
476476 registry.fill (HIST (" trackQA/before/hTrackEta" ), centrality, track.eta ());
@@ -576,7 +576,7 @@ struct JetSpectraEseTask {
576576 registry.fill (HIST (" eventQA/hEventCounterMixed" ), kSubLeadJetPtCut );
577577 const auto leaddPhi = RecoDecay::constrainAngle (leadingJet.phi () - psi.psi2 , -o2::constants::math::PI);
578578
579- registry.fill (HIST (" h2NtrigMixed " ), centrality, corrL (leadingJet) );
579+ registry.fill (HIST (" hNtrigMixed " ), centrality, dijetEv. lead , leaddPhi, qPerc[ 0 ] );
580580 for (auto const & track : tracks2) {
581581 if (!jetderiveddatautilities::selectTrack (track, trackSelection))
582582 continue ;
0 commit comments