Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:45:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 MuonTrackingRegionByPtBuilder = cms.EDProducer('MuonTrackingRegionByPtEDProducer',
0004   DeltaR = cms.double(0.2),
0005   beamSpot = cms.InputTag(''),
0006   OnDemand = cms.int32(-1),
0007   vertexCollection = cms.InputTag(''),
0008   MeasurementTrackerName = cms.InputTag(''),
0009   UseVertex = cms.bool(False),
0010   Rescale_Dz = cms.double(3),
0011   Pt_fixed = cms.bool(False),
0012   Z_fixed = cms.bool(True),
0013   Pt_min = cms.double(1.5),
0014   DeltaZ = cms.double(15.9),
0015   ptRanges = cms.vdouble(
0016     0,
0017     1000000000
0018   ),
0019   deltaEtas = cms.vdouble(0.2),
0020   deltaPhis = cms.vdouble(0.15),
0021   maxRegions = cms.int32(1),
0022   precise = cms.bool(True),
0023   input = cms.InputTag(''),
0024   mightGet = cms.optional.untracked.vstring
0025 )