We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b15091 commit 8ea3701Copy full SHA for 8ea3701
PWGCF/Flow/Tasks/flowMc.cxx
@@ -131,6 +131,7 @@ struct FlowMc {
131
std::vector<GFW::CorrConfig> corrconfigsTruth;
132
std::vector<GFW::CorrConfig> corrconfigsReco;
133
TRandom3* fRndm = new TRandom3(0);
134
+ double epsilon = 1e-6;
135
136
void init(InitContext&)
137
{
@@ -532,10 +533,10 @@ struct FlowMc {
532
533
if (track.hasTPC()) {
534
validTPCTrack = true;
535
}
- if (track.hasITS() && track.itsChi2NCl() > -1e-6) {
536
+ if (track.hasITS() && track.itsChi2NCl() > -1. * epsilon) {
537
validITSTrack = true;
538
- if (track.hasITS() && track.itsChi2NCl() < -1e-6) {
539
+ if (track.hasITS() && track.itsChi2NCl() < -1. * epsilon) {
540
validITSABTrack = true;
541
542
0 commit comments