CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CkfTrajectories_cfi.py
Go to the documentation of this file.
2 
3 #
4 # This cfi should be included to run the CkfTrajectoryMaker
5 #
6 ckfTrajectories = cms.EDProducer("CkfTrajectoryMaker",
7  # set it as "none" to avoid redundant seed cleaner
8  RedundantSeedCleaner = cms.string('CachingSeedCleanerBySharedInput'),
9  TrajectoryCleaner = cms.string('TrajectoryCleanerBySharedHits'),
10  #string RedundantSeedCleaner = "none"
11  useHitsSplitting = cms.bool(False),
12  doSeedingRegionRebuilding = cms.bool(False),
13  trackCandidateAlso = cms.bool(False),
14  #bool seedCleaning = false
15  src = cms.InputTag('globalMixedSeeds'),
16  NavigationSchool = cms.string('SimpleNavigationSchool'),
17  TrajectoryBuilder = cms.string('GroupedCkfTrajectoryBuilder'),
18  # nested parameter set for TransientInitialStateEstimator
19  TransientInitialStateEstimatorParameters = cms.PSet(
20  propagatorAlongTISE = cms.string('PropagatorWithMaterial'),
21  propagatorOppositeTISE = cms.string('PropagatorWithMaterialOpposite'),
22  numberMeasurementsForFit = cms.int32(4)
23  )
24 )
25 
26