Skip to content

Commit d266d8d

Browse files
authored
[PWGLF] Fix nSigmaTOF for protons (#14184)
1 parent d20cdae commit d266d8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/TableProducer/Strangeness/sigmaProtonCorr.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ struct sigmaProtonCorrTask {
159159
if (!candidate.hasTOF()) {
160160
return false;
161161
}
162-
if (std::abs(candidate.tofNSigmaPi()) > cutNSigmaTOF) {
162+
if (std::abs(candidate.tofNSigmaPr()) > cutNSigmaTOF) {
163163
return false;
164164
}
165165
return true; // Track is selected

0 commit comments

Comments
 (0)