Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def MuonTrackingRegionByPtEDProducer(**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 k,v in kwargs.items():
0028     setattr(mod, k, v)
0029   return mod