CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/FastSimulation/Tracking/python/TrackCandidateProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 TrackCandidateProducer = cms.EDProducer("TrackCandidateProducer",
00004     HitProducer = cms.InputTag("siTrackerGaussianSmearingRecHits","TrackerGSMatchedRecHits"),
00005     # The smallest number of crossed layers to make a candidate
00006     MinNumberOfCrossedLayers = cms.uint32(5),
00007     # The number of crossed layers needed before stopping tracking
00008     MaxNumberOfCrossedLayers = cms.uint32(999),
00009     SeedProducer = cms.InputTag("globalPixelSeeds","GlobalPixel"),
00010     # If true, keep the tracks fitted in the previous collection
00011     # Just ignore them otherwise
00012     KeepFittedTracks = cms.bool(True),
00013     # Reject overlapping hits? (GroupedTracking from 170pre2 onwards)
00014     OverlapCleaning = cms.bool(False),
00015     # Reject copies of tracks from several seeds - take the first seed in that case
00016     SeedCleaning = cms.bool(True),
00017     # The tracks already fitted - no need to fit them already !
00018     TrackProducers = cms.VInputTag(cms.InputTag("generalTracks")),
00019     # Split matched hits? 
00020     SplitHits = cms.bool(True),
00021     SimTracks = cms.InputTag(''),
00022     EstimatorCut = cms.double(0)
00023 )
00024 
00025