Skip to content

Commit 4c39c99

Browse files
authored
Merge pull request #7 from alibuild/alibot-cleanup-10535
Please consider the following formatting changes to AliceO2Group#10535
2 parents b37571a + e43679b commit 4c39c99

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

PWGLF/Tasks/Nuspex/antinucleiInJets.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ struct AntinucleiInJets {
253253
}
254254

255255
// systematic uncertainties
256-
if(doprocessSystematicsData) {
256+
if (doprocessSystematicsData) {
257257
registryData.add("antiproton_tpc_syst", "antiproton_tpc_syst", HistType::kTHnSparseF, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}, {400, -20.0, 20.0, "n#sigma_{TPC}"}, {10, 0, 10, "systematic uncertainty"}});
258258
registryData.add("antiproton_tof_syst", "antiproton_tof_syst", HistType::kTHnSparseF, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}, {400, -20.0, 20.0, "n#sigma_{TOF}"}, {10, 0, 10, "systematic uncertainty"}});
259259
registryData.add("antideuteron_tpc_syst", "antideuteron_tpc_syst", HistType::kTHnSparseF, {{nbins, min * 2, max * 2, "#it{p}_{T} (GeV/#it{c})"}, {400, -20.0, 20.0, "n#sigma_{TPC}"}, {10, 0, 10, "systematic uncertainty"}});
@@ -262,7 +262,7 @@ struct AntinucleiInJets {
262262

263263
if (doprocessSystematicsEfficiency) {
264264
registryMC.add("antiproton_incl_gen_syst", "antiproton_incl_gen_syst", HistType::kTHnSparseF, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}, {10, 0, 10, "systematic uncertainty"}});
265-
registryMC.add("antideuteron_incl_gen_syst", "antideuteron_incl_gen_syst", HistType::kTHnSparseF, {{nbins, min * 2, max * 2, "#it{p}_{T} (GeV/#it{c})"}, {10, 0, 10, "systematic uncertainty"}});
265+
registryMC.add("antideuteron_incl_gen_syst", "antideuteron_incl_gen_syst", HistType::kTHnSparseF, {{nbins, min * 2, max * 2, "#it{p}_{T} (GeV/#it{c})"}, {10, 0, 10, "systematic uncertainty"}});
266266
registryMC.add("antiproton_incl_prim_syst", "antiproton_incl_prim_syst", HistType::kTHnSparseF, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}, {10, 0, 10, "systematic uncertainty"}});
267267
registryMC.add("antiproton_incl_rec_tpc_syst", "antiproton_incl_rec_tpc_syst", HistType::kTHnSparseF, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}, {400, -20.0, 20.0, "n#sigma_{TPC}"}, {10, 0, 10, "systematic uncertainty"}});
268268
registryMC.add("antiproton_incl_rec_tof_syst", "antiproton_incl_rec_tof_syst", HistType::kTHnSparseF, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}, {400, -20.0, 20.0, "n#sigma_{TOF}"}, {10, 0, 10, "systematic uncertainty"}});
@@ -1332,7 +1332,7 @@ struct AntinucleiInJets {
13321332
float tpcNcrossedRowsSyst[nSystematics] = {100, 85, 80, 110, 95, 90, 105, 95, 100, 105};
13331333
float dcaxySyst[nSystematics] = {0.05, 0.07, 0.10, 0.03, 0.06, 0.15, 0.08, 0.04, 0.09, 0.10};
13341334
float dcazSyst[nSystematics] = {0.1, 0.15, 0.3, 0.075, 0.12, 0.18, 0.2, 0.1, 0.15, 0.2};
1335-
1335+
13361336
for (const auto& collision : collisions) {
13371337

13381338
if (!collision.sel8() || std::fabs(collision.posZ()) > zVtx)
@@ -1362,9 +1362,9 @@ struct AntinucleiInJets {
13621362

13631363
// Reconstructed Tracks
13641364
for (auto const& track : mcTracks) {
1365-
1365+
13661366
// Get MC Particle
1367-
if (!track.has_mcParticle())
1367+
if (!track.has_mcParticle())
13681368
continue;
13691369
const auto particle = track.mcParticle();
13701370

@@ -1376,7 +1376,7 @@ struct AntinucleiInJets {
13761376
double dcaxy = track.dcaXY();
13771377
double dcaz = track.dcaZ();
13781378

1379-
for(int i = 0; i < nSystematics; i++) {
1379+
for (int i = 0; i < nSystematics; i++) {
13801380

13811381
// Track Selection
13821382
if (requirePvContributor && !(track.isPVContributor()))

0 commit comments

Comments
 (0)