]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDGeometry.h
Access to the headers from RAW
[u/mrichter/AliRoot.git] / FMD / AliFMDGeometry.h
CommitLineData
1a1fdef7 1#ifndef ALIFMDGEOMETRY_H
2#define ALIFMDGEOMETRY_H
088f8e79 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4 * reserved.
5 *
6 * Latest changes by Christian Holm Christensen <cholm@nbi.dk>
7 *
8 * See cxx source for full Copyright notice
9 */
1a1fdef7 10//____________________________________________________________________
11//
69b696b9 12// Forward Multiplicity Detector based on Silicon wafers.
13//
14// This class is a singleton that handles the geometry parameters of
15// the FMD detectors.
16//
1a1fdef7 17#ifndef ALIGEOMETRY_H
18# include <AliGeometry.h>
19#endif
57c3c593 20#ifndef ROOT_TArrayI
21# include <TArrayI.h>
22#endif
23#ifndef ROOT_TMatrixFfwd
24# include <TMatrixFfwd.h>
25#endif
26class TVector3;
1a1fdef7 27class TParticle;
28class AliRecPoint;
29class AliFMDRing;
30class AliFMDDetector;
31class AliFMD1;
32class AliFMD2;
33class AliFMD3;
54e415a8 34class AliFMDGeometryBuilder;
1a1fdef7 35
36
37//__________________________________________________________________
38/** Singleton object of FMD geometry descriptions and parameters.
39 */
40class AliFMDGeometry : public AliGeometry
41{
42public:
43 static AliFMDGeometry* Instance();
44 virtual void Init();
bf000c32 45 virtual void InitTransformations();
1a1fdef7 46 AliFMDRing* GetInner() const { return fInner; }
47 AliFMDRing* GetOuter() const { return fOuter; }
48 AliFMD1* GetFMD1() const { return (fUseFMD1 ? fFMD1 : 0); }
49 AliFMD2* GetFMD2() const { return (fUseFMD2 ? fFMD2 : 0); }
50 AliFMD3* GetFMD3() const { return (fUseFMD3 ? fFMD3 : 0); }
51 AliFMDDetector* GetDetector(Int_t i) const;
52 AliFMDRing* GetRing(Char_t i) const;
53 void Disable(Int_t i);
54 void Enable(Int_t i);
55 Double_t GetSiDensity() const { return 2.33; }
54e415a8 56 void Detector2XYZ(UShort_t detector, Char_t ring,
57 UShort_t sector, UShort_t strip,
58 Double_t& x, Double_t& y, Double_t& z) const;
59 Bool_t XYZ2Detector(Double_t x, Double_t y, Double_t z,
60 UShort_t& detector, Char_t& ring,
61 UShort_t& sector, UShort_t& strip) const;
54e415a8 62 void Build();
63 Int_t GetDetectorOff() const { return fDetectorOff; }
64 Int_t GetModuleOff() const { return fModuleOff; }
65 Int_t GetRingOff() const { return fRingOff; }
66 Int_t GetSectorOff() const { return fSectorOff; }
67 void SetDetectorOff(Int_t off) { fDetectorOff = off; }
68 void SetModuleOff(Int_t off) { fModuleOff = off; }
69 void SetRingOff(Int_t off) { fRingOff = off; }
70 void SetSectorOff(Int_t off) { fSectorOff = off; }
71 Bool_t IsActive(Int_t vol) const;
72 void SetActive(Int_t* active, Int_t n);
73 void AddActive(Int_t id);
74 void SetBuilder(AliFMDGeometryBuilder* b) { fBuilder = b; }
75 void ExtractGeomInfo();
76 void SetDetailed(Bool_t det) { fDetailed = det; }
77 Bool_t IsDetailed() const { return fDetailed; }
78 void UseAssembly(Bool_t ass) { fUseAssembly = ass; }
1a1fdef7 79
80 // AliGeometry member functions
81 virtual void GetGlobal(const AliRecPoint* p, TVector3& pos,
e8d02863 82 TMatrixF& mat) const;
1a1fdef7 83 virtual void GetGlobal(const AliRecPoint* p, TVector3& pos) const;
84 virtual Bool_t Impact(const TParticle* particle) const;
85protected:
69b696b9 86 Bool_t fIsInitialized; // Whether singleton is initalized
1a1fdef7 87 AliFMDRing* fInner; // Inner ring geometry information
88 AliFMDRing* fOuter; // Outer ring geometry information
89 AliFMD1* fFMD1; // FMD1 geometry information
90 AliFMD2* fFMD2; // FMD2 geometry information
91 AliFMD3* fFMD3; // FMD3 geometry information
92 Bool_t fUseFMD1; // Wheter to Use FMD1 or not
93 Bool_t fUseFMD2; // Wheter to Use FMD2 or not
94 Bool_t fUseFMD3; // Wheter to Use FMD3 or not
69b696b9 95 static AliFMDGeometry* fgInstance; // Singleton instance
1a1fdef7 96 AliFMDGeometry();
69b696b9 97 AliFMDGeometry(const AliFMDGeometry& other);
98 AliFMDGeometry& operator=(const AliFMDGeometry& other);
1a1fdef7 99 virtual ~AliFMDGeometry() {}
69b696b9 100
54e415a8 101 AliFMDGeometryBuilder* fBuilder;
102 Int_t fDetectorOff;
103 Int_t fModuleOff;
104 Int_t fRingOff;
105 Int_t fSectorOff;
106 TArrayI fActive;
107 Bool_t fDetailed;
108 Bool_t fUseAssembly;
54e415a8 109
1a1fdef7 110 ClassDef(AliFMDGeometry,1); //
111};
112
113
114#endif
115//____________________________________________________________________
116//
117// Local Variables:
118// mode: C++
119// End:
120//
121// EOF
122//