File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ struct FlowZdcTask {
9292 Configurable<bool > isOccupancyCut{" isOccupancyCut" , false , " Occupancy cut?" };
9393 Configurable<bool > isApplyFT0CbasedOccupancy{" isApplyFT0CbasedOccupancy" , false , " T0C Occu cut?" };
9494 Configurable<bool > isTDCcut{" isTDCcut" , false , " Use TDC cut?" };
95- Configurable<bool > isT0CCent{" isT0CCent" , true , " Use T0C cent cut?" };
9695 Configurable<bool > isApplyRadialCut{" isApplyRadialCut" , false , " Use cut on X and Y?" };
9796 Configurable<bool > useMidRapNchSel{" useMidRapNchSel" , false , " Use mid-rapidity Nch selection" };
9897
@@ -377,11 +376,9 @@ struct FlowZdcTask {
377376 }
378377 histos.fill (HIST (" hEventCounter" ), EvCutLabel::OccuCut);
379378
380- if (isT0CCent) {
381- if (col.centFT0C () < minT0CcentCut || col.centFT0C () > maxT0CcentCut) {
379+ if (col.centFT0C () < minT0CcentCut || col.centFT0C () > maxT0CcentCut) {
382380 return false ;
383381 }
384- }
385382 histos.fill (HIST (" hEventCounter" ), EvCutLabel::Centrality);
386383
387384 // Z-vertex position cut
You can’t perform that action at this time.
0 commit comments