Skip to content

Commit 6701e42

Browse files
authored
[PWGDQ] fix track selection for MCH realignment (#16880)
1 parent f30c689 commit 6701e42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGDQ/Tasks/global-muon-matcher.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ struct GlobalMuonMatching {
12581258
for (auto const& muon : muons) {
12591259
int mchIndex = muon.globalIndex();
12601260
// skip global forward matches
1261-
if (muon.trackType() > GlobalTrackTypeMax) {
1261+
if (muon.trackType() <= GlobalTrackTypeMax) {
12621262
continue;
12631263
}
12641264

0 commit comments

Comments
 (0)