CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackCandidateProducer_cfi.py
Go to the documentation of this file.
2 
3 trackCandidateProducer = cms.EDProducer("TrackCandidateProducer",
4  HitProducer = cms.InputTag("siTrackerGaussianSmearingRecHits","TrackerGSMatchedRecHits"),
5  # The smallest number of crossed layers to make a candidate
6  MinNumberOfCrossedLayers = cms.uint32(5),
7  # The number of crossed layers needed before stopping tracking
8  MaxNumberOfCrossedLayers = cms.uint32(999),
9  SeedProducer = cms.InputTag("globalPixelSeeds","GlobalPixel"),
10  # If true, keep the tracks fitted in the previous collection
11  # Just ignore them otherwise
12  KeepFittedTracks = cms.bool(True),
13  # Reject overlapping hits? (GroupedTracking from 170pre2 onwards)
14  OverlapCleaning = cms.bool(False),
15  # Reject copies of tracks from several seeds - take the first seed in that case
16  SeedCleaning = cms.bool(True),
17  # The tracks already fitted - no need to fit them already !
18  TrackProducers = cms.VInputTag(cms.InputTag("generalTracks")),
19  # Split matched hits?
20  SplitHits = cms.bool(True),
21  SimTracks = cms.InputTag(''),
22  EstimatorCut = cms.double(0)
23 )
24 
25