]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSCPVGeometry.cxx
Transition to NewIO
[u/mrichter/AliRoot.git] / PHOS / AliPHOSCPVGeometry.cxx
CommitLineData
fd61896f 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$
88cb7938 18 Revision 1.3.6.1 2002/11/22 14:19:47 hristov
19 Merging NewIO-01 with v3-09-04 (part one) (P.Skowronski)
20
21 Revision 1.4 2002/10/29 17:00:45 schutz
22 removed iostream
23
15dfd892 24 Revision 1.3 2001/09/26 12:09:36 schutz
25 A new (final?) geometry developed
26
85218d13 27 Revision 1.2 2000/11/09 15:49:04 martinez
28 Coding convention rules obeyed
29
a3dfe79c 30 Revision 1.1 2000/11/03 16:28:21 schutz
31 CPV geometry class to correct previous name-convetion rule violation
32
fd61896f 33*/
34
35//_________________________________________________________________________
36// Geometry class for PHOS : CPV (Charged particle veto, IHEP version)
a3dfe79c 37// Its data members provide geometry parametrization of CPV
38// which can be changed in the constructor only.
39// Author: Yuri Kharlov (IHEP, Protvino)
40// 15 September 2000
fd61896f 41//
42// --- ROOT system ---
43
44// --- Standard library ---
45
fd61896f 46// --- AliRoot header files ---
47
48#include "AliPHOSCPVGeometry.h"
49
50ClassImp(AliPHOSCPVGeometry) ;
51
52//____________________________________________________________________________
53AliPHOSCPVGeometry::AliPHOSCPVGeometry()
54{
55
56 // Initializes the CPV parameters
57 fNumberOfCPVLayers = 1;
fd61896f 58 fNumberOfCPVPadsPhi = 128;
59 fNumberOfCPVPadsZ = 64;
60 fCPVPadSizePhi = 1.13;
61 fCPVPadSizeZ = 2.26;
62 fNumberOfCPVChipsPhi = 8;
63 fNumberOfCPVChipsZ = 8;
64 fCPVGasThickness = 1.3;
65 fCPVTextoliteThickness = 0.1;
66 fCPVCuNiFoilThickness = 56e-04;;
67 fCPVFrameSize[0] = 2.5;
68 fCPVFrameSize[1] = 5.1;
69 fCPVFrameSize[2] = 2.5;
fd61896f 70 fGassiplexChipSize[0] = 4.2;
71 fGassiplexChipSize[1] = 0.1;
72 fGassiplexChipSize[2] = 6.0;
73 fFTPosition[0] = 0.7;
74 fFTPosition[1] = 2.2;
75 fFTPosition[2] = 3.6;
76 fFTPosition[3] = 5.1;
fd61896f 77
85218d13 78 fCPVActiveSize[0] = fNumberOfCPVPadsPhi * fCPVPadSizePhi;
79 fCPVActiveSize[1] = fNumberOfCPVPadsZ * fCPVPadSizeZ;
80 fCPVBoxSize[0] = fCPVActiveSize[0] + 2 * fCPVFrameSize[0];
81 fCPVBoxSize[1] = fCPVFrameSize[1] * fNumberOfCPVLayers + 0.1;
82 fCPVBoxSize[2] = fCPVActiveSize[1] + 2 * fCPVFrameSize[2];
83
84}
fd61896f 85//____________________________________________________________________________