]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDconst.h
AliGenCocktailEntry.cxx added
[u/mrichter/AliRoot.git] / TRD / AliTRDconst.h
CommitLineData
0254057f 1#ifndef ALITRDCONST_H
2#define ALITRDCONST_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
82bbf98a 8//
99d5402e 9// Geometry parameter for the TRD
82bbf98a 10//
11
82bbf98a 12const Int_t kNsect = 18; // Number of sectors in the full detector
13const Int_t kNplan = 6; // Number of planes of the TRD
99d5402e 14const Int_t kNcham = 5; // Number of chambers in z-direction
6f1e466d 15const Int_t kNdet = kNsect * kNplan * kNcham;
82bbf98a 16
17const Float_t kRmin = 294.0; // r-dimensions of the TRD
18const Float_t kRmax = 368.0;
19
20const Float_t kZmax1 = 378.35; // z-dimensions of the TRD
21const Float_t kZmax2 = 302.0;
22
5c7f4665 23const Float_t kSheight = 74.0; // Height of the TRD-volume in spaceframe (BTR1-3)
24const Float_t kSwidth1 = 99.613; // Lower width of the TRD-volume in spaceframe (BTR1-3)
25const Float_t kSwidth2 = 125.707; // Upper width of the TRD-volume in spaceframe (BTR1-3)
26const Float_t kSlenTR1 = 751.0; // Length of the TRD-volume in spaceframe (BTR1)
27const Float_t kSlenTR2 = 313.5; // Length of the TRD-volume in spaceframe (BTR2)
28const Float_t kSlenTR3 = 159.5; // Length of the TRD-volume in spaceframe (BTR3)
82bbf98a 29
30const Float_t kCheight = 11.0; // Height of the chambers
31const Float_t kCspace = 1.6; // Vertical spacing of the chambers
32const Float_t kCaframe = 2.675; // Height of the aluminum frame
33const Float_t kCathick = 1.0; // Thickness of the aluminum frame
34const Float_t kCcthick = 1.0; // Thickness of the carbon frame
35
36const Float_t kCwidcha = (kSwidth2 - kSwidth1) / kSheight * (kCheight + kCspace);
37const Float_t kCcframe = kCheight - kCaframe;
38
39// Thicknesses of the the material layers
40const Float_t kSeThick = 0.02; // Radiator seal
41const Float_t kRaThick = 4.8; // Radiator
42const Float_t kPeThick = 0.20; // PE-layer in the radiator
43const Float_t kMyThick = 0.005; // Mylar-layer
44const Float_t kXeThick = 3.5; // Gas mixture
45const Float_t kDrThick = 3.0; // Drift region
46const Float_t kAmThick = kXeThick - kDrThick; // Amplification region
47
48const Float_t kCuThick = 0.001; // Pad plane
49const Float_t kSuThick = 0.06; // HEXCEL+G10 support structure (= 0.31% X0)
50const Float_t kFeThick = 0.0044; // FEE + signal lines (= 0.31% X0)
51const Float_t kCoThick = 0.02; // PE of the cooling device
52const Float_t kWaThick = 0.01; // Cooling water
53
54// Position of the material layers
55const Float_t kSeZpos = -4.1525; // Radiator seal
56const Float_t kRaZpos = -1.7425; // Radiator
57const Float_t kPeZpos = 0.0000; // PE-layer in the radiator
58const Float_t kMyZpos = 0.6600; // Mylar-layer
59const Float_t kDrZpos = 2.1625; // Drift region
60const Float_t kAmZpos = 4.1125; // Amplification region
61
62const Float_t kCuZpos = -1.3370; // Pad plane
63const Float_t kSuZpos = 0.0000; // Support structure
64const Float_t kFeZpos = 1.3053; // FEE + signal lines
65const Float_t kCoZpos = 1.3175; // PE of the cooling device
66const Float_t kWaZpos = 1.3325; // Cooling Water
67
68//_____________________________________________________________________________
0254057f 69#endif
70