Skip to content

Commit 819221c

Browse files
committed
fix typos
1 parent df52a4e commit 819221c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ struct AntinucleiInJets {
511511

512512
// jet pt resolution
513513
if (doprocessJetPtResolution) {
514-
registryMC.add("jetPtResolution", "jet Pt Resolution", HistType::kTH2F, {{200, 0, 20, "#it{p}^{jet}_{T,true} (GeV/#it{c})"}}, {{1000, -5, 5, "#Delta #it{p}^{jet}_{T} (GeV/#it{c})"}});
514+
registryMC.add("jetPtResolution", "jet Pt Resolution", HistType::kTH2F, {{200, 0, 20, "#it{p}^{jet}_{T,true} (GeV/#it{c})"}, {1000, -5, 5, "#Delta #it{p}^{jet}_{T} (GeV/#it{c})"}});
515515
}
516516

517517
// Coalescence and Correlation analysis
@@ -4049,7 +4049,7 @@ struct AntinucleiInJets {
40494049
double deltaPhi = getDeltaPhi(jetGen.phi(), jetRec.phi());
40504050
double deltaR = std::sqrt(deltaEta * deltaEta + deltaPhi * deltaPhi);
40514051
if (deltaR < rJet)
4052-
jetGenRec.emplace_back({deltaR, jetGen.pt(), jetGen.pt() - jetRec.pt()});
4052+
jetGenRec.push_back({deltaR, jetGen.pt(), jetGen.pt() - jetRec.pt()});
40534053
}
40544054
if (jetGenRec.empty())
40554055
continue;

0 commit comments

Comments
 (0)