Skip to content

Commit 00f5ba3

Browse files
authored
Update dndetaMFTPbPb.cxx
collision.posZ(): change of "less than" to "less than or equal to"
1 parent d4fec24 commit 00f5ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ struct DndetaMFTPbPb {
989989
if constexpr (fillHis) {
990990
registry.fill(HIST("Events/hEvtSel"), 3);
991991
}
992-
if (collision.posZ() < eventCuts.minZvtx || collision.posZ() > eventCuts.maxZvtx) {
992+
if (collision.posZ() <= eventCuts.minZvtx || collision.posZ() >= eventCuts.maxZvtx) {
993993
return false;
994994
}
995995
if constexpr (fillHis) {

0 commit comments

Comments
 (0)