CMS 3D CMS Logo

SectorBuilder_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
9 
10 
11 
12 
13 
14 
17 
18 SubdetSectors = BPIX + FPIX + TIB + TOB + TID + TEC
19 
20 
21 
22 
23 
24 
27 
28 TIDTEC = TID + TEC
29 
30 
31 
32 
33 
34 
37 
38 TIBTOB = TIB + TOB
39 
40 
41 
42 
43 
44 
47 
48 TIBTOBQuarters = TIBQuarters + TOBQuarters
49 
50 
51 
52 
53 
54 
57 
58 TIBTOBPitchAnd2DSeparation = TIBPitchAnd2DSeparation + TOBPitchAnd2DSeparation
59 
60 
61 
62 
63 
64 
67 
68 # In TOB: All RPhi modules within a layer point in same w direction. Same is valid for Stereo modules, but with opposite sign
69 
70 TIBTOBLayerAndOrientationSeparation = TIBLayerAndOrientationSeparation + TOBLayerAndOrientationSeparation
71 
72 
73 
74 
75 
78 
79 TIDTECSideAndRingSeparation = TIDSideAndRingSeparation + TECSideAndRingSeparation
80 
81 
82 
83 
84 
85 
88 
89 # In TEC: All RPhi modules within a ring point in same w direction. Same is valid for Stereo modules, but with opposite sign
90 
91 TIDTECSideAndRingAndOrientationSeparation = TIDSideAndRingAndOrientationSeparation + TECSideAndRingAndOrientationSeparation
92 
93 
94 
95 
96 
97 
100 
101 ValidationSectors = cms.VPSet(
102  BpixLayer1Out,
103  BpixLayer3In,
104  FpixMinusLayer1,
105  TibLayer1RphiOut,
106  TibLayer4In,
107  TobLayer1StereoOut,
108  TobLayer5Out,
109  TecPlusRing7,
110 )
111 
112 
113 
114 
115 
118 
119 RecentSectors = cms.VPSet()
120 
121 RecentSectors += BPIXLayerAndOrientationSeparation
122 RecentSectors += FPIXSideAndLayerSeparation
123 RecentSectors += TIBLayerAndOrientationSeparation
124 RecentSectors += TOBLayerAndOrientationSeparation
125 RecentSectors += TIDSideAndRingSeparation
126 RecentSectors += TECSideAndRingSeparation
127 
128 
129 
130 
131 
132 
133 
134