Skip to content

Commit 0da6b86

Browse files
committed
fixed typo
1 parent 5c1544c commit 0da6b86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGLF/Tasks/Nuspex/nucleiInJets.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ struct NucleiInJets {
274274
return false;
275275
if (track.tpcNClsCrossedRows() < 70)
276276
return false;
277-
if ((static_cast<double> track.tpcNClsCrossedRows() / static_cast<double> track.tpcNClsFindable()) < 0.8)
277+
if ((static_cast<double>(track.tpcNClsCrossedRows()) / static_cast<double>(track.tpcNClsFindable())) < 0.8)
278278
return false;
279279
if (track.tpcChi2NCl() > 4)
280280
return false;
@@ -322,7 +322,7 @@ struct NucleiInJets {
322322
return false;
323323
if (track.tpcNClsCrossedRows() < minTpcNcrossedRows)
324324
return false;
325-
if ((static_cast<double> track.tpcNClsCrossedRows() / static_cast<double> track.tpcNClsFindable()) < minTpcNcrossedRowsOverFindable)
325+
if ((static_cast<double>(track.tpcNClsCrossedRows()) / static_cast<double>(track.tpcNClsFindable())) < minTpcNcrossedRowsOverFindable)
326326
return false;
327327
if (track.tpcChi2NCl() > maxChiSquareTpc)
328328
return false;

0 commit comments

Comments
 (0)