Skip to content

Commit 50d4624

Browse files
committed
[PWGDQ] fix track selection for MCH realignment
The MCH realignment was applied to global muon tracks instead of MCH(-MID) tracks.
1 parent 4ce4c0c commit 50d4624

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)