Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-05-09 22:37:21

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_cuda_async_LSTProducer(*args, **kwargs):
0004   mod = cms.EDProducer('alpaka_cuda_async::LSTProducer',
0005     lstInput = cms.InputTag('lstInputProducer'),
0006     verbose = cms.bool(False),
0007     ptCut = cms.double(0.8),
0008     ptCutLabel = cms.string('0.8'),
0009     nopLSDupClean = cms.bool(False),
0010     tcpLSTriplets = cms.bool(False),
0011     mightGet = cms.optional.untracked.vstring,
0012     alpaka = cms.untracked.PSet(
0013       backend = cms.untracked.string(''),
0014       synchronize = cms.optional.untracked.bool
0015     )
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod