Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_cuda_async_HcalMahiPulseOffsetsESProducer(**kwargs):
0004   mod = cms.ESProducer('alpaka_cuda_async::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 k,v in kwargs.items():
0021     setattr(mod, k, v)
0022   return mod