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