/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoTracker/PixelSeeding/python/PixelTripletHLTGenerator_cfi.py
29 строк
1 KB
mmusich
move RecoPixelVertexing subsystem to RecoTracker
15 мар 2023, 10:40
15 мар 2023, 10:40
ac584e8
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from Configuration.Eras.Modifier_trackingPhase2PU140_cff import trackingPhase2PU140 # moving to the block. Will delete the PSet once transition is done PixelTripletHLTGenerator = cms.PSet( maxElement = cms.uint32(100000), useBending = cms.bool(True), useFixedPreFiltering = cms.bool(False), ComponentName = cms.string('PixelTripletHLTGenerator'), extraHitRPhitolerance = cms.double(0.032), extraHitRZtolerance = cms.double(0.037), useMultScattering = cms.bool(True), phiPreFiltering = cms.double(0.3), SeedComparitorPSet = cms.PSet( ComponentName = cms.string('none') ) ) # do thy make any difference anywhere? trackingPhase2PU140.toModify(PixelTripletHLTGenerator, extraHitRPhitolerance = 0.016, extraHitRZtolerance = 0.020 ) import RecoTracker.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi PixelTripletHLTGeneratorWithFilter = PixelTripletHLTGenerator.clone( SeedComparitorPSet = RecoTracker.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone() )