Skip to content

Commit c8bb5c7

Browse files
committed
fixed whitespace
1 parent eb98e62 commit c8bb5c7

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

PWGLF/Tasks/Nuspex/antinucleiInJetsCDF.cxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ struct ReducedParticle {
7979
double nsigmaTOF;
8080
bool hasTOF;
8181
bool isPhysPrim;
82-
82+
8383
// Transverse Momentum
8484
double pt() const
8585
{
@@ -133,7 +133,7 @@ struct AntinucleiInJetsCDF {
133133

134134
// Process real data
135135
if (doprocessData) {
136-
136+
137137
// Event counter
138138
registryData.add("number_of_events_data", "number of events in data", HistType::kTH1F, {{20, 0, 20, "counter"}});
139139

@@ -160,14 +160,14 @@ struct AntinucleiInJetsCDF {
160160

161161
// Process generated MC
162162
if (doprocessGenMC) {
163-
163+
164164
// Event counter
165165
registryMC.add("genEvents", "number of generated events in mc", HistType::kTH1F, {{10, 0, 10, "counter"}});
166-
166+
167167
// Histograms for generated particles in the full event
168168
registryMC.add("antip_gen", "antip_gen", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
169169
registryMC.add("antid_gen", "antid_gen", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
170-
170+
171171
// Histograms for generated particles in different azimuthal regions
172172
registryMC.add("antip_toward_gen", "antip_toward_gen", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
173173
registryMC.add("antip_transv_gen", "antip_transv_gen", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
@@ -177,16 +177,16 @@ struct AntinucleiInJetsCDF {
177177

178178
// Process reconstructed MC
179179
if (doprocessRecMC) {
180-
180+
181181
// Event counter
182182
registryMC.add("recEvents", "number of reconstructed events in mc", HistType::kTH1F, {{10, 0, 10, "counter"}});
183-
183+
184184
// Histograms for reconstructed particles in the full event
185185
registryMC.add("antip_rec_tpc", "antip_rec_tpc", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
186186
registryMC.add("antip_rec_tof", "antip_rec_tof", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
187187
registryMC.add("antid_rec_tpc", "antid_rec_tpc", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
188188
registryMC.add("antid_rec_tof", "antid_rec_tof", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
189-
189+
190190
// Histograms for reconstructed particles in different azimuthal regions
191191
registryMC.add("antip_toward_rec_tpc", "antip_toward_rec_tpc", HistType::kTH1F,
192192
{{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
@@ -204,7 +204,7 @@ struct AntinucleiInJetsCDF {
204204
{{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
205205
registryMC.add("antid_transv_rec_tof", "antid_transv_rec_tof", HistType::kTH1F,
206206
{{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
207-
207+
208208
// Histograms for secondary antiprotons
209209
registryMC.add("antip_toward_prim", "antip_toward_prim", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
210210
registryMC.add("antip_toward_all", "antip_toward_all", HistType::kTH1F, {{nbins, min, max, "#it{p}_{T} (GeV/#it{c})"}});
@@ -313,7 +313,7 @@ struct AntinucleiInJetsCDF {
313313
return (std::abs(deltaPhi) >= o2::constants::math::PIThird &&
314314
std::abs(deltaPhi) < Two * o2::constants::math::PIThird);
315315
}
316-
316+
317317
// Check if particle is a physical primary or a decay product of a heavy-flavor hadron
318318
bool isPhysicalPrimaryOrFromHF(aod::McParticle const& particle, aod::McParticles const& mcParticles)
319319
{
@@ -421,7 +421,7 @@ struct AntinucleiInJetsCDF {
421421
// Find azimuthal region
422422
const bool isToward = isParticleInTowardRegion(trackVec, leadingTrackVec);
423423
const bool isTransv = isParticleInTransverseRegion(trackVec, leadingTrackVec);
424-
424+
425425
// Antiprotons in the toward region
426426
if (isToward && yp >= minY && yp <= maxY) {
427427
registryData.fill(HIST("antip_toward_tpc"), track.pt(), nsigmaTPCPr);

0 commit comments

Comments
 (0)