CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LooperFitters_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 LooperTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitter_cfi.KFTrajectoryFitter.clone(
5  ComponentName = cms.string('LooperFitter'),
6  Propagator = cms.string('PropagatorWithMaterialForLoopers')
7 )
8 
10 LooperTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmoother_cfi.KFTrajectorySmoother.clone(
11  ComponentName = cms.string('LooperSmoother'),
12  Propagator = cms.string('PropagatorWithMaterialForLoopers'),
13  errorRescaling = cms.double(10.0),
14 )
15 
17 LooperFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone(
18  ComponentName = cms.string('LooperFittingSmoother'),
19  Fitter = cms.string('LooperFitter'),
20  Smoother = cms.string('LooperSmoother'),
21  EstimateCut = cms.double(20.0),
22  # ggiurgiu@fnal.gov : Any value lower than -15 turns off this cut.
23  # Recommended default value: -14.0. This will reject only the worst hits with negligible loss in track efficiency.
24  LogPixelProbabilityCut = cms.double(-14.0),
25  MinNumberOfHits = cms.int32(3)
26 )
27