@@ -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