/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/MillePedeAlignmentAlgorithm/python/RefitterAnalytical_cff.py
24 строки
1 KB
mmusich
remove PixelCPEInitial_cfi and PixelCPEParmError_cfi and all their occurences in CMSSW
30 авг 2020, 12:14
30 авг 2020, 12:14
418edbf
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from RecoTracker.TrackProducer.TrackRefitter_cfi import * # Adjust to your needs: # replace TrackRefitter.src = "AlignmentTracks" # replace TrackRefitter.TrajectoryInEvent = true # All conditions should be included centrally, but you'll need some for the lorentz angle: # include "CalibTracker/Configuration/data/SiStrip_FakeLorentzAngle.cff" from TrackingTools.KalmanUpdators.KFUpdatorESProducer_cfi import * from TrackingTools.TrackFitters.KFTrajectoryFitter_cfi import * from TrackingTools.TrackFitters.KFTrajectorySmoother_cfi import * from TrackingTools.TrackFitters.KFFittingSmoother_cfi import * from TrackingTools.GeomPropagators.AnalyticalPropagator_cfi import * from TrackingTools.KalmanUpdators.Chi2MeasurementEstimator_cfi import * # Not to loose hits/tracks, we might want to open the allowed chi^2 contribution for single hits: # replace Chi2MeasurementEstimator.MaxChi2 = 50. # untested, default 30 from RecoLocalTracker.SiStripRecHitConverter.StripCPEfromTrackAngle_cfi import * from RecoLocalTracker.SiStripRecHitConverter.SiStripRecHitMatcher_cfi import * from RecoTracker.TransientTrackingRecHit.TransientTrackingRecHitBuilder_cfi import * # Take care to avoid interferences with other things # using KFTrajectoryFitter and KFTrajectorySmoother... TrackRefitter.Propagator = 'AnalyticalPropagator' KFTrajectoryFitter.Propagator = 'AnalyticalPropagator' KFTrajectorySmoother.Propagator = 'AnalyticalPropagator'