Skip to content

Commit 6123003

Browse files
committed
Change V0A veto: veto only sel BC
1 parent 4490608 commit 6123003

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGUD/Tasks/FwdMuonsUPC.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ struct FwdMuonsUPC {
525525
const auto& ampsV0A = cand.amplitudesV0A();
526526
const auto& ampsRelBCsV0A = cand.ampRelBCsV0A();
527527
for (unsigned int i = 0; i < ampsV0A.size(); ++i) {
528-
if (std::abs(ampsRelBCsV0A[i]) <= 1) {
528+
if (std::abs(ampsRelBCsV0A[i]) <= 0) {
529529
if (ampsV0A[i] > kMaxAmpV0A)
530530
return;
531531
}
@@ -768,7 +768,7 @@ struct FwdMuonsUPC {
768768
const auto& ampsV0A = cand.amplitudesV0A();
769769
const auto& ampsRelBCsV0A = cand.ampRelBCsV0A();
770770
for (unsigned int i = 0; i < ampsV0A.size(); ++i) {
771-
if (std::abs(ampsRelBCsV0A[i]) <= 1) {
771+
if (std::abs(ampsRelBCsV0A[i]) <= 0) {
772772
if (ampsV0A[i] > kMaxAmpV0A)
773773
return;
774774
}

0 commit comments

Comments
 (0)