]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSGeometry.h
coding convention
[u/mrichter/AliRoot.git] / PHOS / AliPHOSGeometry.h
CommitLineData
daa2ae2f 1#ifndef ALIPHOSGEOMETRY_H
2#define ALIPHOSGEOMETRY_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6ad0bfa0 6/* $Id$ */
7
b2a60966 8//_________________________________________________________________________
a3dfe79c 9// Geometry class for PHOS : singleton
10// PHOS consists of the electromagnetic calorimeter (EMCA)
11// and a charged particle veto either in the Subatech's version (PPSD)
12// or in the IHEP's one (CPV).
13// The EMCA/PPSD/CPV modules are parametrized so that any configuration
14// can be easily implemented
15// The title is used to identify the version of CPV used.
16//
b2a60966 17//*-- Author: Yves Schutz (SUBATECH)
d15a28e7 18
19// --- ROOT system ---
20
d15a28e7 21// --- AliRoot header files ---
22
daa2ae2f 23#include "AliGeometry.h"
eb92d866 24#include "AliPHOSEMCAGeometry.h"
25#include "AliPHOSCPVGeometry.h"
ed19b2e1 26#include "AliPHOSSupportGeometry.h"
daa2ae2f 27
9f616d61 28
daa2ae2f 29class AliPHOSGeometry : public AliGeometry {
30
31public:
32
e957fea8 33 AliPHOSGeometry() ;
52a36ffd 34
a8c47ab6 35 AliPHOSGeometry(const AliPHOSGeometry & geom) : AliGeometry(geom) {
e957fea8 36 Fatal("cpy ctor", "not implemented") ;
6c370def 37 }
38
daa2ae2f 39 virtual ~AliPHOSGeometry(void) ;
282c5906 40 static AliPHOSGeometry * GetInstance(const Text_t* name, const Text_t* title="") ;
daa2ae2f 41 static AliPHOSGeometry * GetInstance() ;
1c9d8212 42 virtual void GetGlobal(const AliRecPoint* RecPoint, TVector3 & gpos, TMatrix & gmat) const ;
43 virtual void GetGlobal(const AliRecPoint* RecPoint, TVector3 & gpos) const ;
44 virtual Bool_t Impact(const TParticle * particle) const ;
daa2ae2f 45
8c140292 46 AliPHOSGeometry & operator = (const AliPHOSGeometry & /*rvalue*/) const {
e957fea8 47 Fatal("operator =", "nt implemented") ; return *(GetInstance()) ; }
cf0c2bc1 48
daa2ae2f 49 // General
50
2725c395 51 static TString Degre(void) { return TString("deg") ; } // a global for degree (deg)
cf0c2bc1 52
2725c395 53 static TString Radian(void){ return TString("rad") ; } // a global for radian (rad)
52a36ffd 54
710f859a 55 Bool_t AbsToRelNumbering(const Int_t AbsId, Int_t * RelId) const ;
56 // converts the absolute PHOS numbering to a relative
52a36ffd 57
710f859a 58 void EmcModuleCoverage(const Int_t m, Double_t & tm, Double_t & tM, Double_t & pm,
59 Double_t & pM, Option_t * opt = Radian() ) const ;
60 // calculates the angular coverage in theta and phi of a EMC module
7b7c1533 61 void EmcXtalCoverage(Double_t & theta, Double_t & phi, Option_t * opt = Radian() ) const ;
710f859a 62 // calculates the angular coverage in theta and phi of a
63 // single crystal in a EMC module
64 void ImpactOnEmc(const Double_t theta, const Double_t phi, Int_t & ModuleNumber,
65 Double_t & z, Double_t & x) const ;
66 // calculates the impact coordinates of a neutral particle
67 // emitted in direction theta and phi in ALICE
8f09b22b 68 Bool_t IsInEMC(const Int_t id) const { if (id > GetNModules() * GetNCristalsInModule() ) return kFALSE; return kTRUE; }
710f859a 69 void RelPosInModule(const Int_t * RelId, Float_t & y, Float_t & z) const ;
70 // gets the position of element (pad or Xtal) relative to
71 // center of PHOS module
72 void RelPosInAlice(const Int_t AbsId, TVector3 & pos) const ;
73 // gets the position of element (pad or Xtal) relative to Alice
74 Bool_t RelToAbsNumbering(const Int_t * RelId, Int_t & AbsId) const ;
75 // converts the absolute PHOS numbering to a relative
88cb7938 76
710f859a 77 Bool_t IsInitialized(void) const { return fgInit ; }
c198e326 78
52a36ffd 79 // Return general PHOS parameters
710f859a 80 Int_t GetNModules(void) const { return fNModules ; }
81 Float_t GetPHOSAngle(Int_t index) const { return fPHOSAngle[index-1] ; }
82 Float_t* GetPHOSParams(void) { return fPHOSParams;} //Half-sizes of PHOS trapecoid
83 Float_t GetIPtoUpperCPVsurface(void) const { return fIPtoUpperCPVsurface ; }
84 Float_t GetOuterBoxSize(Int_t index) const { return 2.*fPHOSParams[index]; }
85 Float_t GetCrystalSize(Int_t index) const { return fGeometryEMCA->GetCrystalSize(index) ; }
66c3e8ff 86 Float_t GetCellStep(void) const { return 2*(fGeometryEMCA->GetAirCellHalfSize()[0] +
87 fGeometryEMCA->GetStripWallWidthOut()) ;}
710f859a 88
89 // Return EMCA geometry parameters
90
91 AliPHOSEMCAGeometry * GetEMCAGeometry() const {return fGeometryEMCA ;}
92 Float_t GetIPtoCrystalSurface(void) const { return fGeometryEMCA->GetIPtoCrystalSurface() ; }
93 Float_t GetIPtoOuterCoverDistance(void) const { return fGeometryEMCA->GetIPtoOuterCoverDistance() ; }
94 Int_t GetNPhi(void) const { return fGeometryEMCA->GetNPhi() ; }
95 Int_t GetNZ(void) const { return fGeometryEMCA->GetNZ() ; }
96 Int_t GetNCristalsInModule(void) const { return fGeometryEMCA->GetNPhi() * fGeometryEMCA->GetNZ() ; }
97
98 // Return CPV geometry parameters
ed4205d8 99 Int_t GetNumberOfCPVLayers(void) const { return fGeometryCPV ->GetNumberOfCPVLayers(); }
ed4205d8 100 Float_t GetCPVActiveSize(Int_t index) const { return fGeometryCPV->GetCPVActiveSize(index); }
101 Int_t GetNumberOfCPVChipsPhi(void) const { return fGeometryCPV->GetNumberOfCPVChipsPhi(); }
102 Int_t GetNumberOfCPVChipsZ(void) const { return fGeometryCPV->GetNumberOfCPVChipsZ(); }
103 Int_t GetNumberOfCPVPadsPhi(void) const { return fGeometryCPV->GetNumberOfCPVPadsPhi(); }
104 Int_t GetNumberOfCPVPadsZ(void) const { return fGeometryCPV->GetNumberOfCPVPadsZ(); }
105 Float_t GetPadSizePhi(void) const { return fGeometryCPV->GetCPVPadSizePhi(); }
106 Float_t GetPadSizeZ(void) const { return fGeometryCPV->GetCPVPadSizeZ(); }
107 Float_t GetGassiplexChipSize(Int_t index) const { return fGeometryCPV->GetGassiplexChipSize(index); }
108 Float_t GetCPVGasThickness(void) const { return fGeometryCPV->GetCPVGasThickness(); }
109 Float_t GetCPVTextoliteThickness(void) const { return fGeometryCPV->GetCPVTextoliteThickness(); }
110 Float_t GetCPVCuNiFoilThickness(void) const { return fGeometryCPV->GetCPVCuNiFoilThickness(); }
111 Float_t GetFTPosition(Int_t index) const { return fGeometryCPV->GetFTPosition(index); }
112 Float_t GetCPVFrameSize(Int_t index) const { return fGeometryCPV->GetCPVFrameSize(index); }
710f859a 113 Float_t GetCPVBoxSize(Int_t index) const { return fGeometryCPV ->GetCPVBoxSize(index); }
114 Float_t GetIPtoCPVDistance(void) const { return GetIPtoOuterCoverDistance() -
115 GetCPVBoxSize(1) - 1.0; }
52a36ffd 116
710f859a 117 // Return PHOS' support geometry parameters
ed19b2e1 118
119 Float_t GetRailOuterSize(Int_t index) const { return fGeometrySUPP->GetRailOuterSize(index); }
120 Float_t GetRailPart1 (Int_t index) const { return fGeometrySUPP->GetRailPart1 (index); }
121 Float_t GetRailPart2 (Int_t index) const { return fGeometrySUPP->GetRailPart2 (index); }
122 Float_t GetRailPart3 (Int_t index) const { return fGeometrySUPP->GetRailPart3 (index); }
123 Float_t GetRailPos (Int_t index) const { return fGeometrySUPP->GetRailPos (index); }
710f859a 124 Float_t GetRailLength (void) const { return fGeometrySUPP->GetRailLength (); }
125 Float_t GetDistanceBetwRails(void) const { return fGeometrySUPP->GetDistanceBetwRails(); }
126 Float_t GetRailsDistanceFromIP(void) const { return fGeometrySUPP->GetRailsDistanceFromIP();}
ed19b2e1 127 Float_t GetRailRoadSize (Int_t index) const { return fGeometrySUPP->GetRailRoadSize (index); }
710f859a 128 Float_t GetCradleWallThickness(void) const { return fGeometrySUPP->GetCradleWallThickness();}
ed19b2e1 129 Float_t GetCradleWall (Int_t index) const { return fGeometrySUPP->GetCradleWall (index); }
130 Float_t GetCradleWheel (Int_t index) const { return fGeometrySUPP->GetCradleWheel (index); }
daa2ae2f 131
6c370def 132protected:
133
aafe457d 134 AliPHOSGeometry(const Text_t* name, const Text_t* title="") : AliGeometry(name, title) {
6c370def 135 // ctor only for internal usage (singleton)
136 Init() ;
52a36ffd 137 }
138 void Init(void) ; // steering method for PHOS and PPSD/CPV
6c370def 139
daa2ae2f 140private:
6c370def 141
eb92d866 142 Int_t fNModules ; // Number of modules constituing PHOS
ed4205d8 143 Float_t fAngle ; // Position angles between modules
eb92d866 144 Float_t *fPHOSAngle ; //[fNModules] Position angles of modules
710f859a 145 Float_t fPHOSParams[4] ; // Half-sizes of PHOS trapecoid
146 Float_t fIPtoUpperCPVsurface; // Minimal distance from IP to PHOS
eb92d866 147 TObjArray *fRotMatrixArray ; // Liste of rotation matrices (one per phos module)
148 AliPHOSEMCAGeometry *fGeometryEMCA ; // Geometry object for Electromagnetic calorimeter
ed4205d8 149 AliPHOSCPVGeometry *fGeometryCPV ; // Geometry object for CPV (IHEP)
ed19b2e1 150 AliPHOSSupportGeometry *fGeometrySUPP ; // Geometry object for PHOS support
52a36ffd 151
ed4205d8 152 void SetPHOSAngles(); // calculates the PHOS modules PHI angle
daa2ae2f 153
88714635 154 static AliPHOSGeometry * fgGeom ; // pointer to the unique instance of the singleton
52a36ffd 155 static Bool_t fgInit ; // Tells if geometry has been succesfully set up
daa2ae2f 156
52a36ffd 157 ClassDef(AliPHOSGeometry,1) // PHOS geometry class
daa2ae2f 158
159} ;
160
161#endif // AliPHOSGEOMETRY_H