CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoTracker/CkfPattern/python/CkfTrackCandidates_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 ckfTrackCandidates = cms.EDProducer("CkfTrackCandidateMaker",
00004 # During tracking, eliminate seeds used by an already found track 
00005     RedundantSeedCleaner = cms.string('CachingSeedCleanerBySharedInput'),
00006 # Decide how to eliminate tracks sharing hits at end of tracking phase
00007     TrajectoryCleaner = cms.string('TrajectoryCleanerBySharedHits'),
00008 # Run cleaning after in-out tracking in addition to at end of tracking ?
00009     cleanTrajectoryAfterInOut = cms.bool(True),
00010 # Split matched strip tracker hits into mono/stereo components.
00011     useHitsSplitting = cms.bool(True),
00012 # After in-out tracking, do out-in tracking through the seeding
00013 # region and then further in.
00014     doSeedingRegionRebuilding = cms.bool(True),
00015 #    SeedProducer = cms.string('globalMixedSeeds'),
00016 #    SeedLabel = cms.string(''),
00017     maxNSeeds = cms.uint32(100000),
00018 # SeedProducer:SeedLabel descoped to src
00019     src = cms.InputTag('globalMixedSeeds'),                                  
00020     NavigationSchool = cms.string('SimpleNavigationSchool'),
00021     TrajectoryBuilder = cms.string('GroupedCkfTrajectoryBuilder'),
00022     TransientInitialStateEstimatorParameters = cms.PSet(
00023         propagatorAlongTISE = cms.string('PropagatorWithMaterial'),
00024         propagatorOppositeTISE = cms.string('PropagatorWithMaterialOpposite'),
00025         numberMeasurementsForFit = cms.int32(4)
00026     )
00027 )
00028