File indexing completed on 2024-11-23 03:28:13
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def L1TExtCondProducer(*args, **kwargs):
0004 mod = cms.EDProducer('L1TExtCondProducer',
0005 setBptxMinus = cms.bool(True),
0006 setBptxAND = cms.bool(True),
0007 bxFirst = cms.int32(-2),
0008 setBptxOR = cms.bool(True),
0009 bxLast = cms.int32(2),
0010 setBptxPlus = cms.bool(True),
0011 tcdsRecordLabel = cms.InputTag(''),
0012 mightGet = cms.optional.untracked.vstring
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod