Skip to content

Commit 725819b

Browse files
authored
Fix conditional structure in flowDecorrelation.cxx
1 parent 81ca911 commit 725819b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGCF/TwoParticleCorrelations/Tasks/flowDecorrelation.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1633,8 +1633,9 @@ struct FlowDecorrelation {
16331633
if (!cfgMcTrue.cfgUseFt0cStructure) {
16341634
if (std::abs(track1.eta()) < 0.9)
16351635
continue;
1636-
} else if (!ft0cCollisionCourse(track1.eta(), track1.phi(), posZ))
1636+
} else if (!ft0cCollisionCourse(track1.eta(), track1.phi(), posZ)) {
16371637
continue;
1638+
}
16381639

16391640
if (step >= CorrelationContainer::kCFStepTrackedOnlyPrim && !track1.isPhysicalPrimary())
16401641
continue;

0 commit comments

Comments
 (0)