File indexing completed on 2025-02-07 14:23:42
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def SiStripBadComponentInfo(*args, **kwargs):
0004 mod = cms.EDProducer('SiStripBadComponentInfo',
0005 StripQualityLabel = cms.string(''),
0006 BadComponentsFromFedErrors = cms.PSet(
0007 Add = cms.bool(False),
0008 Cutoff = cms.double(0.8),
0009 LegacyDQMFile = cms.string(''),
0010 FileRunNumber = cms.uint32(4294967295)
0011 ),
0012 mightGet = cms.optional.untracked.vstring
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod