File indexing completed on 2025-01-04 00:29:21
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def alpaka_cuda_async_EcalRecHitConditionsESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('alpaka_cuda_async::EcalRecHitConditionsESProducer',
0005 timeCalibTag = cms.ESInputTag('', ''),
0006 timeOffsetTag = cms.ESInputTag('', ''),
0007 isPhase2 = cms.bool(False),
0008 appendToDataLabel = cms.string(''),
0009 alpaka = cms.untracked.PSet(
0010 backend = cms.untracked.string(''),
0011 synchronize = cms.optional.untracked.bool
0012 )
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod