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