Skip to content

Commit 14410d7

Browse files
committed
Change V0A veto: veto only sel BC
1 parent 8288795 commit 14410d7

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
@@ -531,7 +531,7 @@ struct FwdMuonsUPC {
531531
const auto& ampsV0A = cand.amplitudesV0A();
532532
const auto& ampsRelBCsV0A = cand.ampRelBCsV0A();
533533
for (unsigned int i = 0; i < ampsV0A.size(); ++i) {
534-
if (std::abs(ampsRelBCsV0A[i]) <= 1) {
534+
if (std::abs(ampsRelBCsV0A[i]) <= 0) {
535535
if (ampsV0A[i] > kMaxAmpV0A)
536536
return;
537537
}
@@ -774,7 +774,7 @@ struct FwdMuonsUPC {
774774
const auto& ampsV0A = cand.amplitudesV0A();
775775
const auto& ampsRelBCsV0A = cand.ampRelBCsV0A();
776776
for (unsigned int i = 0; i < ampsV0A.size(); ++i) {
777-
if (std::abs(ampsRelBCsV0A[i]) <= 1) {
777+
if (std::abs(ampsRelBCsV0A[i]) <= 0) {
778778
if (ampsV0A[i] > kMaxAmpV0A)
779779
return;
780780
}

0 commit comments

Comments
 (0)