CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonTrackingRegionCommon_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 MuonTrackingRegionCommon = cms.PSet(
4  MuonTrackingRegionBuilder = cms.PSet(
5  ## Fixed values for region size in Eta, Phi, R, Z
6  DeltaEta = cms.double(0.2),
7  DeltaPhi = cms.double(0.2),
8  DeltaR = cms.double(0.2),
9  DeltaZ = cms.double(15.9),
10 
11  Pt_min = cms.double(1.5),
12  EtaR_UpperLimit_Par1 = cms.double(0.25),
13  EtaR_UpperLimit_Par2 = cms.double(0.15),
14  Eta_fixed = cms.bool(False),
15  Eta_min = cms.double(0.1),
16  MeasurementTrackerName = cms.InputTag(""),
17 
18  OnDemand = cms.int32(-1),
19  # -1. : nothing is made on demand
20  # 0.0 : strip only are made on demand
21  # 1.0 : strip and pixel are made on demand
22 
23  PhiR_UpperLimit_Par1 = cms.double(0.6),
24  PhiR_UpperLimit_Par2 = cms.double(0.2),
25  Phi_fixed = cms.bool(False),
26  Phi_min = cms.double(0.1),
27  Pt_fixed = cms.bool(False),
28  Rescale_Dz = cms.double(3.0),
29  Rescale_eta = cms.double(3.0),
30  Rescale_phi = cms.double(3.0),
31  UseVertex = cms.bool(False),
32  Z_fixed = cms.bool(True),
33  beamSpot = cms.InputTag("offlineBeamSpot"),
34  input = cms.InputTag(""),
35  maxRegions = cms.int32(1),
36  precise = cms.bool(True),
37  vertexCollection = cms.InputTag("")
38  )
39 )
40 
41