File indexing completed on 2022-11-25 00:27:17
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltIterL3MuonPixelTracksTrackingRegions = cms.EDProducer('L1MuonSeededTrackingRegionsEDProducer',
0004 Propagator = cms.string(''),
0005 L1MinPt = cms.double(-1),
0006 L1MaxEta = cms.double(5),
0007 L1MinQuality = cms.uint32(0),
0008 SetMinPtBarrelTo = cms.double(3.5),
0009 SetMinPtEndcapTo = cms.double(1),
0010 CentralBxOnly = cms.bool(True),
0011 RegionPSet = cms.PSet(
0012 mode = cms.string('BeamSpotSigma'),
0013 input = cms.InputTag(''),
0014 maxNRegions = cms.int32(10),
0015 beamSpot = cms.InputTag('hltOnlineBeamSpot'),
0016 vertexCollection = cms.InputTag('notUsed'),
0017 maxNVertices = cms.int32(1),
0018 ptMin = cms.double(0),
0019 originRadius = cms.double(0.2),
0020 zErrorBeamSpot = cms.double(24.2),
0021 ptRanges = cms.vdouble(
0022 0,
0023 1000000000
0024 ),
0025 deltaEtas = cms.vdouble(0.35),
0026 deltaPhis = cms.vdouble(0.2),
0027 precise = cms.bool(True),
0028 nSigmaZVertex = cms.double(3),
0029 zErrorVetex = cms.double(0.2),
0030 nSigmaZBeamSpot = cms.double(4),
0031 whereToUseMeasurementTracker = cms.string('Never'),
0032 measurementTrackerName = cms.InputTag(''),
0033 searchOpt = cms.bool(False)
0034 ),
0035 ServiceParameters = cms.PSet(
0036 Propagators = cms.untracked.vstring('SteppingHelixPropagatorAny'),
0037 RPCLayers = cms.bool(False),
0038 UseMuonNavigation = cms.untracked.bool(False)
0039 ),
0040 mightGet = cms.optional.untracked.vstring
0041 )