We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0e582 commit 1e7622dCopy full SHA for 1e7622d
1 file changed
PWGCF/Flow/Tasks/flowEventPlane.cxx
@@ -739,7 +739,7 @@ struct IdHadronFlow {
739
bool identifyTrack(T const& track)
740
{
741
// Electron rejection
742
- if (track.tpcNSigmaEl() > cTpcElRejCutMin && track.tpcNSigmaEl() < cTpcElRejCutMax) {
+ if (std::abs(track.tpcNSigmaPi()) > cTpcRejCut && std::abs(track.tpcNSigmaKa()) > cTpcRejCut && std::abs(track.tpcNSigmaPr()) > cTpcRejCut && track.tpcNSigmaEl() > cTpcElRejCutMin && track.tpcNSigmaEl() < cTpcElRejCutMax) {
743
return false;
744
}
745
0 commit comments