Skip to content

Commit 3296839

Browse files
authored
[PWGLF] Corrected the angular cut condition (AliceO2Group#10279)
1 parent 1a12302 commit 3296839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/Tasks/Resonances/higherMassResonances.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ struct HigherMassResonances {
544544

545545
double angle = std::sqrt(std::pow(eta1 - eta2, 2) + std::pow(phi1 - phi2, 2));
546546
rKzeroShort.fill(HIST("angularSeparation"), angle);
547-
if (config.applyAngSepCut && angle < config.angSepCut) {
547+
if (config.applyAngSepCut && angle > config.angSepCut) {
548548
return false;
549549
}
550550
return true;

0 commit comments

Comments
 (0)