CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/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     # these two needed by HLT
00008     cleanTrajectoryAfterInOut = cms.bool( False ),
00009     maxNSeeds = cms.uint32( 100000 ),
00010     # set it as "none" to avoid redundant seed cleaner
00011     RedundantSeedCleaner = cms.string('CachingSeedCleanerBySharedInput'),
00012     TrajectoryCleaner = cms.string('TrajectoryCleanerBySharedHits'),
00013     #string RedundantSeedCleaner  = "none"
00014     useHitsSplitting = cms.bool(False),
00015     doSeedingRegionRebuilding = cms.bool(False),
00016     ## reverse trajectories after pattern-reco creating new seed on last hit
00017     reverseTrajectories       = cms.bool(False),
00018     trackCandidateAlso = cms.bool(False),
00019     #bool   seedCleaning         = false
00020     src = cms.InputTag('globalMixedSeeds'),
00021     NavigationSchool = cms.string('SimpleNavigationSchool'),
00022     TrajectoryBuilder = cms.string('GroupedCkfTrajectoryBuilder'),
00023     # nested parameter set for TransientInitialStateEstimator
00024     TransientInitialStateEstimatorParameters = cms.PSet(
00025         propagatorAlongTISE = cms.string('PropagatorWithMaterial'),
00026         propagatorOppositeTISE = cms.string('PropagatorWithMaterialOpposite'),
00027         numberMeasurementsForFit = cms.int32(4)
00028     )
00029 )
00030 
00031