Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006 ckfTrajectories = cms.EDProducer("CkfTrajectoryMaker",
00007
00008 cleanTrajectoryAfterInOut = cms.bool( False ),
00009 maxNSeeds = cms.uint32( 100000 ),
00010
00011 RedundantSeedCleaner = cms.string('CachingSeedCleanerBySharedInput'),
00012 TrajectoryCleaner = cms.string('TrajectoryCleanerBySharedHits'),
00013
00014 useHitsSplitting = cms.bool(False),
00015 doSeedingRegionRebuilding = cms.bool(False),
00016
00017 reverseTrajectories = cms.bool(False),
00018 trackCandidateAlso = cms.bool(False),
00019
00020 src = cms.InputTag('globalMixedSeeds'),
00021 NavigationSchool = cms.string('SimpleNavigationSchool'),
00022 TrajectoryBuilder = cms.string('GroupedCkfTrajectoryBuilder'),
00023
00024 TransientInitialStateEstimatorParameters = cms.PSet(
00025 propagatorAlongTISE = cms.string('PropagatorWithMaterial'),
00026 propagatorOppositeTISE = cms.string('PropagatorWithMaterialOpposite'),
00027 numberMeasurementsForFit = cms.int32(4)
00028 )
00029 )
00030
00031