File indexing completed on 2024-09-26 05:06:16
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_serial_sync_HcalMahiPulseOffsetsESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('alpaka_serial_sync::HcalMahiPulseOffsetsESProducer',
0005 pulseOffsets = cms.vint32(
0006 -3,
0007 -2,
0008 -1,
0009 0,
0010 1,
0011 2,
0012 3,
0013 4
0014 ),
0015 appendToDataLabel = cms.string(''),
0016 alpaka = cms.untracked.PSet(
0017 backend = cms.untracked.string('')
0018 )
0019 )
0020 for a in args:
0021 mod.update_(a)
0022 mod.update_(kwargs)
0023 return mod