Skip to content

Commit 55bf23e

Browse files
authored
[ALICE3] fix bug in a3 cascade finding (#17010)
1 parent a1b4417 commit 55bf23e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ALICE3/TableProducer/alice3strangenessFinder.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ struct Alice3strangenessFinder {
598598
continue; // combined tracks should be reasonanly close
599599
}
600600

601-
if (cascCand.eta > presel.cascMaxEta) {
601+
if (std::abs(cascCand.eta) > presel.cascMaxEta) {
602602
continue; // candidate outside of acceptance
603603
}
604604

0 commit comments

Comments
 (0)