File indexing completed on 2025-02-07 14:23:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTMuonL1TFilter(*args, **kwargs):
0004 mod = cms.EDFilter('HLTMuonL1TFilter',
0005 saveTags = cms.bool(True),
0006 CandTag = cms.InputTag('hltGmtStage2Digis'),
0007 PreviousCandTag = cms.InputTag(''),
0008 MaxEta = cms.double(2.5),
0009 MinPt = cms.double(0),
0010 MaxDeltaR = cms.double(0.3),
0011 MinN = cms.int32(1),
0012 CentralBxOnly = cms.bool(True),
0013 SelectQualities = cms.vint32(),
0014 mightGet = cms.optional.untracked.vstring
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod