]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliABSOv3.cxx
DIPO added
[u/mrichter/AliRoot.git] / STRUCT / AliABSOv3.cxx
CommitLineData
42df5168 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
18//-------------------------------------------------------------------------
19// The Front Absorber FA
20// As built
21// Author: A.Morsch
22// andreas.morsch@cern.ch
23//-------------------------------------------------------------------------
24
25#include <TVirtualMC.h>
26#include <TArrayI.h>
27#include <TGeoVolume.h>
28#include <TGeoTube.h>
29#include <TGeoManager.h>
30#include <TGeoMatrix.h>
31#include <TGeoCompositeShape.h>
32#include <TGeoBBox.h>
33#include <TGeoPgon.h>
34#include <TGeoTorus.h>
35#include <TGeoCone.h>
36#include <TGeoArb8.h>
37
38#include "AliABSOv3.h"
39#include "AliConst.h"
40#include "AliLog.h"
41
42ClassImp(AliABSOv3)
43
44//_____________________________________________________________________________
45AliABSOv3::AliABSOv3()
46{
47 //
48 // Default constructor for muon shield
49 //
50}
51
52//_____________________________________________________________________________
53AliABSOv3::AliABSOv3(const char *name, const char *title)
54 : AliABSO(name,title)
55{
56 // Standard constructor for muon shield
57 //
58}
59
60//_____________________________________________________________________________
61void AliABSOv3::CreateGeometry()
62{
63 //
64 // Build muon shield geometry
65 //
66 //
67
68 Float_t z, z0, dz;
69//
70// The top volume
71//
72 TGeoVolume* top = gGeoManager->GetVolume("ALIC");
73
74//
42df5168 75// Media
76//
77 TGeoMedium* kMedNiW = gGeoManager->GetMedium("ABSO_Ni/W0");
78 TGeoMedium* kMedNiWsh = gGeoManager->GetMedium("ABSO_Ni/W3");
f2410b49 79//
42df5168 80 TGeoMedium* kMedSteel = gGeoManager->GetMedium("ABSO_ST_C0");
81 TGeoMedium* kMedSteelSh = gGeoManager->GetMedium("ABSO_ST_C3");
f2410b49 82//
42df5168 83 TGeoMedium* kMedAir = gGeoManager->GetMedium("ABSO_AIR_C0");
f2410b49 84//
42df5168 85 TGeoMedium* kMedPb = gGeoManager->GetMedium("ABSO_PB_C0");
86 TGeoMedium* kMedPbSh = gGeoManager->GetMedium("ABSO_PB_C2");
f2410b49 87//
88 TGeoMedium* kMedConcSh = gGeoManager->GetMedium("ABSO_CC_C2");
89//
90 TGeoMedium* kMedCH2Sh = gGeoManager->GetMedium("ABSO_CH2_C2");
91//
42df5168 92 TGeoMedium* kMedC = gGeoManager->GetMedium("ABSO_C_C0");
93 TGeoMedium* kMedCsh = gGeoManager->GetMedium("ABSO_C_C2");
f2410b49 94//
42df5168 95 TGeoMedium* kMedAlu = gGeoManager->GetMedium("ABSO_ALU_C0");
f2410b49 96//
97 TGeoMedium* kMedMg = gGeoManager->GetMedium("ABSO_MG_C0");
42df5168 98//
99 const Float_t kDegRad = TMath::Pi() / 180.;
100
101//
102 TGeoRotation* rotxz = new TGeoRotation("rotxz", 90., 0., 90., 90., 180., 0.);
103///////////////////////////////////
104// //
105// Front Absorber //
106// Drawing ALIP2A__0106 //
107// //
108// //
109///////////////////////////////////
110//
111// Pos 1 Steel Envelope
112// Pos 2 End Plate
113// Pos 3 Flange (wrong arrow in the drawing)
114// Pos 4 W Plate A
115// Pos 5 W Plate B
116// Pos 6 Tungsten Tube Part 1
117// Pos 7 Tungsten Tube Part 2
118// Pos 8 Tungsten Tube Part 3
119// Pos 9 Tungsten Tube Part 4
120// Pos 10 Tungsten Tail
121// Pos 11 Graphite Cone
122// Pos 12 Pb Cone
123// Pos 13 Concrete Cone
124// Pos 14 Polyethylene Parts
125// Pos 15 Steel Plate 25 cm
126// Pos 16 Steel Plate 31 cm
127// Pos 17 Magnesium Ring
128// Pos 18 Composite Ring
129//
130//
131// Mimimum angle of the tracking region
132 const Float_t angle02 = TMath::Tan( 2. * kDegRad);
133// Maximum angle of the tracking region
134 const Float_t angle10 = TMath::Tan(10. * kDegRad);
135// Opening angle of W rear plug
136 const Float_t angle03 = TMath::Tan( 3. * kDegRad);
137//
138 const Float_t angle05 = TMath::Tan( 5. * kDegRad);
139// Opening angle of the FA snout
140 const Float_t angle24 = TMath::Tan(24. * kDegRad);
141// Opneing angle of the inner cone
142 const Float_t angle71 = TMath::Tan(0.697 * kDegRad);
143// Starting position in z
144 const Float_t zFa = 90.0;
145
146// Pos 1
147///////////////////////////////////
148// FA Steel Envelope //
149// Drawing ALIP2A__0036 //
150///////////////////////////////////
151 // Thickness of the envelope
152 Float_t dSteelEnvelope = 1.5;
153 // Front cover
154 //
155 // Length
156 Float_t dzSteelEnvelopeFC = 4.00;
157 // Inner Radius
158 Float_t rInSteelEnvelopeFC1 = 35.90/2.;
159 Float_t rInSteelEnvelopeFC2 = rInSteelEnvelopeFC1 + dzSteelEnvelopeFC * angle10;
160 // Outer Radius
161 Float_t rOuSteelEnvelopeFC1 = 88.97/2.;
162 Float_t rOuSteelEnvelopeFC2 = rOuSteelEnvelopeFC1 + dzSteelEnvelopeFC * angle05;
163 //
164 // 5 deg cone
165 Float_t dzSteelEnvelopeC5 = 168.9;
166 Float_t rInSteelEnvelopeC5 = rOuSteelEnvelopeFC2 - dSteelEnvelope/TMath::Cos(5 * kDegRad);
167 Float_t rOuSteelEnvelopeC5 = rOuSteelEnvelopeFC2;
168 // 10 deg cone
169 Float_t dzSteelEnvelopeC10 = 227.1 - 4.;
170 Float_t rInSteelEnvelopeC10 = 116.22/2.;
171 Float_t rOuSteelEnvelopeC10 = rInSteelEnvelopeC10 + dSteelEnvelope/TMath::Cos(10 * kDegRad);
172 // Rear ring
173 Float_t dzSteelEnvelopeR = 4.;
174 Float_t rInSteelEnvelopeR2 = 196.3/2.;
175 Float_t rOuSteelEnvelopeR2 = 212.0/2.;
176 Float_t rInSteelEnvelopeR1 = rInSteelEnvelopeR2 - dzSteelEnvelopeR * angle10;
177 Float_t rOuSteelEnvelopeR1 = rInSteelEnvelopeR1 + dSteelEnvelope/TMath::Cos(10 * kDegRad);
178 // Front insert
179 Float_t dzSteelEnvelopeFI = 1.;
180 Float_t rInSteelEnvelopeFI = 42.0/2.;
181 Float_t rOuSteelEnvelopeFI = 85.0/2.;
182
183 TGeoPcon* shFaSteelEnvelopeC = new TGeoPcon(0., 360., 7);
184 z = 0.;
185 // Front cover
186 shFaSteelEnvelopeC->DefineSection( 0, z, rInSteelEnvelopeFC1, rOuSteelEnvelopeFC1);
187 z += dzSteelEnvelopeFC;
188 shFaSteelEnvelopeC->DefineSection( 1, z, rInSteelEnvelopeFC2, rOuSteelEnvelopeFC2);
189 // 5 deg cone
190 shFaSteelEnvelopeC->DefineSection( 2, z, rInSteelEnvelopeC5, rOuSteelEnvelopeC5);
191 z += dzSteelEnvelopeC5;
192 shFaSteelEnvelopeC->DefineSection( 3, z, rInSteelEnvelopeC10, rOuSteelEnvelopeC10);
193 // 10 deg cone
194 z += dzSteelEnvelopeC10;
195 shFaSteelEnvelopeC->DefineSection( 4, z, rInSteelEnvelopeR1, rOuSteelEnvelopeR1);
196 // Rear Ring
197 shFaSteelEnvelopeC->DefineSection( 5, z, rInSteelEnvelopeR1, rOuSteelEnvelopeR2);
198 z += dzSteelEnvelopeR;
199 shFaSteelEnvelopeC->DefineSection( 6, z, rInSteelEnvelopeR2, rOuSteelEnvelopeR2);
200
201 // Insert
202 shFaSteelEnvelopeC->SetName("steelEnvC");
203 TGeoTube* shFaSteelEnvelopeT = new TGeoTube(rInSteelEnvelopeFI, rOuSteelEnvelopeFI, dzSteelEnvelopeFI);
204 shFaSteelEnvelopeT->SetName("steelEnvT");
205 TGeoCompositeShape* shFaSteelEnvelope = new TGeoCompositeShape("shFaSteelEnvelope", "steelEnvC-steelEnvT");
206
207 TGeoVolume* voFaSteelEnvelope = new TGeoVolume("AFaSteelEnvelope", shFaSteelEnvelope, kMedSteel);
208
209// Pos 2
210///////////////////////////////////
211// FA End Plate //
212// Drawing ALIP2A__0037 //
213///////////////////////////////////
214//
215//
216//
217// Outer dimensions dx, dy, dz
218 Float_t dxEndPlate = 220.0;
219 Float_t dyEndPlate = 220.0;
220 Float_t dzEndPlate = 6.0;
221// Inner radius
222 Float_t rInEndPlate = 52.5/2.;
223// Insert
224 Float_t rInEndPlateI = 175.3/2.;
225 Float_t rOuEndPlateI = 212.2/2.;
226 Float_t dzEndPlateI = 2.0;
227
228
229 TGeoBBox* endPlate1 = new TGeoBBox(dxEndPlate/2., dyEndPlate/2., dzEndPlate/2.);
230 endPlate1->SetName("endPlate1");
231
232 TGeoTube* endPlate2 = new TGeoTube(0., rInEndPlate , (dzEndPlate + 0.1) / 2.) ;
233 endPlate2->SetName("endPlate2");
234 TGeoTube* endPlate3 = new TGeoTube(rInEndPlateI, rOuEndPlateI, (dzEndPlateI + 0.1)/2.);
235 endPlate3->SetName("endPlate3");
236
237 TGeoTranslation* tPlate = new TGeoTranslation("tPlate", 0., 0., -dzEndPlateI - 0.05);
238 tPlate->RegisterYourself();
239
240 TGeoCompositeShape* shFaEndPlate = new TGeoCompositeShape("shFaEndPlate", "endPlate1-(endPlate2+endPlate3:tPlate)");
241 TGeoVolume* voFaEndPlate = new TGeoVolume("AFaEndPlate", shFaEndPlate, kMedSteel);
242
243// Pos 3
244///////////////////////////////////
245// FA Flange //
246// Drawing ALIP2A__0038 //
247///////////////////////////////////
248 // Width of the Flange
249 Float_t dzFaFlange = 2.;
250 // Outer radius
251 Float_t rOuFaFlange = 41.0/2.;
252 // 1st section
253 Float_t dzFaFlange1 = 0.8;
254 Float_t rInFaFlange1 = 33.4/2.;
255 // 2nd section
256 Float_t dzFaFlange2 = 1.2;
257 Float_t rInFaFlange2 = 36.4/2.;
258
259 TGeoPcon* shFaFlange = new TGeoPcon(0., 360., 4);
260 z = 0;
261 shFaFlange->DefineSection(0, z, rInFaFlange1, rOuFaFlange);
262 z += dzFaFlange1;
263 shFaFlange->DefineSection(1, z, rInFaFlange1, rOuFaFlange);
264 shFaFlange->DefineSection(2, z, rInFaFlange2, rOuFaFlange);
265 z += dzFaFlange2;
266 shFaFlange->DefineSection(3, z, rInFaFlange2, rOuFaFlange);
267
268 TGeoVolume* voFaFlange = new TGeoVolume("AFaFlange", shFaFlange, kMedSteel);
269
270// Pos 4+5
271///////////////////////////////////
272// FA W Plate A+B //
273// Drawing ALIP2A__0043 //
274///////////////////////////////////
275 // Front Flange
276 Float_t dzFaWPlateF = 2.00;
277 Float_t rInFaQPlateF = 20.50;
278 Float_t rOuFaQPlateF = 40.05;
279 // 1st Central Part 24 deg
280 Float_t dzFaWPlateC1 = 7.95;
281 Float_t rInFaQPlateC1 = 16.35;
282 Float_t rOuFaQPlateC1 = rOuFaQPlateF + dzFaWPlateF * angle24;
283 // 2nd Central Part 5 deg
284 Float_t dzFaWPlateC2 = 1.05;
285 Float_t rInFaQPlateC2 = rInFaQPlateC1 + dzFaWPlateC1 * angle10;
286 Float_t rOuFaQPlateC2 = rOuFaQPlateC1 + dzFaWPlateC1 * angle24;
287 Float_t rInFaQPlateC3 = 17.94;
288 Float_t rOuFaQPlateC3 = 44.49;
289 // Rear Flange
290 Float_t dzFaWPlateR = 1.00;
291 Float_t rInFaQPlateR = 21.00;
292 Float_t rOuFaQPlateR = 42.55;
293 // Lenth of Plate - Rear Flange
294 Float_t dzFaWPlate = dzFaWPlateF + dzFaWPlateC1 + dzFaWPlateC2;
295
296 TGeoPcon* shFaWPlateA = new TGeoPcon(0., 360., 7);
297 z = 0.;
298 // Front Flange
299 shFaWPlateA->DefineSection(0, z, rInFaQPlateF, rOuFaQPlateF);
300 z += dzFaWPlateF;
301 shFaWPlateA->DefineSection(1, z, rInFaQPlateF, rOuFaQPlateC1);
302 // 24 deg cone
303 shFaWPlateA->DefineSection(2, z, rInFaQPlateC1, rOuFaQPlateC1);
304 z += dzFaWPlateC1;
305 shFaWPlateA->DefineSection(3, z, rInFaQPlateC2, rOuFaQPlateC2);
306 // 5 deg cone
307 z += dzFaWPlateC2;
308 shFaWPlateA->DefineSection(4, z, rInFaQPlateC3, rOuFaQPlateC3);
309 // Rear Flange
310 shFaWPlateA->DefineSection(5, z, rInFaQPlateR, rOuFaQPlateR);
311 z += dzFaWPlateR;
312 shFaWPlateA->DefineSection(6, z, rInFaQPlateR, rOuFaQPlateR);
313
314 TGeoVolume* voFaWPlateA = new TGeoVolume("AFaWPlateA", shFaWPlateA, kMedNiW);
315 // Inner region with higher transport cuts
f2410b49 316 TGeoPcon* shFaWPlateAI = new TGeoPcon(0., 360., 5);
42df5168 317 z = 3.;
4cfeb4f1 318 shFaWPlateAI->DefineSection(0, z, rInFaQPlateF + z * angle10, rOuFaQPlateC1 + (z - dzFaWPlateF) * angle24);
42df5168 319 for (Int_t i = 1; i < 5; i++) {
320 Float_t rmin = shFaWPlateA->GetRmin(i+2);
321 Float_t rmax = shFaWPlateA->GetRmax(i+2) - 3.;
322 Float_t z = shFaWPlateA->GetZ(i+2);
323 shFaWPlateAI->DefineSection(i, z, rmin, rmax);
324 }
325 TGeoVolume* voFaWPlateAI = new TGeoVolume("AFaWPlateAI", shFaWPlateAI, kMedNiWsh);
f8a44cbc 326 voFaWPlateA->AddNode(voFaWPlateAI, 1, gGeoIdentity);
42df5168 327
328//
329// Inner Tungsten Shield
330// Part 1 99.8 cm
331// Part 2 143.5 cm
332// Part 3 25.0 cm
333// Part 4 31.0 cm
334// ====================
335// 299.3 cm - 0.6 overlap between Part 1 and Part 2
336// 298.7 cm
337// Starting position 499.0 - 298.7 = 200.3
338// Within C cone: 200.3 - 92.0 = 108.3 = end of straight section of the Graphite Cone
339//
340
341// Pos 6
342///////////////////////////////////
343// FA Tungsten Tube Part 1 //
344// Drawing ALIP2A__0045 //
345///////////////////////////////////
346 //
347 // Inner radius
348 Float_t rInFaWTube1C1 = 9.1/2.;
349 // Central part
350 Float_t dzFaWTube1C = 98.8;
351 Float_t rOuFaWTube1C1 = 13.8/2.;
352 Float_t rOuFaWTube1C2 = 20.7/2.;
353 // Rear Flange
354 Float_t dzFaWTube1R = 1.0;
355 Float_t rOuFaWTube1R = 15.0/2.;
356 // Total length
357 Float_t dzFaWTube1 = dzFaWTube1C + dzFaWTube1R;
358
359 TGeoPcon* shFaWTube1 = new TGeoPcon(0., 360., 4);
360 z = 0.;
361 // Central Part
362 shFaWTube1->DefineSection(0, z, rInFaWTube1C1, rOuFaWTube1C1);
363 z += dzFaWTube1C;
364 shFaWTube1->DefineSection(1, z, rInFaWTube1C1, rOuFaWTube1C2);
365 // Rear Flange
366 shFaWTube1->DefineSection(2, z, rInFaWTube1C1, rOuFaWTube1R);
367 z += dzFaWTube1R;
368 shFaWTube1->DefineSection(3, z, rInFaWTube1C1, rOuFaWTube1R);
369
370 TGeoVolume* voFaWTube1 = new TGeoVolume("AFaWTube1", shFaWTube1, kMedNiWsh);
371
372// Pos 7
373///////////////////////////////////
374// FA Tungsten Tube Part 2 //
375// Drawing ALIP2A__0046 //
376///////////////////////////////////
377 //
378
379 // Central part
380 Float_t dzFaWTube2C = 142.9;
381 Float_t rInFaWTube2C1 = 9.10/2.;
382 Float_t rInFaWTube2C2 = 12.58/2.;
383 Float_t rOuFaWTube2C1 = 20.70/2.;
384 Float_t rOuFaWTube2C2 = 30.72/2.;
385 // Front Flange
386 Float_t dzFaWTube2F = 0.6;
387 Float_t rInFaWTube2F = 15.4/2.;
388 // Total length
389 Float_t dzFaWTube2 = dzFaWTube2C + dzFaWTube2F;
390
391 TGeoPcon* shFaWTube2 = new TGeoPcon(0., 360., 4);
392 z = 0.;
393 // Front Flange
394 shFaWTube2->DefineSection(0, z, rInFaWTube2F, rOuFaWTube2C1);
395 z += dzFaWTube2F;
396 shFaWTube2->DefineSection(1, z, rInFaWTube2F, rOuFaWTube2C1);
397 // Central part
398 shFaWTube2->DefineSection(2, z, rInFaWTube2C1, rOuFaWTube2C1);
399 z += dzFaWTube2C;
400 shFaWTube2->DefineSection(3, z, rInFaWTube2C2, rOuFaWTube2C2);
401
402 TGeoVolume* voFaWTube2 = new TGeoVolume("AFaWTube2", shFaWTube2, kMedNiWsh);
403
404// Pos 8
405///////////////////////////////////
406// FA Tungsten Tube Part 3 //
407// Drawing ALIP2A__0047 //
408///////////////////////////////////
409 Float_t dzFaWTube3 = 25.0;
410 Float_t rInFaWTube3C1 = 12.59/2.;
411 Float_t rInFaWTube3C2 = 13.23/2.;
412 Float_t rOuFaWTube3C1 = 30.60/2.;
413 Float_t rOuFaWTube3C2 = 32.35/2.;
414 TGeoVolume* voFaWTube3 = new TGeoVolume("AFaWTube3",
415 new TGeoCone(dzFaWTube3/2., rInFaWTube3C1, rOuFaWTube3C1, rInFaWTube3C2, rOuFaWTube3C2),
416 kMedNiWsh);
417
418// Pos 9
419///////////////////////////////////
420// FA Tungsten Tube Part 4 //
421// Drawing ALIP2A__0048 //
422///////////////////////////////////
423 Float_t dzFaWTube4 = 31.0;
424 Float_t rInFaWTube4C1 = 13.23/2.;
425 Float_t rInFaWTube4C2 = 13.98/2.;
426 Float_t rOuFaWTube4C1 = 48.80/2.;
427 Float_t rOuFaWTube4C2 = 52.05/2.;
428 TGeoVolume* voFaWTube4 = new TGeoVolume("AFaWTube4",
429 new TGeoCone(dzFaWTube4/2., rInFaWTube4C1, rOuFaWTube4C1, rInFaWTube4C2, rOuFaWTube4C2),
430 kMedNiWsh);
431
432// Pos 10
433//
434// This section has been moved to AliSHILv3
435
436//
437// Pos 11
438///////////////////////////////////
439// FA Graphite Cone //
440// Drawing ALIP2_0002 //
441///////////////////////////////////
442//
443 // Total length
444 Float_t dzFaGraphiteCone = 225.0;
445 // Straight section = start of the 2deg inner cone
446 Float_t dzFaGraphiteConeS = 108.3;
447 // Inner radius at the front
448 Float_t rInFaGraphiteCone1 = 4.5;
449 // Outer radius at the front
450 Float_t rOuFaGraphiteCone1 = (zFa + dzFaFlange) * angle10;
451 // Inner radius at start of inner opening cone
452 Float_t rInFaGraphiteCone2 = 7.0;
453 // Outer radius at start of inner opening cone
454 Float_t rOuFaGraphiteCone2 = (zFa + dzFaFlange + dzFaGraphiteConeS) * angle10;
455 // Inner radius the rear
456 Float_t rInFaGraphiteCone3 = 11.0;
457 // Ouer radius at the rear
458 Float_t rOuFaGraphiteCone3 = (zFa + dzFaFlange + dzFaGraphiteCone) * angle10;
459
460 TGeoPcon* shFaGraphiteCone = new TGeoPcon(0., 360., 4);
461
462 z = 0;
463 // Straight section
464 shFaGraphiteCone->DefineSection(0, z, rInFaGraphiteCone1, rOuFaGraphiteCone1);
465 z += dzFaGraphiteConeS;
466 shFaGraphiteCone->DefineSection(1, z, rInFaGraphiteCone1, rOuFaGraphiteCone2);
467 // 2 deg opening cone
468 shFaGraphiteCone->DefineSection(2, z, rInFaGraphiteCone2, rOuFaGraphiteCone2);
469 z = dzFaGraphiteCone;
470 shFaGraphiteCone->DefineSection(3, z, rInFaGraphiteCone3, rOuFaGraphiteCone3);
471
472 TGeoVolume* voFaGraphiteCone = new TGeoVolume("AFaGraphiteCone", shFaGraphiteCone, kMedCsh);
473 //
474 // Outer region with lower transport cuts
f2410b49 475 dz = 50.;
42df5168 476 TGeoCone* shFaGraphiteConeO = new TGeoCone(dz/2.,
477 rInFaGraphiteCone1, rOuFaGraphiteCone1,
478 rInFaGraphiteCone1, rOuFaGraphiteCone1 + dz * angle10);
479
480 TGeoVolume* voFaGraphiteConeO = new TGeoVolume("AFaGraphiteConeO", shFaGraphiteConeO, kMedC);
481 voFaGraphiteCone->AddNode(voFaGraphiteConeO, 1, new TGeoTranslation(0., 0., dz/2.));
482
483// Pos 12
484///////////////////////////////////
485// FA Lead Cone //
486// Drawing ALIP2A__0077 //
487///////////////////////////////////
488 // 5 deg cone
489 Float_t dzFaPbCone5 = 168.9;
490 Float_t rInFaPbCone5 = 37.35/2.;
491 Float_t rOuFaPbCone5 = 85.66/2.;
492 // 10 deg cone
493 Float_t dzFaPbCone10 = 25.9;
494 Float_t rInFaPbCone10 = rInFaPbCone5 + dzFaPbCone5 * angle10;
495 Float_t rOuFaPbCone10 = 115.2/2.;
496 // end
497 Float_t rInFaPbConeE = 106.05/2.;
498 Float_t rOuFaPbConeE = 124.35/2.;
499 // Total length
500 Float_t dzFaPbCone = dzFaPbCone5 + dzFaPbCone10;
501
502 TGeoPcon* shFaPbCone = new TGeoPcon(0., 360., 3);
503 z = 0.;
504 // 5 deg cone
505 shFaPbCone->DefineSection(0, z, rInFaPbCone5, rOuFaPbCone5);
506 z += dzFaPbCone5;
507 // 10 deg cone
508 shFaPbCone->DefineSection(1, z, rInFaPbCone10, rOuFaPbCone10);
509 z += dzFaPbCone10;
510 shFaPbCone->DefineSection(2, z, rInFaPbConeE, rOuFaPbConeE);
511
512 TGeoVolume* voFaPbCone = new TGeoVolume("AFaPbCone", shFaPbCone, kMedPb);
513 //
514 // Inner region with higher transport cuts
515 TGeoPcon* shFaPbConeI = MakeShapeFromTemplate(shFaPbCone, 0., -3.);
516 TGeoVolume* voFaPbConeI = new TGeoVolume("AFaPbConeI", shFaPbConeI, kMedPbSh);
f8a44cbc 517 voFaPbCone->AddNode(voFaPbConeI, 1, gGeoIdentity);
42df5168 518
519
520// Pos 13
521///////////////////////////////////
522// FA Concrete Cone //
523// Drawing ALIP2A__00xx //
524///////////////////////////////////
525 Float_t dzFaConcreteCone = 126.;
526 Float_t rOuFaConcreteCone1 = rOuFaGraphiteCone3;
527 Float_t rInFaConcreteCone1 = 11.;
528 Float_t rOuFaConcreteCone2 = rOuFaConcreteCone1 + dzFaConcreteCone * angle10;
529 Float_t rInFaConcreteCone2 = rInFaConcreteCone1 + dzFaConcreteCone * angle02;
530
531 TGeoVolume* voFaConcreteCone = new TGeoVolume("AFaConcreteCone",
532 new TGeoCone(dzFaConcreteCone/2.,
533 rInFaConcreteCone1, rOuFaConcreteCone1,
534 rInFaConcreteCone2, rOuFaConcreteCone2),
f2410b49 535 kMedConcSh);
42df5168 536
537// Pos 14
538///////////////////////////////////
539// FA Polyethylene Parts //
540// Drawing ALIP2A__0034 //
541///////////////////////////////////
542 Float_t dzFaCH2Cone = 201.;
543 Float_t rInFaCH2Cone1 = 106.0/2.;
544 Float_t rInFaCH2Cone2 = 176.9/2.;
545 Float_t dFaCH2Cone = 7.5 / TMath::Cos(10. * kDegRad);
546
547 TGeoVolume* voFaCH2Cone = new TGeoVolume("AFaCH2Cone",
548 new TGeoCone(dzFaCH2Cone/2.,
549 rInFaCH2Cone1, rInFaCH2Cone1 + dFaCH2Cone,
550 rInFaCH2Cone2, rInFaCH2Cone2 + dFaCH2Cone),
f2410b49 551 kMedCH2Sh);
42df5168 552
553
554// Pos 15
555///////////////////////////////////
556// FA Steel Plate 250 mm //
557// Drawing ALIP2A__00xx //
558///////////////////////////////////
559 Float_t dzFaSteelCone25 = 25.;
560 Float_t rInFaSteelCone25A = rInFaConcreteCone2;
561 Float_t rOuFaSteelCone25A = rOuFaConcreteCone2;
562 Float_t rInFaSteelCone25B = rInFaSteelCone25A + dzFaSteelCone25 * angle02;
563 Float_t rOuFaSteelCone25B = rOuFaSteelCone25A + dzFaSteelCone25 * angle10;
564
565 TGeoVolume* voFaSteelCone25 = new TGeoVolume("AFaSteelCone25",
566 new TGeoCone(dzFaSteelCone25/2.,
567 rInFaSteelCone25A, rOuFaSteelCone25A,
568 rInFaSteelCone25B, rOuFaSteelCone25B),
569 kMedSteelSh);
570
571// Pos 16
572///////////////////////////////////
573// FA Steel Plate 310 mm //
574// Drawing ALIP2A__00xx //
575///////////////////////////////////
576 Float_t dzFaSteelCone31 = 31.;
577 Float_t rInFaSteelCone31A = rOuFaWTube4C1;;
578 Float_t rOuFaSteelCone31A = rOuFaSteelCone25B;
579 Float_t rInFaSteelCone31B = rOuFaWTube4C2;
580 Float_t rOuFaSteelCone31B = rOuFaSteelCone31A + dzFaSteelCone31 * angle10;
581
582 TGeoVolume* voFaSteelCone31 = new TGeoVolume("AFaSteelCone31",
583 new TGeoCone(dzFaSteelCone31/2.,
584 rInFaSteelCone31A, rOuFaSteelCone31A,
585 rInFaSteelCone31B, rOuFaSteelCone31B),
586 kMedSteelSh);
f2410b49 587 // Outer Rregion with higher transport cuts
42df5168 588 dz = 5.;
589 TGeoVolume* voFaSteelCone31I = new TGeoVolume("AFaSteelCone31I",
f2410b49 590 new TGeoCone(dz/2.,
591 rInFaSteelCone31B - dz * angle03,
592 rOuFaSteelCone31B - dz * angle10,
593 rInFaSteelCone31B, rOuFaSteelCone31B),
42df5168 594 kMedSteel);
595
596 voFaSteelCone31->AddNode(voFaSteelCone31I, 1, new TGeoTranslation(0., 0., dzFaSteelCone31/2. - dz/2.));
597
598
599///////////////////////////////////
600// FA Composite Ring //
601// Drawing ALIP2A__0126 //
602///////////////////////////////////
603 // 1st section
604 Float_t dzFaCompRing1 = 0.8;
605 Float_t rInFaCompRing1 = 11.0/2.;
606 Float_t rOuFaCompRing1 = 32.4/2.;
607 // 2nd section
608 Float_t dzFaCompRing2 = 1.2;
609 Float_t rInFaCompRing2 = 14.0/2.;
98370359 610 Float_t rOuFaCompRing2 = 35.3/2.;
42df5168 611
612 TGeoPcon* shFaCompRing = new TGeoPcon(0., 360., 4);
613 z = 0.;
614 // 1st section
615 shFaCompRing->DefineSection(0, z, rInFaCompRing1, rOuFaCompRing1);
616 z += dzFaCompRing1;
617 shFaCompRing->DefineSection(1, z, rInFaCompRing1, rOuFaCompRing1);
618 // 2nd section
619 shFaCompRing->DefineSection(2, z, rInFaCompRing2, rOuFaCompRing2);;
620 z += dzFaCompRing2;
621 shFaCompRing->DefineSection(3, z, rInFaCompRing2, rOuFaCompRing2);
622
623 TGeoVolume* voFaCompRing = new TGeoVolume("AFaCompRing", shFaCompRing, kMedC);
624
625///////////////////////////////////
626// FA Magnesium Ring //
627// Drawing ALIP2A__0127 //
628///////////////////////////////////
629 //
630 // The inner radii
631 // section 1+3
632 Float_t dzFaMgRingO = 0.7;
633 Float_t rInFaMgRingO = 3.0;
634 // section 2
635 Float_t dzFaMgRingI = 0.6;
636 Float_t rInFaMgRingI = 3.5;
637
638 TGeoPcon* shFaMgRing = new TGeoPcon(0., 360., 8);
639 // 1st section
640 z = 0.;
641 shFaMgRing->DefineSection(0, z, rInFaMgRingO, rInFaCompRing1);
642 z += dzFaMgRingO;
643 shFaMgRing->DefineSection(1, z, rInFaMgRingO, rInFaCompRing1);
644 // 2nd section
645 shFaMgRing->DefineSection(2, z, rInFaMgRingI, rInFaCompRing1);
646 z += dzFaMgRingI/2.;
647 shFaMgRing->DefineSection(3, z, rInFaMgRingI, rInFaCompRing1);
648 // 3rd section
649 shFaMgRing->DefineSection(4, z, rInFaMgRingI, rInFaCompRing2);
650 z += dzFaMgRingI/2.;
651 shFaMgRing->DefineSection(5, z, rInFaMgRingI, rInFaCompRing2);
652 // 4th section
653 shFaMgRing->DefineSection(6, z, rInFaMgRingO, rInFaCompRing2);
654 z += dzFaMgRingO;
655 shFaMgRing->DefineSection(7, z, rInFaMgRingO, rInFaCompRing2);
f2410b49 656 TGeoVolume* voFaMgRing = new TGeoVolume("AFaMgRing", shFaMgRing, kMedMg);
42df5168 657
658
659//
660// Absorber mother volume
661//
662//
663// Length of the absorber without endplate
664 Float_t dzFa = dzFaFlange + dzFaGraphiteCone + dzFaConcreteCone + dzFaSteelCone25 + dzFaSteelCone31;
665 TGeoPcon* shFaM = new TGeoPcon(0., 360., 16);
666 // Front -> Flange (Mg Ring details)
667 z = 0.;
668 shFaM->DefineSection( 0, z, rInFaMgRingO, rOuFaQPlateF);
669 z += dzFaMgRingO;
670 dz = dzFaMgRingO;
671 shFaM->DefineSection( 1, z, rInFaMgRingO, rOuFaQPlateF + dz * angle24);
672 shFaM->DefineSection( 2, z, rInFaMgRingI, rOuFaQPlateF + dz * angle24);
673 z += dzFaMgRingI;
674 dz += dzFaMgRingI;
675 shFaM->DefineSection( 3, z, rInFaMgRingI, rOuFaQPlateF + dz * angle24);
676 shFaM->DefineSection( 4, z, rInFaMgRingO, rOuFaQPlateF + dz * angle24);
677 z += dzFaMgRingO;
678 dz += dzFaMgRingO;
679 shFaM->DefineSection( 5, z, rInFaMgRingO, rOuFaQPlateF + dz * angle24);
680 shFaM->DefineSection( 6, z, rInFaGraphiteCone1, rOuFaQPlateF + dz * angle24);
681 // Flange -> W-Plate B
682 z += dzFaWPlateC1;
683 shFaM->DefineSection( 7, z, rInFaGraphiteCone1, rOuFaQPlateC2);
684 z += dzFaWPlateC2;
685 Float_t zFaSteelEnvelope = z;
686 shFaM->DefineSection( 8, z, rInFaGraphiteCone1, rOuFaQPlateC3);
687 // 5 deg cone -> 10 deg cone
688 z = zFaSteelEnvelope + dzSteelEnvelopeFC + dzSteelEnvelopeC5;
689 shFaM->DefineSection( 9, z, rInFaGraphiteCone1, rOuSteelEnvelopeC10);
690 // 10 deg cone up to end of straight section
691 z0 = z;
692 z = dzFaFlange + dzFaGraphiteConeS + dzFaWTube1C;
693 dz = z - z0;
694 shFaM->DefineSection(10, z, rInFaGraphiteCone1, rOuSteelEnvelopeC10 + dz * angle10);
695 // 0.7 deg inner opening cone up to outer rear ring
696 z0 = z;
697 z = dzFa - dzSteelEnvelopeR/2.;
698 dz = (z - z0);
699 shFaM->DefineSection(11, z, rInFaGraphiteCone1 +dz * angle71, rOuSteelEnvelopeR1);
700 shFaM->DefineSection(12, z, rInFaGraphiteCone1 +dz * angle71, rOuSteelEnvelopeR2);
701 z += dzSteelEnvelopeR/2.;
702 shFaM->DefineSection(13, z, rInFaWTube4C2, rOuSteelEnvelopeR2);
703 // Recess for end plate
704 dz = dzSteelEnvelopeR/2;
705 shFaM->DefineSection(14, z, rInFaCH2Cone2 - dz * angle10, rOuSteelEnvelopeR2);
706 z += dzSteelEnvelopeR/2.;
707 shFaM->DefineSection(15, z, rInFaCH2Cone2, rOuSteelEnvelopeR2);
708
709 TGeoVolume* voFaM = new TGeoVolume("AFaM", shFaM, kMedAir);
f8a44cbc 710 voFaM->SetVisibility(0);
711
42df5168 712
713//
714// Assemble volumes inside acceptance
715 TGeoPcon* shFaAccM = new TGeoPcon(0., 360., 7);
716 for (Int_t i = 0; i < 4; i++) {
717 Float_t z = shFaGraphiteCone->GetZ(i);
718 Float_t rmin = shFaGraphiteCone->GetRmin(i);
719 Float_t rmax = shFaGraphiteCone->GetRmax(i);
720 shFaAccM->DefineSection(i, z, rmin, rmax);
721 }
722 z = dzFaGraphiteCone + dzFaConcreteCone + dzFaSteelCone25;
723 z0 = z + zFa + dzFaFlange;
724 shFaAccM->DefineSection(4, z, rOuFaWTube3C2, z0 * angle10);
725 shFaAccM->DefineSection(5, z, rOuFaWTube4C1, z0 * angle10);
726 z += dzFaSteelCone31;
727 z0 += dzFaSteelCone31;
728 shFaAccM->DefineSection(6, z, rOuFaWTube4C2, z0 * angle10);
729 TGeoVolume* voFaAccM = new TGeoVolume("AFaAcc", shFaAccM, kMedAir);
730
731 z = 0;
f8a44cbc 732 voFaAccM->AddNode(voFaGraphiteCone, 1, gGeoIdentity);
42df5168 733 z += dzFaGraphiteCone;
734 voFaAccM->AddNode(voFaConcreteCone, 1, new TGeoTranslation(0., 0., z + dzFaConcreteCone / 2.));
735 z += dzFaConcreteCone;
736 voFaAccM->AddNode(voFaSteelCone25, 1, new TGeoTranslation(0., 0., z + dzFaSteelCone25 / 2. + 0.001));
737 z += dzFaSteelCone25;
738 voFaAccM->AddNode(voFaSteelCone31, 1, new TGeoTranslation(0., 0., z + dzFaSteelCone31 / 2. + 0.001));
739
740//
741// Inner shield
742 TGeoVolumeAssembly* voFaInnerShield = new TGeoVolumeAssembly("AFaInnerShield");
f8a44cbc 743 voFaInnerShield->AddNode(voFaWTube1, 1, gGeoIdentity);
42df5168 744 z = dzFaWTube1 - 0.6;
745 voFaInnerShield->AddNode(voFaWTube2, 1, new TGeoTranslation(0., 0., z) );
746 z += dzFaWTube2;
747 voFaInnerShield->AddNode(voFaWTube3, 1, new TGeoTranslation(0., 0., z + dzFaWTube3 / 2.) );
748 z += dzFaWTube3;
749 voFaInnerShield->AddNode(voFaWTube4, 1, new TGeoTranslation(0., 0., z + dzFaWTube4 / 2.) );
750 z = dzFaGraphiteConeS + dzFaFlange;
751 voFaM->AddNode(voFaInnerShield, 1, new TGeoTranslation(0., 0., z));
752
753
754//
755// Adding volumes to mother volume
756//
757 z = 0.;
f8a44cbc 758 voFaM->AddNode(voFaWPlateA, 1, gGeoIdentity);
42df5168 759 z += dzFaWPlate;
760 voFaM->AddNode(voFaSteelEnvelope, 1, new TGeoTranslation(0., 0., z));
761 z += dzSteelEnvelopeFC;
762 voFaM->AddNode(voFaPbCone, 1, new TGeoTranslation(0., 0., z));
763 z += (dzFaPbCone + dzFaCH2Cone / 2.);
764 voFaM->AddNode(voFaCH2Cone, 1, new TGeoTranslation(0., 0., z));
f8a44cbc 765 voFaM->AddNode(voFaFlange, 1, gGeoIdentity);
766 voFaM->AddNode(voFaMgRing, 1, gGeoIdentity);
767 voFaM->AddNode(voFaCompRing, 1, gGeoIdentity);
42df5168 768 voFaM->AddNode(voFaAccM, 1, new TGeoTranslation(0., 0., dzFaFlange));
769
770////////////////////////////////////////////////////
771// //
772// Front Absorber Support Structure FASS //
773// //
774// Drawing ALIP2A__0035 //
775// Drawing ALIP2A__0089 //
776// Drawing ALIP2A__0090 //
777// Drawing ALIP2A__0109 //
778////////////////////////////////////////////////////
779 TGeoVolumeAssembly* voFass = new TGeoVolumeAssembly("AFass");
780 const Float_t kFassUBFlangeH = 380.;
781 const Float_t kFassUBFlangeW = 77.;
782
783 const Float_t kFassUMFlangeH = 380.;
784 const Float_t kFassUMFlangeB = 246.;
785 const Float_t kFassUMFlangeT = 10.;
786 const Float_t kFassUMFalpha = - TMath::ATan((kFassUMFlangeB-kFassUMFlangeT)/ kFassUMFlangeH / 2.) / kDegRad;
787// Upper back flange
788// B1
789// 380 x 77
790 TGeoVolume* voFassUBFlange = new TGeoVolume("AFassUBFlange", new TGeoBBox(kFassUBFlangeW/2.,
791 kFassUBFlangeH/2., 3./2.), kMedSteel);
792 voFass->AddNode(voFassUBFlange, 1, new TGeoTranslation(+1.5 + kFassUBFlangeW/2.,
793 180. + kFassUBFlangeH/2.,
794 kFassUMFlangeB - 1.5));
795 voFass->AddNode(voFassUBFlange, 2, new TGeoTranslation(-1.5 - kFassUBFlangeW/2.,
796 180. + kFassUBFlangeH/2.,
797 kFassUMFlangeB - 1.5));
798
799
800// Lower back flange
801// Upper median flange
802// Drawing ALIP2A__0090 //
803// Drawing ALIP2A__0089 //
804// A2
805
806 TGeoVolume* voFassUMFlange = new TGeoVolume("AFassUMFlange",
807 new TGeoTrap(kFassUMFlangeH/2., kFassUMFalpha,
808 0., 1.5,
809 kFassUMFlangeB/2., kFassUMFlangeB/2.,
810 0., 1.5,
811 kFassUMFlangeT/2., kFassUMFlangeT/2.,
812 0.), kMedSteel);
813
814 TGeoRotation* rotFass1 = new TGeoRotation("rotFass1", 180., 0., 90., 0., 90., 90.);
815 voFass->AddNode(voFassUMFlange,1 ,
816 new TGeoCombiTrans(0., 180. + kFassUMFlangeH/2., -(kFassUMFlangeB+kFassUMFlangeT)/4. + kFassUMFlangeB,
817 rotFass1));
818
819
820// Lower median flange
821// Drawing ALIP2A__0090 //
822// Drawing ALIP2A__0089 //
823// A1
824 const Float_t kFassLMFlangeH = 242.;
825 const Float_t kFassLMFlangeB = 246.;
826 const Float_t kFassLMFlangeT = 43.;
827 const Float_t kFassLMFalpha = - TMath::ATan((kFassLMFlangeB-kFassLMFlangeT)/ kFassLMFlangeH / 2.) / kDegRad;
828 TGeoVolume* voFassLMFlange = new TGeoVolume("AFassLMFlange",
829 new TGeoTrap(kFassLMFlangeH/2., kFassLMFalpha,
830 0., 1.5,
831 kFassLMFlangeB/2., kFassLMFlangeB/2.,
832 0., 1.5,
833 kFassLMFlangeT/2., kFassLMFlangeT/2.,
834 0.), kMedSteel);
835 TGeoRotation* rotFass2 = new TGeoRotation("rotFass2", 180., 0., 90., 0., 90., 270.);
836 voFass->AddNode(voFassLMFlange, 1,
837 new TGeoCombiTrans(0., -180. - kFassLMFlangeH/2., -(kFassLMFlangeB+kFassLMFlangeT)/4. + kFassLMFlangeB,
838 rotFass2));
839
840// Stiffeners
841// Support Plate
842//
843// Central cone
844 TGeoPgon* shFassCone = new TGeoPgon(22.5, 360., 8, 4);
845 shFassCone->DefineSection(0, 0., 0., 180.);
846 shFassCone->DefineSection(1, 3., 0., 180.);
847 shFassCone->DefineSection(2, 3., 177., 180.);
848 shFassCone->DefineSection(3, 246., 177., 180.);
849 shFassCone->SetName("FassCone");
850
851 TGeoBBox* shFassWindow = new TGeoBBox( 190., 53., 28.);
852 shFassWindow->SetName("FassWindow");
853 TGeoTranslation* tFassWindow = new TGeoTranslation("tFassWindow", 0., 0., 78.);
854 tFassWindow->RegisterYourself();
855
856 TGeoTube* shFassApperture = new TGeoTube(0., 104., 3.);
857 shFassApperture->SetName("FassApperture");
858
859 TGeoCompositeShape* shFassCentral =
860 new TGeoCompositeShape("shFassCentral", "FassCone-(FassWindow:tFassWindow+FassApperture)");
861
862 TGeoVolume* voFassCentral = new TGeoVolume("AFassCentral", shFassCentral, kMedSteel);
f8a44cbc 863 voFass->AddNode(voFassCentral, 1, gGeoIdentity);
42df5168 864
865//
866// Aluminum ring
867//
868 TGeoVolume* voFassAlRing = new TGeoVolume("AFassAlRing", new TGeoTube(104., 180., 10.), kMedAlu);
869
870
871//
872// Assemble the FA
873//
874// Inside muon spectrometer acceptance
875//
876// Composite 2 cm
877// Graphite 225 cm
878// Concrete 126 cm
879// Steel 56 cm
880// ===================
881// 409 cm
882// should be 409 cm
883
884
885
886
887//
888// Absorber and Support
889 TGeoVolumeAssembly* voFA = new TGeoVolumeAssembly("AFA");
f8a44cbc 890 voFA->AddNode(voFaM, 1, gGeoIdentity);
42df5168 891 voFA->AddNode(voFaEndPlate, 1, new TGeoTranslation(0., 0., dzFa + dzEndPlate/2.));
892 voFA->AddNode(voFass, 1, new TGeoTranslation(0., 0., 388.45));
d4e77c61 893 voFA->AddNode(voFassAlRing, 1, new TGeoTranslation(0., 0., 382. - 3.5));
42df5168 894 top->AddNode(voFA, 1, new TGeoCombiTrans(0., 0., -90., rotxz));
895}
896
897
898TGeoPcon* AliABSOv3::MakeShapeFromTemplate(TGeoPcon* pcon, Float_t drMin, Float_t drMax)
899{
900 //
901 // Returns new shape based on a template changing
902 // the inner radii by drMin and the outer radii by drMax.
903 //
904 Int_t nz = pcon->GetNz();
905 TGeoPcon* cpcon = new TGeoPcon(0., 360., nz);
906 for (Int_t i = 0; i < nz; i++)
907 cpcon->DefineSection(i, pcon->GetZ(i), pcon->GetRmin(i) + drMin, pcon->GetRmax(i) + drMax);
908 return cpcon;
909}