]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSGeometry.h
New class wrapping the access of files in the AliEn catalogue
[u/mrichter/AliRoot.git] / PHOS / AliPHOSGeometry.h
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
6 /* $Id$ */
7
8 //_________________________________________________________________________
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 // 
17 //*-- Author: Yves Schutz (SUBATECH)
18
19 // --- ROOT system ---
20
21 // --- AliRoot header files ---
22
23 #include "AliGeometry.h"
24 #include "AliPHOSEMCAGeometry.h"
25 #include "AliPHOSCPVGeometry.h"
26 #include "AliPHOSSupportGeometry.h"
27
28
29 class AliPHOSGeometry : public AliGeometry {
30
31 public: 
32
33   AliPHOSGeometry() ;
34
35   AliPHOSGeometry(const AliPHOSGeometry & geom) : AliGeometry(geom) {
36     Fatal("cpy ctor", "not implemented") ; 
37   } 
38   
39   virtual ~AliPHOSGeometry(void) ; 
40   static AliPHOSGeometry * GetInstance(const Text_t* name, const Text_t* title="") ; 
41   static AliPHOSGeometry * GetInstance() ; 
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 ;
45
46   AliPHOSGeometry & operator = (const AliPHOSGeometry  & /*rvalue*/) const {
47     Fatal("operator =", "nt implemented") ; return *(GetInstance()) ; }
48  
49   // General
50
51   static TString Degre(void) { return TString("deg") ; }  // a global for degree (deg)
52
53   static TString Radian(void){ return TString("rad") ; }  // a global for radian (rad)
54
55   Bool_t AbsToRelNumbering(Int_t AbsId, Int_t * RelId) const ; 
56                                           // converts the absolute PHOS numbering to a relative 
57
58   void EmcModuleCoverage(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
61   void EmcXtalCoverage(Double_t & theta, Double_t & phi, Option_t * opt = Radian() ) const ; 
62                                          // calculates the angular coverage in theta and phi of a  
63                                          // single crystal in a EMC module
64   void ImpactOnEmc(Double_t theta, Double_t phi, Int_t & ModuleNumber, 
65                          Double_t & z, Double_t & x) const ; 
66   void ImpactOnEmc(TVector3 vec, Int_t & ModuleNumber, 
67                          Double_t & z, Double_t & x) const ; 
68   void ImpactOnEmc(TParticle p, Int_t & ModuleNumber, 
69                          Double_t & z, Double_t & x) const ; 
70                                         // calculates the impact coordinates of a neutral particle  
71                                          // emitted in direction theta and phi in ALICE
72   Bool_t IsInEMC(Int_t id) const { if (id > GetNModules() *  GetNCristalsInModule() ) return kFALSE; return kTRUE; } 
73   void RelPosInModule(const Int_t * RelId, Float_t & y, Float_t & z) const ; 
74                                          // gets the position of element (pad or Xtal) relative to 
75                                          // center of PHOS module  
76   void RelPosInAlice(Int_t AbsId, TVector3 &  pos) const ;             
77                                          // gets the position of element (pad or Xtal) relative to Alice
78   Bool_t RelToAbsNumbering(const Int_t * RelId, Int_t & AbsId) const ;         
79                                          // converts the absolute PHOS numbering to a relative 
80
81   Bool_t IsInitialized(void)                  const { return fgInit ; }  
82                                                                        
83   // Return general PHOS parameters
84   Int_t    GetNModules(void)                    const { return fNModules ; }
85   Float_t  GetPHOSAngle(Int_t index)            const { return fPHOSAngle[index-1] ; }
86   Float_t* GetPHOSParams(void)                        { return fPHOSParams;}  //Half-sizes of PHOS trapecoid
87   Float_t  GetIPtoUpperCPVsurface(void)         const { return fIPtoUpperCPVsurface ; }
88   Float_t  GetOuterBoxSize(Int_t index)         const { return 2.*fPHOSParams[index]; }
89   Float_t  GetCrystalSize(Int_t index)          const { return fGeometryEMCA->GetCrystalSize(index) ;  }
90   Float_t  GetCellStep(void)                    const { return 2*(fGeometryEMCA->GetAirCellHalfSize()[0] + 
91                                                                   fGeometryEMCA->GetStripWallWidthOut()) ;}
92
93   // Return EMCA geometry parameters
94
95   AliPHOSEMCAGeometry * GetEMCAGeometry()      const {return fGeometryEMCA ;}
96   Float_t   GetIPtoCrystalSurface(void)        const { return fGeometryEMCA->GetIPtoCrystalSurface() ; }
97   Float_t   GetIPtoOuterCoverDistance(void)    const { return fGeometryEMCA->GetIPtoOuterCoverDistance() ; }
98   Int_t     GetNPhi(void)                      const { return fGeometryEMCA->GetNPhi() ; }
99   Int_t     GetNZ(void)                        const { return fGeometryEMCA->GetNZ() ; }
100   Int_t     GetNCristalsInModule(void)         const { return fGeometryEMCA->GetNPhi() * fGeometryEMCA->GetNZ() ; }
101
102   // Return CPV geometry parameters
103   Int_t   GetNumberOfCPVLayers(void)           const { return fGeometryCPV ->GetNumberOfCPVLayers();      }
104   Float_t GetCPVActiveSize(Int_t index)        const { return fGeometryCPV->GetCPVActiveSize(index);      }
105   Int_t   GetNumberOfCPVChipsPhi(void)         const { return fGeometryCPV->GetNumberOfCPVChipsPhi();     }
106   Int_t   GetNumberOfCPVChipsZ(void)           const { return fGeometryCPV->GetNumberOfCPVChipsZ();       }
107   Int_t   GetNumberOfCPVPadsPhi(void)          const { return fGeometryCPV->GetNumberOfCPVPadsPhi();      }
108   Int_t   GetNumberOfCPVPadsZ(void)            const { return fGeometryCPV->GetNumberOfCPVPadsZ();        }
109   Float_t GetPadSizePhi(void)                  const { return fGeometryCPV->GetCPVPadSizePhi();           }
110   Float_t GetPadSizeZ(void)                    const { return fGeometryCPV->GetCPVPadSizeZ();             }
111   Float_t GetGassiplexChipSize(Int_t index)    const { return fGeometryCPV->GetGassiplexChipSize(index);  }
112   Float_t GetCPVGasThickness(void)             const { return fGeometryCPV->GetCPVGasThickness();         }
113   Float_t GetCPVTextoliteThickness(void)       const { return fGeometryCPV->GetCPVTextoliteThickness();   }
114   Float_t GetCPVCuNiFoilThickness(void)        const { return fGeometryCPV->GetCPVCuNiFoilThickness();    }
115   Float_t GetFTPosition(Int_t index)           const { return fGeometryCPV->GetFTPosition(index);         }
116   Float_t GetCPVFrameSize(Int_t index)         const { return fGeometryCPV->GetCPVFrameSize(index);       }
117   Float_t GetCPVBoxSize(Int_t index)           const { return fGeometryCPV ->GetCPVBoxSize(index);        } 
118   Float_t GetIPtoCPVDistance(void)             const { return  GetIPtoOuterCoverDistance() - 
119                                                                GetCPVBoxSize(1) - 1.0; }
120
121   // Return PHOS' support geometry parameters
122
123   Float_t GetRailOuterSize(Int_t index)  const { return fGeometrySUPP->GetRailOuterSize(index); }
124   Float_t GetRailPart1    (Int_t index)  const { return fGeometrySUPP->GetRailPart1    (index); }
125   Float_t GetRailPart2    (Int_t index)  const { return fGeometrySUPP->GetRailPart2    (index); }
126   Float_t GetRailPart3    (Int_t index)  const { return fGeometrySUPP->GetRailPart3    (index); }
127   Float_t GetRailPos      (Int_t index)  const { return fGeometrySUPP->GetRailPos      (index); }
128   Float_t GetRailLength   (void)         const { return fGeometrySUPP->GetRailLength   ();      }
129   Float_t GetDistanceBetwRails(void)     const { return fGeometrySUPP->GetDistanceBetwRails();  }
130   Float_t GetRailsDistanceFromIP(void)   const { return fGeometrySUPP->GetRailsDistanceFromIP();}
131   Float_t GetRailRoadSize (Int_t index)  const { return fGeometrySUPP->GetRailRoadSize (index); }
132   Float_t GetCradleWallThickness(void)   const { return fGeometrySUPP->GetCradleWallThickness();}
133   Float_t GetCradleWall   (Int_t index)  const { return fGeometrySUPP->GetCradleWall   (index); }
134   Float_t GetCradleWheel  (Int_t index)  const { return fGeometrySUPP->GetCradleWheel  (index); }
135
136 protected:
137
138   AliPHOSGeometry(const Text_t* name, const Text_t* title="") : AliGeometry(name, title) { 
139     // ctor only for internal usage (singleton)
140     Init() ; 
141   }
142   void Init(void) ;            // steering method for PHOS and PPSD/CPV
143
144 private:
145
146   Int_t                    fNModules ;       // Number of modules constituing PHOS
147   Float_t                  fAngle ;          // Position angles between modules
148   Float_t                 *fPHOSAngle ;      //[fNModules] Position angles of modules
149   Float_t                  fPHOSParams[4] ;  // Half-sizes of PHOS trapecoid
150   Float_t                  fIPtoUpperCPVsurface; // Minimal distance from IP to PHOS
151   TObjArray               *fRotMatrixArray ; // Liste of rotation matrices (one per phos module)
152   AliPHOSEMCAGeometry     *fGeometryEMCA ;   // Geometry object for Electromagnetic calorimeter
153   AliPHOSCPVGeometry      *fGeometryCPV ;    // Geometry object for CPV  (IHEP)
154   AliPHOSSupportGeometry  *fGeometrySUPP ;   // Geometry object for PHOS support
155
156   void                     SetPHOSAngles();  // calculates the PHOS modules PHI angle
157
158   static AliPHOSGeometry * fgGeom ; // pointer to the unique instance of the singleton 
159   static Bool_t fgInit ;            // Tells if geometry has been succesfully set up 
160
161   ClassDef(AliPHOSGeometry,1)       // PHOS geometry class 
162
163 } ;
164
165 #endif // AliPHOSGEOMETRY_H