@@ -97,7 +97,7 @@ struct tofSpectra {
9797 } trkselOptions;
9898
9999 Configurable<bool > enableDcaGoodEvents{" enableDcaGoodEvents" , true , " Enables the MC plots with the correct match between data and MC" };
100- Configurable<bool > enablepuredcahist{ " enablepuredcahist " , false , " Enables the pure DCA histograms" };
100+ Configurable<bool > enablePureDCAHistogram{ " enablePureDCAHistogram " , false , " Enables the pure DCA histograms" };
101101 Configurable<bool > enableTrackCutHistograms{" enableTrackCutHistograms" , true , " Enables track cut histograms, before and after the cut" };
102102 Configurable<bool > enableDeltaHistograms{" enableDeltaHistograms" , true , " Enables the delta TPC and TOF histograms" };
103103 Configurable<bool > enableTPCTOFHistograms{" enableTPCTOFHistograms" , true , " Enables TPC TOF histograms" };
@@ -1911,7 +1911,7 @@ struct tofSpectra {
19111911
19121912 const auto & nsigmaTOFKa = o2::aod::pidutils::tofNSigma<3 >(track);
19131913 const bool isKaonTOF = std::abs (nsigmaTOFKa) < trkselOptions.cfgCutNsigma ;
1914- if (enablepuredcahist ) {
1914+ if (enablePureDCAHistogram ) {
19151915 // Filling DCA info with the TPC+TOF PID
19161916 bool isDCAPureSample = (std::sqrt (nsigmaTOFKa * nsigmaTOFKa + nsigmaTPCKa * nsigmaTPCKa) < 2 .f );
19171917 if (track.pt () <= 0.4 ) {
@@ -2052,7 +2052,7 @@ struct tofSpectra {
20522052 hDcaXYWrongCollisionPrm[i]->Fill (track.pt (), track.dcaXY ());
20532053 }
20542054 }
2055-
2055+
20562056 if (!passesDCAxyCut (track)) { // Skipping tracks that don't pass the standard cuts
20572057 return ;
20582058 }
0 commit comments