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.
1 import FWCore.ParameterSet.Config as cms
2 
3 trackCandidateProducer = cms.EDProducer(
4  "TrackCandidateProducer",
5  recHitCombinations = cms.InputTag("fastMatchedTrackerRecHitCombinations"),
6  # The smallest number of crossed layers to make a candidate
7  MinNumberOfCrossedLayers = cms.uint32(5),
8 
9  src = cms.InputTag("tobTecStepSeeds"),
10 
11  OverlapCleaning = cms.bool(False),
12 
13  # Split matched hits?
14  SplitHits = cms.bool(True),
15  simTracks = cms.InputTag('famosSimHits'),
16 
17  propagator = cms.string('PropagatorWithMaterialOpposite')
18 )
19 
20