Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:48

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from MuonAnalysis.MuonAssociators.muonL1Match_cfi import *
0004 
0005 muonHLTL1Match = cms.EDProducer("HLTL1MuonMatcher",
0006     muonL1MatcherParameters,
0007 
0008     # Reconstructed muons

0009     src = cms.InputTag("muons"),
0010 
0011     # L1 Muon collection, and preselection on that collection

0012     matched     = cms.InputTag("patTrigger"),
0013 
0014     # Requests to select the object

0015     matchedCuts = cms.string('coll("hltL1extraParticles")'),
0016 
0017     # 90% compatible with documentation at SWGuidePATTrigger#Module_Configuration_AN1

0018 #    andOr          = cms.bool( False ), # if False, do the 'AND' of the conditions below; otherwise, do the OR

0019 #    filterIdsEnum  = cms.vstring( '*' ),

0020 #    filterIds      = cms.vint32( 0 ),

0021 #    filterLabels   = cms.vstring( '*' ),

0022 #    pathNames      = cms.vstring( '*' ),

0023 #    collectionTags = cms.vstring( 'hltL1extraParticles' ),

0024     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

0025 
0026     # Fake filter lavels for the object propagated to the second muon station

0027     setPropLabel = cms.string("propagatedToM2"),
0028 
0029     # Write extra ValueMaps

0030     writeExtraInfo = cms.bool(True),
0031 )