CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/TrackingTools/TrackFitters/python/KFFittingSmootherESProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 KFFittingSmoother = cms.ESProducer("KFFittingSmootherESProducer",
00004 
00005     EstimateCut = cms.double(-1.0),
00006 
00007     # ggiurgiu@fnal.gov : Any value lower than -15 turns off this cut.
00008     # Recommended default value: -14.0. This will reject only the worst hits with negligible loss in track efficiency.  
00009     LogPixelProbabilityCut = cms.double(-16.0),                               
00010 
00011     Fitter = cms.string('KFFitter'),
00012     MinNumberOfHits = cms.int32(5),
00013     Smoother = cms.string('KFSmoother'),
00014     ComponentName = cms.string('KFFittingSmoother'),
00015     RejectTracks = cms.bool(True),
00016     BreakTrajWith2ConsecutiveMissing = cms.bool(True),
00017     NoInvalidHitsBeginEnd  = cms.bool(True)
00018 )
00019 
00020