Skip to content

Commit 7083186

Browse files
authored
[PWGCF] Fixed a sign error in the trackFilters function (#12548)
1 parent 83ebcaa commit 7083186

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ struct ThreeParticleCorrelations {
10071007
return false;
10081008
}
10091009
} else if (track.pt() > pionPtMid1 && track.pt() < pionPtMid2) {
1010-
if (track.tofNSigmaPi() <= -nSigma4 || track.tofNSigmaPi() >= -nSigma2) {
1010+
if (track.tofNSigmaPi() <= -nSigma4 || track.tofNSigmaPi() >= nSigma2) {
10111011
return false;
10121012
}
10131013
} else if (track.pt() > pionPtMid2 && track.pt() < pionPtMax) {

0 commit comments

Comments
 (0)