Skip to content

Commit

Permalink
Merge pull request #16195 from jshlee/GEM-HitPattern-Fix-81X
Browse files Browse the repository at this point in the history
fix hitpattern for gem and me0
  • Loading branch information
cmsbuild committed Oct 27, 2016
2 parents 712fddf + 27eea45 commit eaf5002
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions RecoMuon/TrackingTools/src/MuonTrackLoader.cc
Expand Up @@ -79,6 +79,12 @@ std::vector<const TrackingRecHit*> MuonTrackLoader::unpackHit(const TrackingRecH
} else if (subdet == (uint16_t) MuonSubdetId::RPC) {
hits.push_back(&hit);
}
else if (subdet == (uint16_t) MuonSubdetId::GEM) {
hits.push_back(&hit);
}
else if (subdet == (uint16_t) MuonSubdetId::ME0) { //segment
hits = hit.recHits();
}
}
return hits;
}
Expand Down

0 comments on commit eaf5002

Please sign in to comment.