Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 initialStepSeeds = cms.EDProducer("SeedGeneratorFromProtoTracksEDProducer",
0004     InputCollection = cms.InputTag("hltPhase2PixelTracks"),
0005     InputVertexCollection = cms.InputTag(""),
0006     SeedCreatorPSet = cms.PSet(
0007         refToPSet_ = cms.string('seedFromProtoTracks')
0008     ),
0009     TTRHBuilder = cms.string('WithTrackAngle'),
0010     originHalfLength = cms.double(0.3),
0011     originRadius = cms.double(0.1),
0012     useEventsWithNoVertex = cms.bool(True),
0013     usePV = cms.bool(False),
0014     useProtoTrackKinematics = cms.bool(False)
0015 )