Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:04

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SiStripBadComponentInfo(**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 k,v in kwargs.items():
0015     setattr(mod, k, v)
0016   return mod