CMS 3D CMS Logo

initialStepSeeds_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 initialStepSeeds = cms.EDProducer("SeedGeneratorFromProtoTracksEDProducer",
4  InputCollection = cms.InputTag("hltPhase2PixelTracks"),
5  InputVertexCollection = cms.InputTag(""),
6  SeedCreatorPSet = cms.PSet(
7  refToPSet_ = cms.string('seedFromProtoTracks')
8  ),
9  TTRHBuilder = cms.string('WithTrackAngle'),
10  originHalfLength = cms.double(0.3),
11  originRadius = cms.double(0.1),
12  useEventsWithNoVertex = cms.bool(True),
13  usePV = cms.bool(False),
14  useProtoTrackKinematics = cms.bool(False)
15 )