Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SiPhase2BadStripConfigurableFakeESSource(**kwargs):
0004   mod = cms.ESSource('SiPhase2BadStripConfigurableFakeESSource',
0005     seed = cms.uint32(1),
0006     printDebug = cms.untracked.bool(False),
0007     badComponentsFraction = cms.double(0.01),
0008     appendToDataLabel = cms.string('')
0009   )
0010   for k,v in kwargs.items():
0011     setattr(mod, k, v)
0012   return mod