CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L2Muons_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Magnetic Field
4 # Geometries
5 # from Geometry.CommonDetUnit.bareGlobalTrackingGeometry_cfi import *
6 # from RecoMuon.DetLayers.muonDetLayerGeometry_cfi import *
8 EstimatorForSTA = TrackingTools.KalmanUpdators.Chi2MeasurementEstimatorESProducer_cfi.Chi2MeasurementEstimator.clone()
10 KFTrajectoryFitterForSTA = TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi.KFTrajectoryFitter.clone()
12 KFTrajectorySmootherForSTA = TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi.KFTrajectorySmoother.clone()
14 KFFittingSmootheForSTA = TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi.KFFittingSmoother.clone()
15 # Stand Alone Muons Producer
17 EstimatorForSTA.ComponentName = 'Chi2STA'
18 EstimatorForSTA.MaxChi2 = 1000.
19 KFTrajectoryFitterForSTA.ComponentName = 'KFFitterSTA'
20 KFTrajectoryFitterForSTA.Propagator = 'SteppingHelixPropagatorAny'
21 KFTrajectoryFitterForSTA.Estimator = 'Chi2STA'
22 KFTrajectorySmootherForSTA.ComponentName = 'KFSmootherSTA'
23 KFTrajectorySmootherForSTA.Propagator = 'SteppingHelixPropagatorOpposite'
24 KFTrajectorySmootherForSTA.Estimator = 'Chi2STA'
25 KFFittingSmootheForSTA.ComponentName = 'KFFitterSmootherSTA'
26 KFFittingSmootheForSTA.Fitter = 'KFFitterSTA'
27 KFFittingSmootheForSTA.Smoother = 'KFSmootherSTA'
28 
29