@@ -651,16 +651,16 @@ struct LFNucleiBATask {
651651
652652 for (auto & track : tracks) {
653653
654-
655654 if constexpr (!IsFilteredData) {
656655 if (!track.isGlobalTrackWoDCA ()) {
657656 continue ;
658657 }
659658 }
660659
661- if (track.tpcNClsCrossedRows () < cfgCutTPCXRows) continue ;
662- if (track.tpcNClsFound () < cfgCutTPCClusters) continue ;
663-
660+ if (track.tpcNClsCrossedRows () < cfgCutTPCXRows)
661+ continue ;
662+ if (track.tpcNClsFound () < cfgCutTPCClusters)
663+ continue ;
664664
665665 // Tracks DCA histos fill
666666 histos.fill (HIST (" tracks/hDCAxy" ), track.dcaXY ());
@@ -723,15 +723,12 @@ struct LFNucleiBATask {
723723
724724 // LOG(info)<<"\n collisionId ============>"<<track.collisionId();
725725
726-
727-
728726 // QA histos fill
729727 histos.fill (HIST (" qa/h1TPCncr" ), track.tpcNClsCrossedRows ());
730728 histos.fill (HIST (" qa/h1rTPC" ), track.tpcCrossedRowsOverFindableCls ());
731729 histos.fill (HIST (" qa/h1chi2ITS" ), track.tpcChi2NCl ());
732730 histos.fill (HIST (" qa/h1chi2TPC" ), track.itsChi2NCl ());
733731
734-
735732 if (enableDebug) {
736733 if (track.sign () > 0 ) {
737734 histos.fill (HIST (" debug/qa/h2TPCncrVsPtPos" ), track.tpcInnerParam (), track.tpcNClsCrossedRows ());
@@ -762,7 +759,6 @@ struct LFNucleiBATask {
762759 }
763760 }
764761
765-
766762 // Tracks histos fill
767763 histos.fill (HIST (" tracks/h1Eta" ), track.eta ());
768764 histos.fill (HIST (" tracks/h1VarPhi" ), track.phi ());
0 commit comments