CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/TrackingTools/TrackFitters/python/LooperFitters_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 import TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi
00004 LooperTrajectoryFitter = TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi.KFTrajectoryFitter.clone(
00005     ComponentName = cms.string('LooperFitter'),
00006     Propagator = cms.string('PropagatorWithMaterialForLoopers')
00007 )
00008 
00009 import TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi
00010 LooperTrajectorySmoother = TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi.KFTrajectorySmoother.clone(
00011     ComponentName = cms.string('LooperSmoother'),
00012     Propagator = cms.string('PropagatorWithMaterialForLoopers'),
00013     errorRescaling = cms.double(10.0),
00014 )
00015 
00016 import TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi
00017 LooperFittingSmoother = TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi.KFFittingSmoother.clone(
00018     ComponentName = cms.string('LooperFittingSmoother'),
00019     Fitter = cms.string('LooperFitter'),
00020     Smoother = cms.string('LooperSmoother'),
00021     EstimateCut = cms.double(20.0),
00022     # ggiurgiu@fnal.gov : Any value lower than -15 turns off this cut.
00023     # Recommended default value: -14.0. This will reject only the worst hits with negligible loss in track efficiency.  
00024     LogPixelProbabilityCut = cms.double(-14.0),                               
00025     MinNumberOfHits = cms.int32(3)
00026 )
00027