File indexing completed on 2025-02-07 14:23:32
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def CTPPSLHCInfoESSource(*args, **kwargs):
0004 mod = cms.ESSource('CTPPSLHCInfoESSource',
0005 label = cms.string(''),
0006 validityRange = cms.EventRange('0:18446744073709551615-0:18446744073709551615'),
0007 beamEnergy = cms.double(0),
0008 betaStar = cms.double(0),
0009 xangle = cms.double(0),
0010 appendToDataLabel = cms.string('')
0011 )
0012 for a in args:
0013 mod.update_(a)
0014 mod.update_(kwargs)
0015 return mod