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
hltPhase2PixelTracks = cms.EDProducer("PixelTrackProducer",
Cleaner = cms.string('pixelTrackCleanerBySharedHits'),
Filter = cms.InputTag("hltPhase2PixelTrackFilterByKinematics"),
Fitter = cms.InputTag("hltPhase2PixelFitterByHelixProjections"),
SeedingHitSets = cms.InputTag("hltPhase2PixelTracksHitSeeds"),
mightGet = cms.optional.untracked.vstring,
passLabel = cms.string('hltPhase2PixelTracks')
)
from Configuration.ProcessModifiers.alpaka_cff import alpaka
_hltPhase2PixelTracks = cms.EDProducer("PixelTrackProducerFromSoAAlpakaPhase2",
beamSpot = cms.InputTag("hltOnlineBeamSpot"),
minNumberOfHits = cms.int32(0),
minQuality = cms.string('tight'),
pixelRecHitLegacySrc = cms.InputTag("hltSiPixelRecHits"),
trackSrc = cms.InputTag("hltPhase2PixelTracksSoA")
)
alpaka.toReplaceWith(hltPhase2PixelTracks, _hltPhase2PixelTracks)
|