Skip to content

Commit 28637e6

Browse files
committed
AIMERIC jets - jetmatchingqa add dpt/pt for jet res
1 parent d2e8237 commit 28637e6

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

PWGJE/Tasks/jetmatchingqa.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ struct JetMatchingQA {
4242

4343
{"h_jet_match_geo_pt_zoom", "geo-matched jets", {HistType::kTH2F, {{1000, 0.0f, 10.0f, "#it{p}_{T} (particle level, GeV/#it{c})"}, {1000, 0.0f, 10.0f, "#it{p}_{T} (detector level, GeV/#it{c})"}}}},
4444
{"h_jet_match_geo_dpt", "geo-matched jets", {HistType::kTH1F, {{100, -10.0f, 10.0f, "#Delta#it{p}_{T} (particle level vs detector level, GeV/#it{c})"}}}},
45+
{"h2_jet_pt_jet_match_geo_dptoverpt", "geo-matched jets", {HistType::kTH2F, {{2000, 0.0f, 200.0f, "#it{p}_{T} (detector level, GeV/#it{c})"}, {700, -5.0f, 2.0f, "(#it{p}_{T, part}-#it{p}_{T, det})/#it{p}_{T,part} (particle level vs detector level, GeV/#it{c})"}}}},
4546
{"h_jet_match_geo_PtLeadingPart", "geo-matched jets", {HistType::kTH2F, {{1000, 0.0f, 10.0f, "#it{p}_{T}^{leading} (particle level, GeV/#it{c})"}, {1000, 0.0f, 10.0f, "#it{p}_{T}^{leading} (detector level, GeV/#it{c})"}}}},
4647
{"h_jet_match_geo_phi", "geo-matched jets", {HistType::kTH2F, {{80, -1.0f, 7.0f, "#phi_{jet} (particle level, rad)"}, {80, -1.0f, 7.0f, "#phi_{jet} (detector level, rad)"}}}},
4748
{"h_jet_match_geo_eta", "geo-matched jets", {HistType::kTH2F, {{70, -0.7f, 0.7f, "#it{p}_{T}^{particle level} (GeV/#it{c})"}, {70, -0.7f, 0.7f, "#it{p}_{T} (detector level, GeV/#it{c})"}}}},
@@ -127,6 +128,7 @@ struct JetMatchingQA {
127128

128129
registry.fill(HIST("h_jet_match_geo_pt_zoom"), pjet.pt(), djet.pt());
129130
registry.fill(HIST("h_jet_match_geo_dpt"), pjet.pt() - djet.pt());
131+
registry.fill(HIST("h2_jet_pt_jet_match_geo_dptoverpt"), pjet.pt(), (pjet.pt() - djet.pt()) *1./pjet.pt());
130132
registry.fill(HIST("h_jet_match_geo_phi"), pjet.phi(), djet.phi());
131133
registry.fill(HIST("h_jet_match_geo_eta"), pjet.eta(), djet.eta());
132134
registry.fill(HIST("h_jet_match_geo_Nconst"), pjet.tracksIds().size(), djet.tracksIds().size());

0 commit comments

Comments
 (0)