00001 import FWCore.ParameterSet.Config as cms 00002 00003 from MuonAnalysis.MuonAssociators.muonL1Match_cfi import * 00004 00005 muonHLTL1Match = cms.EDProducer("HLTL1MuonMatcher", 00006 muonL1MatcherParameters, 00007 00008 # Reconstructed muons 00009 src = cms.InputTag("muons"), 00010 00011 # L1 Muon collection, and preselection on that collection 00012 matched = cms.InputTag("patTrigger"), 00013 00014 # Requests to select the object 00015 matchedCuts = cms.string('coll("hltL1extraParticles")'), 00016 00017 # 90% compatible with documentation at SWGuidePATTrigger#Module_Configuration_AN1 00018 # andOr = cms.bool( False ), # if False, do the 'AND' of the conditions below; otherwise, do the OR 00019 # filterIdsEnum = cms.vstring( '*' ), 00020 # filterIds = cms.vint32( 0 ), 00021 # filterLabels = cms.vstring( '*' ), 00022 # pathNames = cms.vstring( '*' ), 00023 # collectionTags = cms.vstring( 'hltL1extraParticles' ), 00024 resolveAmbiguities = cms.bool( True ), # if True, no more than one reco object can be matched to the same L1 object; precedence is given to the reco ones coming first in the list 00025 00026 # Fake filter lavels for the object propagated to the second muon station 00027 setPropLabel = cms.string("propagatedToM2"), 00028 00029 # Write extra ValueMaps 00030 writeExtraInfo = cms.bool(True), 00031 )