]> git.uio.no Git - u/mrichter/AliRoot.git/blame - CRT/AliCRTConstants.cxx
Clean up compilation warnings
[u/mrichter/AliRoot.git] / CRT / AliCRTConstants.cxx
CommitLineData
fb7a1f55 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
803d1ab0 16/* $Id$ */
fb7a1f55 17
18////////////////////////////////////////////////////////////////////////
19//
20// AliCRTConstants class
21//
22// This class serves to group constants needed by CRT detector in 1
23// easily accessible place. All constants are public const static data
24// members. The class is never instatiated.
25//
fb7a1f55 26// Author: Arturo Fernandez, Enrique Gamez
27// FCFM-UAP, Mexico.
28//
29////////////////////////////////////////////////////////////////////////
30
31#include "AliCRTConstants.h"
32
387cc25e 33const Float_t AliCRTConstants::fgCageLenght = 477.6;
34const Float_t AliCRTConstants::fgCageWidth = 166.7;
35const Float_t AliCRTConstants::fgCageHeight = 10.7;
fb7a1f55 36const Float_t AliCRTConstants::fgSinglePaletteLenght = 363.0;
37const Float_t AliCRTConstants::fgSinglePaletteWidth = 19.7;
387cc25e 38const Float_t AliCRTConstants::fgSinglePaletteHeight = 1;
39const Float_t AliCRTConstants::fgActiveAreaGap = 0.7;
40const Float_t AliCRTConstants::fgActiveAreaLenght = AliCRTConstants::fgSinglePaletteLenght;
41const Float_t AliCRTConstants::fgActiveAreaWidth = 156.7;
42const Float_t AliCRTConstants::fgActiveAreaHeight = 2*AliCRTConstants::fgSinglePaletteHeight + AliCRTConstants::fgActiveAreaGap;
43const Float_t AliCRTConstants::fgMagnetWidth = 654.4;
44const Float_t AliCRTConstants::fgMagnetLenght = 1200;
45const Float_t AliCRTConstants::fgMagMinRadius = 790;
46const Float_t AliCRTConstants::fgMagMaxRadius = AliCRTConstants::fgMagMinRadius + 20;
47const Float_t AliCRTConstants::fgDepth =4420; // cm
fb7a1f55 48
49ClassImp(AliCRTConstants)