@@ -555,7 +555,7 @@ struct AntinucleiInJets {
555555 return false ;
556556 if (track.pt () < minPt)
557557 return false ;
558-
558+
559559 return true ;
560560 }
561561
@@ -596,7 +596,7 @@ struct AntinucleiInJets {
596596 // Retrieve the bunch crossing information with timestamps from the collision
597597 auto bc = collision.template bc_as <aod::BCsWithTimestamps>();
598598 initCCDB (bc);
599-
599+
600600 // If skimmed processing is enabled, apply Zorro trigger selection
601601 if (cfgSkimmedProcessing && !zorro.isSelected (collision.template bc_as <aod::BCsWithTimestamps>().globalBC ())) {
602602 return ;
@@ -942,7 +942,7 @@ struct AntinucleiInJets {
942942 fastjet::PseudoJet jetMinusBkg = backgroundSub.doRhoAreaSub (jetForSub, rhoPerp, rhoMPerp);
943943 if (jetMinusBkg.pt () < minJetPt)
944944 continue ;
945-
945+
946946 // Apply area cut if required
947947 double normalizedJetArea = jet.area () / (PI * rJet * rJet);
948948 if (applyAreaCut && normalizedJetArea > maxNormalizedJetArea)
@@ -1334,7 +1334,7 @@ struct AntinucleiInJets {
13341334 for (const auto & particle : jetConstituents) {
13351335 if (particle.user_index () != PDG_t::kProtonBar )
13361336 continue ;
1337-
1337+
13381338 if (particle.eta () < minEta || particle.eta () > maxEta)
13391339 continue ;
13401340
@@ -1374,7 +1374,7 @@ struct AntinucleiInJets {
13741374 // Reject tracks that lie outside the maxConeRadius from both UE axes
13751375 if (deltaRUe1 > maxConeRadius && deltaRUe2 > maxConeRadius)
13761376 continue ;
1377-
1377+
13781378 // Select antiprotons based on PDG
13791379 if (particle.pdgCode () != PDG_t::kProtonBar )
13801380 continue ;
@@ -1405,7 +1405,7 @@ struct AntinucleiInJets {
14051405
14061406 // Event counter: after event selection
14071407 registryMC.fill (HIST (" recEvents" ), 1.5 );
1408-
1408+
14091409 // Reject events near the ITS Read-Out Frame border
14101410 if (rejectITSROFBorder && !collision.selection_bit (o2::aod::evsel::kNoITSROFrameBorder ))
14111411 continue ;
@@ -1435,7 +1435,7 @@ struct AntinucleiInJets {
14351435 if (requireIsVertexTOFmatched && !collision.selection_bit (o2::aod::evsel::kIsVertexTOFmatched ))
14361436 continue ;
14371437 registryMC.fill (HIST (" recEvents" ), 7.5 );
1438-
1438+
14391439 // Loop over reconstructed tracks
14401440 int id (-1 );
14411441 std::vector<fastjet::PseudoJet> fjParticles;
@@ -1569,7 +1569,7 @@ struct AntinucleiInJets {
15691569 if (!track.has_mcParticle ())
15701570 continue ;
15711571 const auto mcparticle = track.mcParticle ();
1572-
1572+
15731573 // Antiproton selection
15741574 if (track.sign () > 0 || mcparticle.pdgCode () != PDG_t::kProtonBar )
15751575 continue ;
@@ -1580,7 +1580,7 @@ struct AntinucleiInJets {
15801580 double pt = track.pt ();
15811581 double dcaxy = track.dcaXY ();
15821582 double dcaz = track.dcaZ ();
1583-
1583+
15841584 // Fill DCA templates
15851585 if (mcparticle.pdgCode () == PDG_t::kProtonBar && std::fabs (dcaz) < maxDcaz) {
15861586 if (mcparticle.isPhysicalPrimary ()) {
@@ -1621,11 +1621,11 @@ struct AntinucleiInJets {
16211621
16221622 // Fill inclusive antiproton spectrum
16231623 registryMC.fill (HIST (" antiproton_incl_ue" ), pt);
1624-
1624+
16251625 // Select physical primary antiprotons
16261626 if (!mcparticle.isPhysicalPrimary ())
16271627 continue ;
1628-
1628+
16291629 // Fill antiproton spectrum for physical primaries
16301630 registryMC.fill (HIST (" antiproton_prim_ue" ), pt);
16311631
@@ -1748,7 +1748,7 @@ struct AntinucleiInJets {
17481748 // Apply track selection
17491749 if (!passedTrackSelectionSyst (track,isyst))
17501750 continue ;
1751-
1751+
17521752 // Define variables
17531753 double nsigmaTPCPr = track.tpcNSigmaPr ();
17541754 double nsigmaTOFPr = track.tofNSigmaPr ();
0 commit comments