Skip to content

Commit ba442f0

Browse files
author
jimun_lee
committed
[PWGLF] Return the current code of KstarInOO.cxx
1 parent d86e400 commit ba442f0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

PWGLF/Tasks/Resonances/kstarInOO.cxx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,13 +279,11 @@ struct kstarInOO {
279279
return false;
280280
if (cfgTrackGlobalWoDCATrack && !track.isGlobalTrackWoDCA())
281281
return false;
282-
// if (cfgTracknFindableTPCClusters > 0 && track.tpcNClsFindable() < cfgTracknFindableTPCClusters)
283-
if (track.tpcNClsFindable() < cfgTracknFindableTPCClusters)
282+
if (cfgTracknFindableTPCClusters > 0 && track.tpcNClsFindable() < cfgTracknFindableTPCClusters)
284283
return false;
285284
if (track.tpcNClsCrossedRows() < cfgTracknTPCCrossedRows)
286285
return false;
287-
// if (cfgTracknRowsOverFindable > 0 && track.tpcCrossedRowsOverFindableCls() > cfgTracknRowsOverFindable)
288-
if (track.tpcCrossedRowsOverFindableCls() > cfgTracknRowsOverFindable)
286+
if (cfgTracknRowsOverFindable > 0 && track.tpcCrossedRowsOverFindableCls() > cfgTracknRowsOverFindable)
289287
return false;
290288
if (track.tpcChi2NCl() > cfgTracknTPCChi2)
291289
return false;

0 commit comments

Comments
 (0)