Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-13 22:52:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltSiPixelRecHits = cms.EDProducer("SiPixelRecHitConverter",
0004     CPE = cms.string('PixelCPEGeneric'),
0005     VerboseLevel = cms.untracked.int32(0),
0006     src = cms.InputTag("hltSiPixelClusters")
0007 )
0008 
0009 from Configuration.ProcessModifiers.alpaka_cff import alpaka
0010 alpaka.toReplaceWith(hltSiPixelRecHits, cms.EDProducer('SiPixelRecHitFromSoAAlpakaPhase2',
0011     pixelRecHitSrc = cms.InputTag('hltPhase2SiPixelRecHitsSoA'),
0012     src = cms.InputTag('hltSiPixelClusters'),
0013 ))