CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrajectorySeedProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 trajectorySeedProducer = cms.EDProducer(
6  "TrajectorySeedProducer",
7  SeedCreatorPSet = RecoTracker.TkSeedGenerator.SeedFromConsecutiveHitsCreator_cfi.SeedFromConsecutiveHitsCreator.clone(
8  TTRHBuilder = cms.string("WithoutRefit")),
9  minLayersCrossed = cms.uint32(0),
10  recHitCombinations = cms.InputTag("fastMatchedTrackerRecHitCombinations"),
11  layerList = cms.vstring(),
12  MeasurementTrackerEvent = cms.InputTag("MeasurementTrackerEvent")
13  )
14 
15