File indexing completed on 2024-11-23 03:27:49
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def CTPPSInterpolatedOpticalFunctionsESSource(*args, **kwargs):
0004 mod = cms.ESProducer('CTPPSInterpolatedOpticalFunctionsESSource',
0005 lhcInfoLabel = cms.string(''),
0006 lhcInfoPerFillLabel = cms.string(''),
0007 lhcInfoPerLSLabel = cms.string(''),
0008 opticsLabel = cms.string(''),
0009 useNewLHCInfo = cms.bool(False),
0010 appendToDataLabel = cms.string('')
0011 )
0012 for a in args:
0013 mod.update_(a)
0014 mod.update_(kwargs)
0015 return mod