Skip to content

Commit 0b0e06a

Browse files
committed
Added crucial part for etawise propagation. This change should be included to the initial commit, but I omitted it by mistake
1 parent f144c44 commit 0b0e06a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

TrackingTools/TrackAssociator/plugins/MuonDetIdAssociator.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,10 @@ void MuonDetIdAssociator::getValidDetIds(unsigned int subDectorIndex, std::vecto
9898
if (gem->id().station() == 0)
9999
validIds.push_back(gem->id());
100100
else
101-
for (auto ch : gem->chambers())
102-
validIds.push_back(ch->id());
101+
for (auto ch : gem->chambers()) {
102+
for (auto eta : ch->etaPartitions())
103+
validIds.push_back(eta->id());
104+
}
103105
}
104106
}
105107
}

0 commit comments

Comments
 (0)