Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_rocm_async_HGCalSoARecHitsProducer(*args, **kwargs):
0004   mod = cms.EDProducer('alpaka_rocm_async::HGCalSoARecHitsProducer',
0005     detector = cms.string('EE'),
0006     recHits = cms.InputTag('HGCalRecHit', 'HGCEERecHits'),
0007     maxNumberOfThickIndices = cms.uint32(6),
0008     fcPerEle = cms.double(0.00016020506),
0009     fcPerMip = cms.required.vdouble,
0010     thicknessCorrection = cms.required.vdouble,
0011     noises = cms.required.vdouble,
0012     dEdXweights = cms.required.vdouble,
0013     ecut = cms.double(3),
0014     mightGet = cms.optional.untracked.vstring,
0015     alpaka = cms.untracked.PSet(
0016       backend = cms.untracked.string(''),
0017       synchronize = cms.optional.untracked.bool
0018     )
0019   )
0020   for a in args:
0021     mod.update_(a)
0022   mod.update_(kwargs)
0023   return mod