@@ -220,7 +220,7 @@ struct FlowPtEfficiency {
220220 fGFWReco ->CreateRegions ();
221221 }
222222
223- if (cfgEnableITSCuts){
223+ if (cfgEnableITSCuts) {
224224 if (cfgTrkSelRun3ITSMatch) {
225225 myTrackSel = getGlobalTrackSelectionRun3ITSMatch (TrackSelection::GlobalTrackRun3ITSMatching::Run3ITSall7Layers, TrackSelection::GlobalTrackRun3DCAxyCut::Default);
226226 } else {
@@ -234,11 +234,10 @@ struct FlowPtEfficiency {
234234 }
235235 myTrackSel.SetMinNClustersTPC (cfgCutTPCclu);
236236 myTrackSel.SetMinNCrossedRowsTPC (cfgCutTPCcrossedrows);
237- if (cfgEnableITSCuts) myTrackSel.SetMinNClustersITS (cfgCutITSclu);
237+ if (cfgEnableITSCuts)
238+ myTrackSel.SetMinNClustersITS (cfgCutITSclu);
238239 if (!cfgCutDCAzPtDepEnabled)
239240 myTrackSel.SetMaxDcaZ (cfgCutDCAz);
240-
241-
242241 }
243242
244243 template <char ... chars>
@@ -363,12 +362,12 @@ struct FlowPtEfficiency {
363362 template <typename TTrack>
364363 bool trackSelected (TTrack track)
365364 {
366- if (cfgkIsTrackGlobal && !track.isGlobalTrack ()){
367- LOGF (info," Track is not global" );
365+ if (cfgkIsTrackGlobal && !track.isGlobalTrack ()) {
366+ LOGF (info, " Track is not global" );
368367 return false ;
369368 }
370- if (cfgCutDCAzPtDepEnabled && (track.dcaZ () > (0 .004f + 0 .013f / track.pt ()))){
371- LOGF (info," pt-dep DCAz not valid" );
369+ if (cfgCutDCAzPtDepEnabled && (track.dcaZ () > (0 .004f + 0 .013f / track.pt ()))) {
370+ LOGF (info, " pt-dep DCAz not valid" );
372371 return false ;
373372 }
374373 return myTrackSel.IsSelected (track);
0 commit comments