Skip to content

Commit 1e7622d

Browse files
authored
Update flowEventPlane.cxx
1 parent 7d0e582 commit 1e7622d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGCF/Flow/Tasks/flowEventPlane.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ struct IdHadronFlow {
739739
bool identifyTrack(T const& track)
740740
{
741741
// Electron rejection
742-
if (track.tpcNSigmaEl() > cTpcElRejCutMin && track.tpcNSigmaEl() < cTpcElRejCutMax) {
742+
if (std::abs(track.tpcNSigmaPi()) > cTpcRejCut && std::abs(track.tpcNSigmaKa()) > cTpcRejCut && std::abs(track.tpcNSigmaPr()) > cTpcRejCut && track.tpcNSigmaEl() > cTpcElRejCutMin && track.tpcNSigmaEl() < cTpcElRejCutMax) {
743743
return false;
744744
}
745745

0 commit comments

Comments
 (0)