Skip to content

Commit f679e1b

Browse files
committed
Improve TOF PID selection cut
1 parent 1a0328e commit f679e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ struct phispectrapbpbqa {
213213
template <typename T>
214214
bool selectionPIDpTdependent(const T& candidate, double nsigmaTPC, double nsigmaTOF)
215215
{
216-
if(candidate.p() < 0.7 && TMath::Abs(nsigmaTPC) < nsigmaCutTPC) {
216+
if (candidate.p() < 0.7 && TMath::Abs(nsigmaTPC) < nsigmaCutTPC) {
217217
return true;
218218
}
219219
if (candidate.p() > 0.7 && candidate.hasTOF() && TMath::Abs(nsigmaTPC) < nsigmaCutTPC) {

0 commit comments

Comments
 (0)