File indexing completed on 2024-09-13 22:52:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from ..modules.hltSiPixelClusters_cfi import *
0004 from ..modules.hltSiPixelRecHits_cfi import *
0005
0006 HLTDoLocalPixelSequence = cms.Sequence(hltSiPixelClusters+hltSiPixelRecHits)
0007
0008 from ..modules.hltPhase2SiPixelClustersSoA_cfi import hltPhase2SiPixelClustersSoA
0009 from ..modules.hltPhase2SiPixelRecHitsSoA_cfi import hltPhase2SiPixelRecHitsSoA
0010 from ..modules.hltSiPixelClusterShapeCache_cfi import hltSiPixelClusterShapeCache
0011 _HLTDoLocalPixelSequence = cms.Sequence(
0012 hltPhase2SiPixelClustersSoA
0013 +hltSiPixelClusters
0014 +hltSiPixelClusterShapeCache
0015 +hltPhase2SiPixelRecHitsSoA
0016 +hltSiPixelRecHits
0017 )
0018
0019 from Configuration.ProcessModifiers.alpaka_cff import alpaka
0020 alpaka.toReplaceWith(HLTDoLocalPixelSequence, _HLTDoLocalPixelSequence)