Skip to content

Commit

Permalink
Removed pixelLayers requirement in MuonSelectors.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
fmanteca authored Apr 10, 2024
1 parent 0f85469 commit f19939c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions DataFormats/MuonReco/src/MuonSelectors.cc
Original file line number Diff line number Diff line change
Expand Up @@ -867,8 +867,7 @@ bool muon::isLooseTriggerMuon(const reco::Muon& muon) {
bool tk_id = muon::isGoodMuon(muon, TMOneStationTight);
if (not tk_id)
return false;
bool layer_requirements = muon.innerTrack()->hitPattern().trackerLayersWithMeasurement() > 5 &&
muon.innerTrack()->hitPattern().pixelLayersWithMeasurement() > 0;
bool layer_requirements = muon.innerTrack()->hitPattern().trackerLayersWithMeasurement() > 5;
bool match_requirements =
(muon.expectedNnumberOfMatchedStations() < 2) or (muon.numberOfMatchedStations() > 1) or (muon.pt() < 8);
return layer_requirements and match_requirements;
Expand Down

0 comments on commit f19939c

Please sign in to comment.