Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def alpaka_serial_sync_PixelVertexProducerAlpakaPhase1(*args, **kwargs):
0004   mod = cms.EDProducer('alpaka_serial_sync::PixelVertexProducerAlpakaPhase1',
0005     oneKernel = cms.bool(True),
0006     useDensity = cms.bool(True),
0007     useDBSCAN = cms.bool(False),
0008     useIterative = cms.bool(False),
0009     doSplitting = cms.bool(True),
0010     minT = cms.int32(2),
0011     eps = cms.double(0.07),
0012     errmax = cms.double(0.01),
0013     chi2max = cms.double(9),
0014     maxVertices = cms.int32(256),
0015     PtMin = cms.double(0.5),
0016     PtMax = cms.double(75),
0017     pixelTrackSrc = cms.InputTag('pixelTracksAlpaka'),
0018     mightGet = cms.optional.untracked.vstring,
0019     alpaka = cms.untracked.PSet(
0020       backend = cms.untracked.string(''),
0021       synchronize = cms.optional.untracked.bool
0022     )
0023   )
0024   for a in args:
0025     mod.update_(a)
0026   mod.update_(kwargs)
0027   return mod