Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 MuonTrackingRegionCommon = cms.PSet(
0004     MuonTrackingRegionBuilder = cms.PSet(
0005     ## Fixed values for region size in Eta, Phi, R, Z
0006     DeltaEta = cms.double(0.2),
0007     DeltaPhi = cms.double(0.2),
0008     DeltaR = cms.double(0.2),
0009     DeltaZ = cms.double(15.9),
0010 
0011     Pt_min = cms.double(1.5),
0012     EtaR_UpperLimit_Par1 = cms.double(0.25),
0013     EtaR_UpperLimit_Par2 = cms.double(0.15),
0014     Eta_fixed = cms.bool(False),
0015     Eta_min = cms.double(0.1),
0016     MeasurementTrackerName = cms.InputTag(""),
0017 
0018     OnDemand = cms.int32(-1),
0019     # -1. : nothing is made on demand
0020     # 0.0 : strip only are made on demand
0021     # 1.0 : strip and pixel are made on demand
0022 
0023     PhiR_UpperLimit_Par1 = cms.double(0.6),
0024     PhiR_UpperLimit_Par2 = cms.double(0.2),
0025     Phi_fixed = cms.bool(False),
0026     Phi_min = cms.double(0.1),
0027     Pt_fixed = cms.bool(False),
0028     Rescale_Dz = cms.double(3.0),
0029     Rescale_eta = cms.double(3.0),
0030     Rescale_phi = cms.double(3.0),
0031     UseVertex = cms.bool(False),
0032     Z_fixed = cms.bool(True),
0033     beamSpot = cms.InputTag("offlineBeamSpot"),
0034     input = cms.InputTag(""),
0035     maxRegions = cms.int32(1),
0036     precise = cms.bool(True),
0037     vertexCollection = cms.InputTag("")
0038     )
0039 )
0040 
0041