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 hltPhase2PixelTracks = cms.EDProducer("PixelTrackProducer",
0004     Cleaner = cms.string('pixelTrackCleanerBySharedHits'),
0005     Filter = cms.InputTag("hltPhase2PixelTrackFilterByKinematics"),
0006     Fitter = cms.InputTag("hltPhase2PixelFitterByHelixProjections"),
0007     SeedingHitSets = cms.InputTag("hltPhase2PixelTracksHitSeeds"),
0008     mightGet = cms.optional.untracked.vstring,
0009     passLabel = cms.string('hltPhase2PixelTracks')
0010 )
0011 
0012 from Configuration.ProcessModifiers.alpaka_cff import alpaka
0013 _hltPhase2PixelTracks = cms.EDProducer("PixelTrackProducerFromSoAAlpakaPhase2",
0014     beamSpot = cms.InputTag("hltOnlineBeamSpot"),
0015     minNumberOfHits = cms.int32(0),
0016     minQuality = cms.string('tight'),
0017     pixelRecHitLegacySrc = cms.InputTag("hltSiPixelRecHits"),
0018     trackSrc = cms.InputTag("hltPhase2PixelTracksSoA")
0019 )
0020 alpaka.toReplaceWith(hltPhase2PixelTracks, _hltPhase2PixelTracks)