Skip to content

Commit 3117517

Browse files
authored
[PWGLF] bug fix: adjusted eta range for jet selection (#9989)
1 parent 5523fa6 commit 3117517

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ struct AntinucleiInJets {
152152
registryQC.add("sumPtJetCone", "sumPtJetCone", HistType::kTH1F, {{500, 0, 50, "#it{p}_{T} (GeV/#it{c})"}});
153153
registryQC.add("sumPtJet", "sumPtJet", HistType::kTH1F, {{500, 0, 50, "#it{p}_{T} (GeV/#it{c})"}});
154154
registryQC.add("sumPtUE", "sumPtUE", HistType::kTH1F, {{500, 0, 50, "#it{p}_{T} (GeV/#it{c})"}});
155-
registryQC.add("nJetsFound", "nJetsFound", HistType::kTH1F, {{10, 0, 10, "#it{n}_{Jet}"}});
156-
registryQC.add("nJetsInAcceptance", "nJetsInAcceptance", HistType::kTH1F, {{10, 0, 10, "#it{n}_{Jet}"}});
157-
registryQC.add("nJetsSelectedHighPt", "nJetsSelectedHighPt", HistType::kTH1F, {{10, 0, 10, "#it{n}_{Jet}"}});
155+
registryQC.add("nJetsFound", "nJetsFound", HistType::kTH1F, {{50, 0, 50, "#it{n}_{Jet}"}});
156+
registryQC.add("nJetsInAcceptance", "nJetsInAcceptance", HistType::kTH1F, {{50, 0, 50, "#it{n}_{Jet}"}});
157+
registryQC.add("nJetsSelectedHighPt", "nJetsSelectedHighPt", HistType::kTH1F, {{50, 0, 50, "#it{n}_{Jet}"}});
158158
registryQC.add("jetEffectiveArea", "jetEffectiveArea", HistType::kTH1F, {{2000, 0, 2, "Area/#piR^{2}"}});
159159
}
160160

@@ -451,7 +451,7 @@ struct AntinucleiInJets {
451451
for (auto& jet : jets) { // o2-linter: disable=[const-ref-in-for-loop]
452452

453453
// jet must be fully contained in the acceptance
454-
if ((std::fabs(jet.eta()) + rJet) > (maxEta - 0.5))
454+
if ((std::fabs(jet.eta()) + rJet) > (maxEta - 0.05))
455455
continue;
456456

457457
// jet pt must be larger than threshold
@@ -675,7 +675,7 @@ struct AntinucleiInJets {
675675
for (auto& jet : jets) { // o2-linter: disable=[const-ref-in-for-loop]
676676

677677
// jet must be fully contained in the acceptance
678-
if ((std::fabs(jet.eta()) + rJet) > (maxEta - 0.5))
678+
if ((std::fabs(jet.eta()) + rJet) > (maxEta - 0.05))
679679
continue;
680680
njetsInAcc++;
681681

0 commit comments

Comments
 (0)