CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonHLTL1Match_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 muonHLTL1Match = cms.EDProducer("HLTL1MuonMatcher",
6  muonL1MatcherParameters,
7 
8  # Reconstructed muons
9  src = cms.InputTag("muons"),
10 
11  # L1 Muon collection, and preselection on that collection
12  matched = cms.InputTag("patTrigger"),
13 
14  # Requests to select the object
15  matchedCuts = cms.string('coll("hltL1extraParticles")'),
16 
17  # 90% compatible with documentation at SWGuidePATTrigger#Module_Configuration_AN1
18 # andOr = cms.bool( False ), # if False, do the 'AND' of the conditions below; otherwise, do the OR
19 # filterIdsEnum = cms.vstring( '*' ),
20 # filterIds = cms.vint32( 0 ),
21 # filterLabels = cms.vstring( '*' ),
22 # pathNames = cms.vstring( '*' ),
23 # collectionTags = cms.vstring( 'hltL1extraParticles' ),
24  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
25 
26  # Fake filter lavels for the object propagated to the second muon station
27  setPropLabel = cms.string("propagatedToM2"),
28 
29  # Write extra ValueMaps
30  writeExtraInfo = cms.bool(True),
31 )