Skip to content

Commit 9c6cd50

Browse files
committed
Please consider the following formatting changes
1 parent dd16c9f commit 9c6cd50

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

PWGLF/Tasks/Nuspex/nucleiFromHypertritonMap.cxx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ struct nucleiFromHypertritonMap {
118118
}
119119
}
120120
}
121-
if(mcparticle.pdgCode() == AntihePDG) {
121+
if (mcparticle.pdgCode() == AntihePDG) {
122122
registryMC.fill(HIST("he3PtGen"), mcparticle.pt());
123123
}
124-
if(mcparticle.pdgCode() == AntideuteronPDG) {
124+
if (mcparticle.pdgCode() == AntideuteronPDG) {
125125
registryMC.fill(HIST("deutPtGen"), mcparticle.pt());
126126
}
127127
}
@@ -137,28 +137,28 @@ struct nucleiFromHypertritonMap {
137137
}
138138

139139
if (track.itsNCls() < min_ITS_nClusters ||
140-
track.tpcNClsFound() < min_TPC_nClusters ||
141-
track.tpcNClsCrossedRows() < min_TPC_nCrossedRows ||
142-
track.tpcNClsCrossedRows() < 0.8 * track.tpcNClsFindable() ||
143-
track.tpcChi2NCl() > 4.f ||
144-
track.tpcChi2NCl() < min_chi2_TPC ||
145-
track.eta() < min_eta || track.eta() > max_eta ||
146-
track.dcaXY() > max_dcaxy || track.dcaXY() < -max_dcaxy ||
147-
track.dcaZ() > max_dcaz || track.dcaZ() < -max_dcaz ||
148-
track.itsChi2NCl() > 36.f) {
149-
continue;
150-
}
151-
if(mcparticle.pdgCode()==AntideuteronPDG) {
140+
track.tpcNClsFound() < min_TPC_nClusters ||
141+
track.tpcNClsCrossedRows() < min_TPC_nCrossedRows ||
142+
track.tpcNClsCrossedRows() < 0.8 * track.tpcNClsFindable() ||
143+
track.tpcChi2NCl() > 4.f ||
144+
track.tpcChi2NCl() < min_chi2_TPC ||
145+
track.eta() < min_eta || track.eta() > max_eta ||
146+
track.dcaXY() > max_dcaxy || track.dcaXY() < -max_dcaxy ||
147+
track.dcaZ() > max_dcaz || track.dcaZ() < -max_dcaz ||
148+
track.itsChi2NCl() > 36.f) {
149+
continue;
150+
}
151+
if (mcparticle.pdgCode() == AntideuteronPDG) {
152152
registryMC.fill(HIST("deutPtRec"), track.pt());
153153
}
154-
if(mcparticle.pdgCode()==AntihePDG) {
154+
if (mcparticle.pdgCode() == AntihePDG) {
155155
registryMC.fill(HIST("he3PtRec"), 2 * track.pt());
156156
}
157157

158158
for (auto& motherparticle : mcparticle.mothers_as<aod::McParticles>()) {
159-
if (motherparticle.pdgCode() == AntiHypertritonPDG || motherparticle.pdgCode() == AntiHyperHelium4PDG) {
159+
if (motherparticle.pdgCode() == AntiHypertritonPDG || motherparticle.pdgCode() == AntiHyperHelium4PDG) {
160160
if (motherparticle.pdgCode() == AntiHypertritonPDG) {
161-
if (mcparticle.pdgCode()==AntihePDG) {
161+
if (mcparticle.pdgCode() == AntihePDG) {
162162
registryMC.fill(HIST("he3SecPtRec_from_hypertriton"), 2 * track.pt());
163163
} else {
164164
registryMC.fill(HIST("deutSecPtRec_from_hypertriton"), track.pt());

0 commit comments

Comments
 (0)