Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTMuonTrkL1TkMuFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTMuonTrkL1TkMuFilter',
0005     saveTags = cms.bool(True),
0006     inputMuonCollection = cms.InputTag(''),
0007     inputCandCollection = cms.InputTag(''),
0008     l1GTAlgoBlockTag = cms.InputTag(''),
0009     l1GTAlgoNames = cms.vstring(),
0010     minTrkHits = cms.int32(-1),
0011     minMuonHits = cms.int32(-1),
0012     minMuonStations = cms.int32(-1),
0013     maxNormalizedChi2 = cms.double(1e+99),
0014     trkMuonId = cms.uint32(0),
0015     minPt = cms.double(24),
0016     minN = cms.uint32(1),
0017     maxAbsEta = cms.double(1e+99),
0018     mightGet = cms.optional.untracked.vstring
0019   )
0020   for a in args:
0021     mod.update_(a)
0022   mod.update_(kwargs)
0023   return mod