Skip to content

Commit a5a20de

Browse files
committed
Fixed a sign error in the trackFilters function
1 parent 0b6f3aa commit a5a20de

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)