Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def EmptyESSource(**kwargs):
0004   mod = cms.ESSource('EmptyESSource',
0005     recordName = cms.required.string,
0006     iovIsRunNotTime = cms.bool(True),
0007     firstValid = cms.required.vuint32
0008   )
0009   for k,v in kwargs.items():
0010     setattr(mod, k, v)
0011   return mod