Project
Loading...
Searching...
No Matches
GeometryParams.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
13#include "TMath.h"
14
15using namespace o2::phos;
16
18
19GeometryParams* GeometryParams::sGeomParam = nullptr;
20
21//____________________________________________________________________________
22GeometryParams::GeometryParams(const std::string_view name)
23 : // Set zeros to the variables: most of them should be calculated
24 // and it is more clear to set them in the text
25 mNModules(4),
26 mAngle(0.),
27 mCrystalShift(0.),
28 mCryCellShift(0.),
29 mAirGapLed(0.),
30 mStripWallWidthOut(0.),
31 mStripWallWidthIn(0.),
32 mTyvecThickness(0.),
33 mInnerThermoWidthX(0.f),
34 mInnerThermoWidthY(0.f),
35 mInnerThermoWidthZ(0.f),
36 mAirGapWidthX(0.f),
37 mAirGapWidthY(0.f),
38 mAirGapWidthZ(0.f),
39 mCoolerWidthX(0.f),
40 mCoolerWidthY(0.f),
41 mCoolerWidthZ(0.f),
42 mAlCoverThickness(0.f),
43 mOuterThermoWidthXUp(0.f),
44 mOuterThermoWidthXLow(0.f),
45 mOuterThermoWidthY(0.f),
46 mOuterThermoWidthZ(0.f),
47 mAlFrontCoverX(0.f),
48 mAlFrontCoverZ(0.f),
49 mFiberGlassSup2X(0.f),
50 mFiberGlassSup1X(0.f),
51 mFrameHeight(0.f),
52 mFrameThickness(0.f),
53 mAirSpaceFeeX(0.f),
54 mAirSpaceFeeZ(0.f),
55 mAirSpaceFeeY(0.f),
56 mWarmUpperThickness(0.f),
57 mWarmBottomThickness(0.f),
58 mWarmAlCoverWidthX(0.f),
59 mWarmAlCoverWidthY(0.f),
60 mWarmAlCoverWidthZ(0.f),
61 mFiberGlassSup1Y(0.f),
62 mFiberGlassSup2Y(0.f),
63 mTSupportDist(0.f),
64 mTSupport1Thickness(0.f),
65 mTSupport2Thickness(0.f),
66 mTSupport1Width(0.f),
67 mTSupport2Width(0.f),
68 mIPtoOuterCoverDistance(0.f),
69 mIPtoCrystalSurface(0.f),
70 mSupportPlateThickness(0.f),
71 mzAirTightBoxToTopModuleDist(0.f),
72 mATBoxWall(0.f),
73 mNCellsXInStrip(0),
74 mNCellsZInStrip(0),
75 mNStripX(0),
76 mNStripZ(0),
77 mNTSupports(0),
78 mNPhi(0),
79 mNz(0),
80 mDistanceBetwRails(0.),
81 mRailsDistanceFromIP(0.),
82 mCradleWallThickness(0.),
83 mModuleCraddleGap(0.)
84{
85 // Initializes the EMC parameters
86 // Coordinate system chosen: x across beam, z along beam, y out of beam.
87 // Reference point for all volumes incide module is
88 // center of module in x,z on the upper surface of support beam
89
90 // Distance from IP to surface of the crystals
91 mIPtoCrystalSurface = 460.0;
92
93 // CRYSTAL
94
95 mCrystalHalfSize[0] = 2.2 / 2; // Half-Sizes of crystall
96 mCrystalHalfSize[1] = 18.0 / 2;
97 mCrystalHalfSize[2] = 2.2 / 2;
98
99 // APD + preamplifier
100
101 // fPinDiodeSize[0] = 1.71 ; //Values of ame PIN diode
102 // fPinDiodeSize[1] = 0.0280 ; // OHO 0.0280 is the depth of active layer
103 // fPinDiodeSize[2] = 1.61 ;
104
105 mPinDiodeHalfSize[0] = 0.5000 / 2; // APD 5 mm side
106 mPinDiodeHalfSize[1] = 0.0100 / 2; // APD bulk thickness
107 mPinDiodeHalfSize[2] = 0.5000 / 2; // APD 5 mm side
108
109 mPreampHalfSize[0] = 1.5 / 2; // Preamplifier
110 mPreampHalfSize[1] = 0.5 / 2;
111 mPreampHalfSize[2] = 1.5 / 2;
112
113 // Strip unit (8x2 crystals)
114
115 mNCellsXInStrip = 8; // Number of crystals in strip unit along x-axis
116 mNCellsZInStrip = 2; // Number of crystals in strip unit along z-axis
117 mNStripX = 8; // Number of strip units across along x-axis
118 mNStripZ = 28; // Number of strips along z-axis
119
120 mStripWallWidthOut = 0.01; // Side to another strip
121 mStripWallWidthIn = 0.02; // Side betveen crystals in one strip
122
123 mTyvecThickness = 0.0175; // Thickness of the tyvec
124
125 mAirGapLed =
126 1.5 - 2 * mPreampHalfSize[1] - 2 * mPinDiodeHalfSize[1]; // Air gap before crystalls for LED system
127 // Note, that Cell in Strip 1.5 longer then crystall
128
129 //---Now calculate thechnical sizes for GEANT implementation
130
131 mWrappedHalfSize[0] = (2 * mTyvecThickness + 2 * mCrystalHalfSize[0]) / 2; // This will be size of crystall
132 mWrappedHalfSize[1] = mCrystalHalfSize[1]; // wrapped into tyvec
133 mWrappedHalfSize[2] = (2 * mTyvecThickness + 2 * mCrystalHalfSize[2]) / 2; //
134
135 mAirCellHalfSize[0] = mWrappedHalfSize[0] + 0.01;
136 mAirCellHalfSize[1] =
137 (mAirGapLed + 2 * mPreampHalfSize[1] + 2 * mPinDiodeHalfSize[1] + 2 * mWrappedHalfSize[1]) / 2; // in strip
138 mAirCellHalfSize[2] = mWrappedHalfSize[2] + 0.01;
139
140 // fSupportPlateHalfSize[0] = ( (fNCellsXInStrip-1)*fStripWallWidthIn + 2*fStripWallWidthOut +
141 // fNCellsXInStrip * (2*fTyvecThickness + 2*fCrystalHalfSize[0]) )/2 ;
142 mSupportPlateHalfSize[0] = 18.04 / 2;
143 mSupportPlateHalfSize[1] = 6.0 / 2;
144 // fSupportPlateHalfSize[2] = ( (fNCellsZInStrip-1)*fStripWallWidthIn + 2*fStripWallWidthOut +
145 // fNCellsZInStrip * (2*fTyvecThickness + 2*fCrystalHalfSize[2]) )/2;
146 mSupportPlateHalfSize[2] = 4.51 / 2;
147 mSupportPlateThickness = 0.3;
148 mSupportPlateInHalfSize[0] = mSupportPlateHalfSize[0]; // Half-sizes of the air
149 mSupportPlateInHalfSize[1] = mSupportPlateHalfSize[1] - mSupportPlateThickness; // box in the support plate
150 mSupportPlateInHalfSize[2] = mSupportPlateHalfSize[2] - mSupportPlateThickness / 2;
151
152 mStripHalfSize[0] = mSupportPlateHalfSize[0];
153 mStripHalfSize[1] = (2 * mSupportPlateHalfSize[1] + 2 * mAirCellHalfSize[1]) / 2;
154 mStripHalfSize[2] = mSupportPlateHalfSize[2];
155
156 // ------- Inner hermoinsulation ---------------
157 mInnerThermoWidthX = 2.0; // Width of the innerthermoinsulation across the beam
158 mInnerThermoWidthY = 2.0; // Width of the upper cover of innerthermoinsulation
159 mInnerThermoWidthZ = 2.0; // Width of the innerthermoinsulation along the beam
160
161 mInnerThermoHalfSize[0] = (2 * mStripHalfSize[0] * mNStripX + 2 * mInnerThermoWidthX) / 2;
162 mInnerThermoHalfSize[1] = (2 * mStripHalfSize[1] + mInnerThermoWidthY) / 2;
163 mInnerThermoHalfSize[2] = (2 * mStripHalfSize[2] * mNStripZ + 2 * mInnerThermoWidthZ) / 2;
164
165 // ------- Air gap between inner thermoinsulation and passive coller ---------
166
167 mAirGapWidthX = 0.2; // Width of the air gap across the beam
168 mAirGapWidthY = 0.2; // Width of the upper air gap
169 mAirGapWidthZ = 0.2; // Width of the air gap along the beam
170
171 mAirGapHalfSize[0] = (2 * mInnerThermoHalfSize[0] + 2 * mAirGapWidthX) / 2;
172 mAirGapHalfSize[1] = (2 * mInnerThermoHalfSize[1] + mAirGapWidthY) / 2;
173 mAirGapHalfSize[2] = (2 * mInnerThermoHalfSize[2] + 2 * mAirGapWidthZ) / 2;
174
175 // ------- Passive Cooler ------------------------
176
177 mCoolerWidthX = 2.0; // Width of the passive coller across the beam
178 mCoolerWidthY = 0.3; // Width of the upper cover of cooler
179 mCoolerWidthZ = 2.0; // Width of the passive cooler along the beam
180
181 mCoolerHalfSize[0] = (2 * mAirGapHalfSize[0] + 2 * mCoolerWidthX) / 2;
182 mCoolerHalfSize[1] = (2 * mAirGapHalfSize[1] + mCoolerWidthY) / 2;
183 mCoolerHalfSize[2] = (2 * mAirGapHalfSize[2] + 2 * mCoolerWidthZ) / 2;
184
185 // ------- Outer thermoinsulation and Al cover -------------------------------
186
187 mAlCoverThickness = 0.1; // Thickness of the Al cover of the module
188
189 mOuterThermoWidthXUp = 156.0 - mAlCoverThickness;
190 // width of the upper surface of the PHOS module accross the beam
191 mOuterThermoWidthY = 6.0; // with of the upper cover of outer thermoinsulation
192 mOuterThermoWidthZ = 6.0; // width of the thermoinsulation along the beam
193
194 mAlFrontCoverX = 6.0; // Width of Al strip around fiberglass window: across
195 mAlFrontCoverZ = 6.0; // and along the beam
196
197 mzAirTightBoxToTopModuleDist = 1.; // Distance between PHOS upper surface and inner part of Air Tight Box
198
199 mATBoxWall = 0.1; // width of the wall of air tight box
200
201 // Calculate distance from IP to upper cover
202 mIPtoOuterCoverDistance = mIPtoCrystalSurface - mAirGapLed - mInnerThermoWidthY - mAirGapWidthY - mCoolerWidthY -
203 mOuterThermoWidthY - mAlCoverThickness - mzAirTightBoxToTopModuleDist - mATBoxWall;
204
205 Float_t tanA = mOuterThermoWidthXUp / (2. * mIPtoOuterCoverDistance);
206 // tan(a) where A = angle between IP to center and IP to side across beam
207
208 mOuterThermoWidthXLow =
209 mOuterThermoWidthXUp + 2 * (2 * mCoolerHalfSize[1] + mOuterThermoWidthY) * tanA - mAlCoverThickness;
210 // width of the lower surface of the COOL section accross the beam
211
212 mOuterThermoParams[0] = mOuterThermoWidthXUp / 2; // half-length along x at the z surface positioned at -DZ;
213 mOuterThermoParams[1] = mOuterThermoWidthXLow / 2; // half-length along x at the z surface positioned at +DZ;
214 mOuterThermoParams[2] = (2 * mCoolerHalfSize[2] + 2 * mOuterThermoWidthZ) / 2;
215 // `half-length along the y-axis' in out case this is z axis
216 mOuterThermoParams[3] = (2 * mCoolerHalfSize[1] + mOuterThermoWidthY) / 2;
217 // `half-length along the z-axis' in our case this is y axis
218
219 mAlCoverParams[0] = mOuterThermoParams[0] + mAlCoverThickness;
220 mAlCoverParams[1] = mOuterThermoParams[1] + mAlCoverThickness;
221 mAlCoverParams[2] = mOuterThermoParams[2] + mAlCoverThickness;
222 mAlCoverParams[3] = mOuterThermoParams[3] + mAlCoverThickness / 2;
223
224 mFiberGlassHalfSize[0] = mAlCoverParams[0] - mAlFrontCoverX;
225 mFiberGlassHalfSize[1] = mAlCoverParams[2] - mAlFrontCoverZ; // Note, here other ref. system
226 mFiberGlassHalfSize[2] = mAlCoverThickness / 2;
227
228 //============Now warm section======================
229 // Al Cover
230 mWarmAlCoverWidthX = 2 * mAlCoverParams[1]; // Across beam
231 mWarmAlCoverWidthY = 159.0; // along beam
232
233 // T-support
234 mTSupport1Thickness = 3.5;
235 mTSupport2Thickness = 5.0;
236 mTSupport1Width = 10.6;
237 mTSupport2Width = 3.1;
238 mNTSupports = mNStripX + 1;
239 mTSupportDist = 7.48;
240
241 // Air space for FEE
242 mAirSpaceFeeX = 148.6; // Across beam
243 mAirSpaceFeeY = 135.0; // along beam
244 mAirSpaceFeeZ = 19.0; // out of beam
245
246 // thermoinsulation
247 mWarmBottomThickness = 4.0;
248 mWarmUpperThickness = 4.0;
249
250 // Frame
251 mFrameThickness = 5.0;
252 mFrameHeight = 15.0;
253
254 // Fiberglass support
255 mFiberGlassSup1X = 6.0;
256 mFiberGlassSup1Y = 3.9 + mWarmUpperThickness;
257
258 mFiberGlassSup2X = 3.0;
259 mFiberGlassSup2Y = mFrameHeight;
260
261 // Now calculate Half-sizes
262
263 mWarmAlCoverWidthZ =
264 mAirSpaceFeeZ + mWarmBottomThickness + mWarmUpperThickness + mTSupport1Thickness + mTSupport2Thickness;
265
266 mWarmAlCoverHalfSize[0] = mWarmAlCoverWidthX / 2;
267 mWarmAlCoverHalfSize[1] = mWarmAlCoverWidthY / 2;
268 mWarmAlCoverHalfSize[2] = mWarmAlCoverWidthZ / 2;
269
270 mWarmThermoHalfSize[0] = mWarmAlCoverHalfSize[0] - mAlCoverThickness;
271 mWarmThermoHalfSize[1] = mWarmAlCoverHalfSize[1] - mAlCoverThickness;
272 mWarmThermoHalfSize[2] = mWarmAlCoverHalfSize[2] - mAlCoverThickness / 2;
273
274 // T-support
275 mTSupport1HalfSize[0] = mTSupport1Width / 2; // Across beam
276 mTSupport1HalfSize[1] = (mAirSpaceFeeY + 2 * mFiberGlassSup1X) / 2; // along beam
277 mTSupport1HalfSize[2] = mTSupport1Thickness / 2; // out of beam
278
279 mTSupport2HalfSize[0] = mTSupport2Width / 2; // Across beam
280 mTSupport2HalfSize[1] = mTSupport1HalfSize[1]; // along beam
281 mTSupport2HalfSize[2] = mTSupport2Thickness / 2; // out of beam
282
283 // cables
284 mTCables1HalfSize[0] =
285 (2 * mTSupport1HalfSize[0] * mNTSupports + (mNTSupports - 1) * mTSupportDist) / 2; // Across beam
286 mTCables1HalfSize[1] = mTSupport1HalfSize[1]; // along beam
287 mTCables1HalfSize[2] = mTSupport1HalfSize[2]; // out of beam
288
289 mTCables2HalfSize[0] = mTCables1HalfSize[0]; // Across beam
290 mTCables2HalfSize[1] = mTSupport2HalfSize[1]; // along beam
291 mTCables2HalfSize[2] = mTSupport2HalfSize[2]; // out of beam
292
293 // frame: we define two frames along beam ...Z and across beam ...X
294 mFrameXHalfSize[0] = (mAirSpaceFeeX + 2 * mFiberGlassSup2X + 2 * mFrameThickness) / 2;
295 mFrameXHalfSize[1] = mFrameThickness / 2;
296 mFrameXHalfSize[2] = mFrameHeight / 2;
297
298 mFrameXPosition[0] = 0;
299 mFrameXPosition[1] = mAirSpaceFeeY / 2 + mFiberGlassSup2X + mFrameXHalfSize[1];
300 mFrameXPosition[2] = mWarmThermoHalfSize[2] - mFrameHeight / 2 - mWarmBottomThickness;
301
302 mFrameZHalfSize[0] = mFrameThickness / 2;
303 mFrameZHalfSize[1] = (mAirSpaceFeeY + 2 * mFiberGlassSup2X) / 2;
304 mFrameZHalfSize[2] = mFrameHeight / 2;
305
306 mFrameZPosition[0] = mAirSpaceFeeX / 2 + mFiberGlassSup2X + mFrameZHalfSize[0];
307 mFrameZPosition[1] = 0;
308 mFrameZPosition[2] = mWarmThermoHalfSize[2] - mFrameHeight / 2 - mWarmBottomThickness;
309
310 // Fiberglass support define 4 fiber glass supports 2 along Z and 2 along X
311
312 mFGupXHalfSize[0] = mFrameXHalfSize[0];
313 mFGupXHalfSize[1] = mFiberGlassSup1X / 2;
314 mFGupXHalfSize[2] = mFiberGlassSup1Y / 2;
315
316 mFGupXPosition[0] = 0;
317 mFGupXPosition[1] = mAirSpaceFeeY / 2 + mFGupXHalfSize[1];
318 mFGupXPosition[2] = mWarmThermoHalfSize[2] - mFrameHeight - mWarmBottomThickness - mFGupXHalfSize[2];
319
320 mFGupZHalfSize[0] = mFiberGlassSup1X / 2;
321 mFGupZHalfSize[1] = mAirSpaceFeeY / 2;
322 mFGupZHalfSize[2] = mFiberGlassSup1Y / 2;
323
324 mFGupZPosition[0] = mAirSpaceFeeX / 2 + mFGupZHalfSize[0];
325 mFGupZPosition[1] = 0;
326 mFGupZPosition[2] = mWarmThermoHalfSize[2] - mFrameHeight - mWarmBottomThickness - mFGupXHalfSize[2];
327
328 mFGlowXHalfSize[0] = mFrameXHalfSize[0] - 2 * mFrameZHalfSize[0];
329 mFGlowXHalfSize[1] = mFiberGlassSup2X / 2;
330 mFGlowXHalfSize[2] = mFrameXHalfSize[2];
331
332 mFGlowXPosition[0] = 0;
333 mFGlowXPosition[1] = mAirSpaceFeeY / 2 + mFGlowXHalfSize[1];
334 mFGlowXPosition[2] = mWarmThermoHalfSize[2] - mWarmBottomThickness - mFGlowXHalfSize[2];
335
336 mFGlowZHalfSize[0] = mFiberGlassSup2X / 2;
337 mFGlowZHalfSize[1] = mAirSpaceFeeY / 2;
338 mFGlowZHalfSize[2] = mFrameZHalfSize[2];
339
340 mFGlowZPosition[0] = mAirSpaceFeeX / 2 + mFGlowZHalfSize[0];
341 mFGlowZPosition[1] = 0;
342 mFGlowZPosition[2] = mWarmThermoHalfSize[2] - mWarmBottomThickness - mFGlowXHalfSize[2];
343
344 // --- Air Gap for FEE ----
345
346 mFEEAirHalfSize[0] = mAirSpaceFeeX / 2;
347 mFEEAirHalfSize[1] = mAirSpaceFeeY / 2;
348 mFEEAirHalfSize[2] = mAirSpaceFeeZ / 2;
349
350 mFEEAirPosition[0] = 0;
351 mFEEAirPosition[1] = 0;
352 mFEEAirPosition[2] = mWarmThermoHalfSize[2] - mWarmBottomThickness - mFEEAirHalfSize[2];
353
354 // --- Calculate the overol dimentions of the EMC module
355
356 mEMCParams[3] = mAlCoverParams[3] + mWarmAlCoverHalfSize[2]; // Size out of beam
357 mEMCParams[0] = mAlCoverParams[0]; // Upper size across the beam
358 mEMCParams[1] = (mAlCoverParams[1] - mAlCoverParams[0]) * mEMCParams[3] / mAlCoverParams[3] +
359 mAlCoverParams[0]; // Lower size across the beam
360 mEMCParams[2] = mWarmAlCoverHalfSize[1]; // Size along the beam
361
362 mNPhi = mNStripX * mNCellsXInStrip; // number of crystals across the beam
363 mNz = mNStripZ * mNCellsZInStrip; // number of crystals along the beam
364
365 // Half-sizes of PHOS air tight box taked from final drowings
366 mPHOSParams[0] = 78.924;
367 mPHOSParams[1] = 93.704;
368 mPHOSParams[2] = 80.01;
369 mPHOSParams[3] = 41.91;
370
371 for (Int_t i = 0; i < 4; i++) {
372 mPHOSATBParams[i] = mPHOSParams[i] - mATBoxWall;
373 }
374
375 // calculate offset to crystal surface
376 mCrystalShift = -mInnerThermoHalfSize[1] + mStripHalfSize[1] + mSupportPlateHalfSize[1] + mCrystalHalfSize[1] -
377 mAirGapLed / 2. + mPinDiodeHalfSize[1] + mPreampHalfSize[1];
378 mCryCellShift = mCrystalHalfSize[1] - (mAirGapLed - 2 * mPinDiodeHalfSize[1] - 2 * mPreampHalfSize[1]) / 2;
379
380 Double_t const kRADDEG = 180.0 / TMath::Pi();
381 mAngle = 20;
382 for (Int_t i = 1; i <= mNModules; i++) {
383 Float_t angle = mAngle * (i - 2);
384 mPHOSAngle[i] = angle;
385 }
386
387 Float_t r = mIPtoOuterCoverDistance + mPHOSParams[3];
388 for (Int_t iModule = 1; iModule <= mNModules; iModule++) {
389 mModuleCenter[iModule][0] = r * TMath::Sin(mPHOSAngle[iModule] / kRADDEG);
390 mModuleCenter[iModule][1] = -r * TMath::Cos(mPHOSAngle[iModule] / kRADDEG);
391 mModuleCenter[iModule][2] = 0.;
392
393 mModuleAngle[iModule][0][0] = 90;
394 mModuleAngle[iModule][0][1] = mPHOSAngle[iModule];
395 mModuleAngle[iModule][1][0] = 0;
396 mModuleAngle[iModule][1][1] = 0;
397 mModuleAngle[iModule][2][0] = 90;
398 mModuleAngle[iModule][2][1] = 270 + mPHOSAngle[iModule];
399 }
400
401 // Support geometry
402 mRailLength = 1200.0;
403 mDistanceBetwRails = 420.0;
404 mRailsDistanceFromIP = 590.;
405 mCradleWallThickness = 2.0;
406 mModuleCraddleGap = 4.;
407
408 mRailPart1[0] = 28.0;
409 mRailPart1[1] = 3.0;
410 mRailPart1[2] = mRailLength;
411
412 mRailPart2[0] = 1.5;
413 mRailPart2[1] = 34.0;
414 mRailPart2[2] = mRailLength;
415
416 mRailPart3[0] = 6.0;
417 mRailPart3[1] = 5.0;
418 mRailPart3[2] = mRailLength;
419
420 mRailPos[0] = 0.;
421 mRailPos[1] = 0.;
422 mRailPos[2] = 0.;
423
424 mRailOuterSize[0] = mRailPart1[0];
425 mRailOuterSize[1] = mRailPart1[1] * 2 + mRailPart2[1] + mRailPart3[1];
426 mRailOuterSize[2] = mRailLength;
427
428 mRailRoadSize[0] = mDistanceBetwRails + mRailOuterSize[0];
429 mRailRoadSize[1] = mRailOuterSize[1];
430 mRailRoadSize[2] = mRailOuterSize[2];
431
432 mCradleWall[0] = 0.; // Inner radius, to be defined from PHOS parameters
433 mCradleWall[1] = 65.; // Diff. between outer and inner radii
434 mCradleWall[2] = 18.;
435 mCradleWall[3] = 270. - 50.;
436 mCradleWall[4] = 270. + 50.;
437
438 mCradleWheel[0] = 30.0;
439 mCradleWheel[1] = 80.0;
440 mCradleWheel[2] = 30.0;
441}
int32_t i
ClassImp(GeometryParams)
GeometryParams()=default
Default constructor.
GLuint const GLchar * name
Definition glcorearb.h:781
GLfloat angle
Definition glcorearb.h:4071
GLboolean r
Definition glcorearb.h:1233