CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MRHFitters_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
6 MRHTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitter_cfi.KFTrajectoryFitter.clone(
7  ComponentName = 'MRHFitter',
8  Estimator = 'MRHChi2',
9  Propagator = 'RungeKuttaTrackerPropagator'
10  )
12 MRHTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmoother_cfi.KFTrajectorySmoother.clone(
13  ComponentName = 'MRHSmoother',
14  Estimator = 'MRHChi2',
15  Propagator = 'RungeKuttaTrackerPropagator'
16  )
17 
19 MRHFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone(
20  ComponentName = 'MRHFittingSmoother',
21  Fitter = 'MRHFitter',
22  Smoother = 'MRHSmoother'
23  )
24