File indexing completed on 2024-04-06 12:15:56
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltPhase2L3MuonInitialStepSeeds = cms.EDProducer("SeedGeneratorFromProtoTracksEDProducer",
0004 InputCollection = cms.InputTag("hltPhase2L3MuonPixelTracks"),
0005 InputVertexCollection = cms.InputTag(""),
0006 SeedCreatorPSet = cms.PSet(
0007 refToPSet_ = cms.string('hltPhase2L3MuonSeedFromProtoTracks')
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(True),
0014 useProtoTrackKinematics = cms.bool(False)
0015 )