CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # This cfi should be included to run the CkfTrajectoryMaker 
00005 #
00006 ckfTrajectories = cms.EDProducer("CkfTrajectoryMaker",
00007     # set it as "none" to avoid redundant seed cleaner
00008     RedundantSeedCleaner = cms.string('CachingSeedCleanerBySharedInput'),
00009     TrajectoryCleaner = cms.string('TrajectoryCleanerBySharedHits'),
00010     #string RedundantSeedCleaner  = "none"
00011     useHitsSplitting = cms.bool(False),
00012     doSeedingRegionRebuilding = cms.bool(False),
00013     trackCandidateAlso = cms.bool(False),
00014     #bool   seedCleaning         = false
00015     src = cms.InputTag('globalMixedSeeds'),
00016     NavigationSchool = cms.string('SimpleNavigationSchool'),
00017     TrajectoryBuilder = cms.string('GroupedCkfTrajectoryBuilder'),
00018     # nested parameter set for TransientInitialStateEstimator
00019     TransientInitialStateEstimatorParameters = cms.PSet(
00020         propagatorAlongTISE = cms.string('PropagatorWithMaterial'),
00021         propagatorOppositeTISE = cms.string('PropagatorWithMaterialOpposite'),
00022         numberMeasurementsForFit = cms.int32(4)
00023     )
00024 )
00025 
00026