File indexing completed on 2025-02-07 14:24:10
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def MuonTrackingRegionByPtEDProducer(*args, **kwargs):
0004 mod = cms.EDProducer('MuonTrackingRegionByPtEDProducer',
0005 DeltaR = cms.double(0.2),
0006 beamSpot = cms.InputTag(''),
0007 OnDemand = cms.int32(-1),
0008 vertexCollection = cms.InputTag(''),
0009 MeasurementTrackerName = cms.InputTag(''),
0010 UseVertex = cms.bool(False),
0011 Rescale_Dz = cms.double(3),
0012 Pt_fixed = cms.bool(False),
0013 Z_fixed = cms.bool(True),
0014 Pt_min = cms.double(1.5),
0015 DeltaZ = cms.double(15.9),
0016 ptRanges = cms.vdouble(
0017 0,
0018 1000000000
0019 ),
0020 deltaEtas = cms.vdouble(0.2),
0021 deltaPhis = cms.vdouble(0.15),
0022 maxRegions = cms.int32(1),
0023 precise = cms.bool(True),
0024 input = cms.InputTag(''),
0025 mightGet = cms.optional.untracked.vstring
0026 )
0027 for a in args:
0028 mod.update_(a)
0029 mod.update_(kwargs)
0030 return mod