CMS 3D CMS Logo

HLTDoLocalPixelSequence_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from ..modules.hltSiPixelClusters_cfi import *
4 from ..modules.hltSiPixelRecHits_cfi import *
5 
6 HLTDoLocalPixelSequence = cms.Sequence(hltSiPixelClusters+hltSiPixelRecHits)
7 
8 from ..modules.hltPhase2SiPixelClustersSoA_cfi import hltPhase2SiPixelClustersSoA
9 from ..modules.hltPhase2SiPixelRecHitsSoA_cfi import hltPhase2SiPixelRecHitsSoA
10 from ..modules.hltSiPixelClusterShapeCache_cfi import hltSiPixelClusterShapeCache
11 _HLTDoLocalPixelSequence = cms.Sequence(
12  hltPhase2SiPixelClustersSoA
13  +hltSiPixelClusters
14  +hltSiPixelClusterShapeCache # should we disable this? Still needed by tracker muons
15  +hltPhase2SiPixelRecHitsSoA
16  +hltSiPixelRecHits
17 )
18 
20 alpaka.toReplaceWith(HLTDoLocalPixelSequence, _HLTDoLocalPixelSequence)