/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/TrackFitters/python/LooperFitters_cff.py
26 строк
1 KB
Jeongeun Lee
drop type spec in TrackingTools RecoMuon
07 дек 2020, 12:04
07 дек 2020, 12:04
4046bdf
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms import TrackingTools.TrackFitters.KFTrajectoryFitter_cfi LooperTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitter_cfi.KFTrajectoryFitter.clone( ComponentName = 'LooperFitter', Propagator = 'PropagatorWithMaterialForLoopers' ) import TrackingTools.TrackFitters.KFTrajectorySmoother_cfi LooperTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmoother_cfi.KFTrajectorySmoother.clone( ComponentName = 'LooperSmoother', Propagator = 'PropagatorWithMaterialForLoopers', errorRescaling = 10.0, ) import TrackingTools.TrackFitters.KFFittingSmoother_cfi LooperFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone( ComponentName = 'LooperFittingSmoother', Fitter = 'LooperFitter', Smoother = 'LooperSmoother', EstimateCut = 20.0, # ggiurgiu@fnal.gov : Any value lower than -15 turns off this cut. # Recommended default value: -14.0. This will reject only the worst hits with negligible loss in track efficiency. LogPixelProbabilityCut = -14.0, MinNumberOfHits = 3 )