Skip to content

Commit 8ea3701

Browse files
committed
o2 linter modified
1 parent 1b15091 commit 8ea3701

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

PWGCF/Flow/Tasks/flowMc.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ struct FlowMc {
131131
std::vector<GFW::CorrConfig> corrconfigsTruth;
132132
std::vector<GFW::CorrConfig> corrconfigsReco;
133133
TRandom3* fRndm = new TRandom3(0);
134+
double epsilon = 1e-6;
134135

135136
void init(InitContext&)
136137
{
@@ -532,10 +533,10 @@ struct FlowMc {
532533
if (track.hasTPC()) {
533534
validTPCTrack = true;
534535
}
535-
if (track.hasITS() && track.itsChi2NCl() > -1e-6) {
536+
if (track.hasITS() && track.itsChi2NCl() > -1. * epsilon) {
536537
validITSTrack = true;
537538
}
538-
if (track.hasITS() && track.itsChi2NCl() < -1e-6) {
539+
if (track.hasITS() && track.itsChi2NCl() < -1. * epsilon) {
539540
validITSABTrack = true;
540541
}
541542
}

0 commit comments

Comments
 (0)