88// In applying this license CERN does not waive the privileges and immunities
99// granted to it by virtue of its status as an Intergovernmental Organization
1010// or submit itself to any jurisdiction.
11+ // /
1112// / \file ptSpectraInclusiveUpc.cxx
12-
13+ // / \executable o2-analysis-ud-pt-spectra-inclusive-upc
1314// / \brief Task for the of pT spectra of pions, kaons and protons in inclusive UPC events.
1415// / Used to obtain the templates for the DCA_xy fits for the primary fractions
1516// /
@@ -236,7 +237,6 @@ struct ptSpectraInclusiveUpc {
236237
237238 if (mcParticle.isPhysicalPrimary ()) {
238239 histos.fill (HIST (" ptReconstructedTPCPion" ), pion->Pt ());
239- // selEv = true;
240240 histos.fill (HIST (" DCAxy_primary_pions" ), track.dcaXY ());
241241 } else {
242242 histos.fill (HIST (" DCAxy_secondary_pions" ), track.dcaXY ());
@@ -249,7 +249,6 @@ struct ptSpectraInclusiveUpc {
249249
250250 if (mcParticle.isPhysicalPrimary ()) {
251251 histos.fill (HIST (" ptReconstructedTPCKaon" ), kaon->Pt ());
252- // selEv = true;
253252 histos.fill (HIST (" DCAxy_primary_kaons" ), track.dcaXY ());
254253 } else {
255254 histos.fill (HIST (" DCAxy_secondary_kaons" ), track.dcaXY ());
@@ -263,7 +262,6 @@ struct ptSpectraInclusiveUpc {
263262
264263 if (mcParticle.isPhysicalPrimary ()) {
265264 histos.fill (HIST (" ptReconstructedTPCProton" ), proton->Pt ());
266- // selEv = true;
267265 histos.fill (HIST (" DCAxy_primary_protons" ), track.dcaXY ());
268266 } else {
269267 if (mcParticle.getProcess () == kPDecay ) {
0 commit comments