CMS 3D CMS Logo

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  trackingRegions = cms.InputTag(""),
8  SeedCreatorPSet = RecoTracker.TkSeedGenerator.SeedFromConsecutiveHitsCreator_cfi.SeedFromConsecutiveHitsCreator.clone(
9  TTRHBuilder = cms.string("WithoutRefit")),
10  recHitCombinations = cms.InputTag("fastMatchedTrackerRecHitCombinations"),
11  layerList = cms.vstring(),
12  seedFinderSelector = cms.PSet(
13  measurementTracker = cms.string("")
14  )
15  )
16 
17