CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
patRefSel_triggerMatching_cfi.py
Go to the documentation of this file.
2 
3 muonTriggerMatch = cms.EDProducer(
4  "PATTriggerMatcherDRDPtLessByR"
5 , src = cms.InputTag( 'signalMuons' )
6 , matched = cms.InputTag( 'patTrigger' )
7 , matchedCuts = cms.string( 'type("TriggerMuon")' )
8 , maxDPtRel = cms.double( 0.5 )
9 , maxDeltaR = cms.double( 0.5 )
10 , resolveAmbiguities = cms.bool( True )
11 , resolveByMatchQuality = cms.bool( True )
12 )
13 
14 signalMuonsTriggerMatch = cms.EDProducer(
15  "PATTriggerMatchMuonEmbedder"
16 , src = cms.InputTag( 'signalMuons' )
17 , matches = cms.VInputTag(
18  cms.InputTag( 'muonTriggerMatch' )
19  )
20 )