Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007 import TrackingTools.KalmanUpdators.Chi2MeasurementEstimatorESProducer_cfi
00008 EstimatorForSTA = TrackingTools.KalmanUpdators.Chi2MeasurementEstimatorESProducer_cfi.Chi2MeasurementEstimator.clone()
00009 import TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi
00010 KFTrajectoryFitterForSTA = TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi.KFTrajectoryFitter.clone()
00011 import TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi
00012 KFTrajectorySmootherForSTA = TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi.KFTrajectorySmoother.clone()
00013 import TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi
00014 KFFittingSmootheForSTA = TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi.KFFittingSmoother.clone()
00015
00016 from RecoMuon.L2MuonProducer.L2Muons_cfi import *
00017 EstimatorForSTA.ComponentName = 'Chi2STA'
00018 EstimatorForSTA.MaxChi2 = 1000.
00019 KFTrajectoryFitterForSTA.ComponentName = 'KFFitterSTA'
00020 KFTrajectoryFitterForSTA.Propagator = 'SteppingHelixPropagatorAny'
00021 KFTrajectoryFitterForSTA.Estimator = 'Chi2STA'
00022 KFTrajectorySmootherForSTA.ComponentName = 'KFSmootherSTA'
00023 KFTrajectorySmootherForSTA.Propagator = 'SteppingHelixPropagatorOpposite'
00024 KFTrajectorySmootherForSTA.Estimator = 'Chi2STA'
00025 KFFittingSmootheForSTA.ComponentName = 'KFFitterSmootherSTA'
00026 KFFittingSmootheForSTA.Fitter = 'KFFitterSTA'
00027 KFFittingSmootheForSTA.Smoother = 'KFSmootherSTA'
00028
00029