]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFGeometryV5.h
DIPO added
[u/mrichter/AliRoot.git] / TOF / AliTOFGeometryV5.h
1 #ifndef ALITOFGEOMETRYV5_H
2 #define ALITOFGEOMETRYV5_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 ///////////////////////////////////////////////////////////////////////////////
8 //                                                                           //
9 //  TOF geometry class (new version)                                         //
10 //                                                                           //
11 ///////////////////////////////////////////////////////////////////////////////
12
13 #include "AliTOFGeometry.h"
14
15 class AliTOFGeometryV5: public AliTOFGeometry {
16
17  public:
18   AliTOFGeometryV5();
19   virtual ~AliTOFGeometryV5();
20    
21   void    ImportGeometry();
22   void    Init();
23   Bool_t  IsInsideThePad(Int_t *det, TGeoHMatrix mat, Float_t *pos) const;
24   Float_t DistanceToPad(Int_t *det, TGeoHMatrix mat, Float_t *pos, Float_t *dist3d=0) const;
25   Bool_t  IsInsideThePadPar(Int_t *det, Float_t *pos) const; 
26   Float_t DistanceToPadPar(Int_t *det, Float_t *pos, Float_t *dist3d=0) const;
27   void    GetVolumePath(Int_t *ind, Char_t *path );
28   void    GetVolumePath(Int_t sector, Char_t *path );
29   void    GetVolumePath(Int_t sector, Int_t plate, Int_t strip, Char_t *path );
30   Int_t   GetPlate(Float_t *pos) const;
31   Int_t   GetStrip(Float_t *pos) const;
32   Int_t   GetSector(Float_t *pos) const;
33   Int_t   GetPadX(Float_t *pos) const;
34   Int_t   GetPadZ(Float_t *pos) const;
35   void    GetPos(Int_t *det,Float_t *pos);
36   Float_t GetX(Int_t *det) const;
37   Float_t GetY(Int_t *det) const;
38   Float_t GetZ(Int_t *det) const;
39   Float_t GetPadDx(Float_t *pos);
40   Float_t GetPadDy(Float_t *pos);
41   Float_t GetPadDz(Float_t *pos);
42
43   Int_t   NStripC()  const   { return kNStripC;};
44   Int_t   NPadXSector() const { return (AliTOFGeometry::kNStripA + 2*AliTOFGeometry::kNStripB +
45                                   2*kNStripC)*AliTOFGeometry::kNpadX*AliTOFGeometry::kNpadZ;};
46
47   Float_t RinTOF()  const    { return fgkxTOF;};
48   Float_t Rmin()   const     { return fgkRmin;};
49   Float_t Rmax()   const     { return fgkRmax;};
50
51   Float_t ZlenA() const      { return fgkZlenA;};
52   Float_t ZlenB() const      { return fgkZlenB;};
53   Float_t ZlenC() const      { return fgkZlenC;};
54   Float_t MaxhZtof() const   { return fgkMaxhZtof;};
55
56   void Translation(Float_t *xyz, Float_t translationVector[3]) const;
57   void Rotation(Float_t *xyz, Double_t rotationAngles[6]) const;
58   void InverseRotation(Float_t *xyz, Double_t rotationAngles[6]) const;
59
60   void DetToSectorRF(Int_t vol[5], Double_t **coord);
61
62   protected:
63
64   enum {
65     kNStripC    = 19 // number of strips in C type module 
66   };
67
68   //private:
69
70   static const Float_t fgkZlenA;       // length (cm) of the A module
71   static const Float_t fgkZlenB;       // length (cm) of the B module
72   static const Float_t fgkZlenC;       // length (cm) of the C module
73   static const Float_t fgkMaxhZtof;    // Max half z-size of TOF (cm)
74
75   static const Float_t fgkRmin;        // Inner radius of the TOF (cm)
76   static const Float_t fgkRmax;        // Outer radius of the TOF (cm)
77   static const Float_t fgkxTOF;        // Inner TOF Radius used in Reconstruction (cm)
78
79   ClassDef(AliTOFGeometryV5,1) // TOF Geometry class
80 };
81
82 #endif