Skip to content

Commit 012b1af

Browse files
authored
[PWGLF] Change TOF selection cut (#12639)
1 parent 208256b commit 012b1af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGLF/Tasks/Resonances/phispectrapbpbqa.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ struct phispectrapbpbqa {
318318
}
319319
if (track1.p() < 0.6) {
320320
histos.fill(HIST("hNsigmaTPC"), nSigmaTPC, track1.p(), occupancy, centrality);
321-
} else if (track1.p() > 0.6 && track1.hasTOF() && std::abs(nSigmaTOF) < 4.0) {
321+
} else if (track1.p() > 0.6 && track1.hasTOF() && std::abs(nSigmaTOF) < 2.5) {
322322
histos.fill(HIST("hNsigmaTPC"), nSigmaTPC, track1.p(), occupancy, centrality);
323323
}
324324
if (track1.hasTOF()) {
@@ -368,7 +368,7 @@ struct phispectrapbpbqa {
368368
if (Npostrack == 1) {
369369
if (track2.p() < 0.6) {
370370
histos.fill(HIST("hNsigmaTPC"), nSigmaTPC2, track2.p(), occupancy, centrality);
371-
} else if (track2.p() > 0.6 && track2.hasTOF() && std::abs(nSigmaTOF2) < 4.0) {
371+
} else if (track2.p() > 0.6 && track2.hasTOF() && std::abs(nSigmaTOF2) < 2.5) {
372372
histos.fill(HIST("hNsigmaTPC"), nSigmaTPC2, track2.p(), occupancy, centrality);
373373
}
374374
if (track2.hasTOF()) {

0 commit comments

Comments
 (0)