]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CRT/AliCRTConstants.cxx
Adding some QCD diffractive states to the PDG list
[u/mrichter/AliRoot.git] / CRT / AliCRTConstants.cxx
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 /*
17 $Log$
18 Revision 1.1.4.2  2002/10/10 14:40:31  hristov
19 Updating VirtualMC to v3-09-02
20
21 Revision 1.2  2002/10/07 11:16:53  gamez
22 Depth variable added
23
24 Revision 1.1  2002/06/16 17:08:19  hristov
25 First version of CRT
26
27
28 */
29
30 ////////////////////////////////////////////////////////////////////////
31 //
32 // AliCRTConstants class
33 //
34 // This class serves to group constants needed by CRT detector in 1
35 // easily accessible place. All constants are public const static data 
36 // members. The class is never instatiated.
37 //
38 //
39 // Author: Arturo Fernandez, Enrique Gamez
40 //         FCFM-UAP, Mexico.
41 //
42 ////////////////////////////////////////////////////////////////////////
43
44 #include "AliCRTConstants.h"
45
46 const Float_t AliCRTConstants::fgCageLenght = 477.6;
47 const Float_t AliCRTConstants::fgCageWidth = 166.7;
48 const Float_t AliCRTConstants::fgCageHeight       =  10.7;
49 const Float_t AliCRTConstants::fgSinglePaletteLenght = 363.0;
50 const Float_t AliCRTConstants::fgSinglePaletteWidth  =  19.7;
51 const Float_t AliCRTConstants::fgSinglePaletteHeight =   1.0;
52 const Float_t AliCRTConstants::fgActiveAreaGap    = 0.7;
53 const Float_t AliCRTConstants::fgActiveAreaLenght = fgSinglePaletteLenght;
54 const Float_t AliCRTConstants::fgActiveAreaWidth  = 156.7;
55 const Float_t AliCRTConstants::fgActiveAreaHeight = 2*fgSinglePaletteHeight + fgActiveAreaGap;
56 const Float_t AliCRTConstants::fgMagnetWidth = 654.4;
57 const Float_t AliCRTConstants::fgMagnetLenght = 1200.;
58 const Float_t AliCRTConstants::fgDepth=4420.; // cm.
59
60 ClassImp(AliCRTConstants)