]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONGeometry.h
Moving AliMUONTriggerEfficiencyCells from sim to base
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometry.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 // $Id$
5
6 /// \ingroup geometry
7 /// \class AliMUONGeometry
8 /// \brief Container class for geometry modules
9 ///
10 /// Author: Ivana Hrivnacova, IPN Orsay
11
12 #ifndef ALI_MUON_GEOMETRY_H
13 #define ALI_MUON_GEOMETRY_H
14
15 #include <TObject.h>
16 #include <TGeoMatrix.h>
17
18 class AliMUONGeometryModule;
19 class AliMUONGeometryTransformer;
20
21 class TObjArray;
22
23 class AliMUONGeometry : public TObject
24 {
25   public:
26     AliMUONGeometry(Bool_t isOwner);
27     AliMUONGeometry();
28     virtual  ~AliMUONGeometry();
29     
30     // methods
31     void    AddModule(AliMUONGeometryModule* module);
32
33     Bool_t  ReadSVMap(const TString& fileName);
34     Bool_t  WriteSVMap(const TString& fileName) const;
35
36     // get methods
37     const AliMUONGeometryModule* GetModule(
38                                     Int_t index, Bool_t warn = true) const;
39
40     const AliMUONGeometryModule* GetModuleByDEId(
41                                     Int_t detElemId, Bool_t warn = true) const;
42
43     AliMUONGeometryTransformer* GetTransformer() const;
44
45
46   protected:
47     AliMUONGeometry(const AliMUONGeometry& right);
48     AliMUONGeometry&  operator = (const AliMUONGeometry& right);
49  
50   private:
51     //methods
52     TString  ComposePath(const TString& volName, Int_t copyNo) const; 
53
54     void    FillData3(const TString& sensVolumePath, Int_t detElemId);             
55     TString ReadData3(ifstream& in);
56     void    WriteData3(ofstream& out) const;
57
58     // data members
59     TObjArray*                  fModules;     // Array of geometry modules
60     AliMUONGeometryTransformer* fTransformer; // Geometry transformer
61
62   ClassDef(AliMUONGeometry,1)  // Geometry parametrisation
63 };
64
65 inline AliMUONGeometryTransformer* AliMUONGeometry::GetTransformer() const
66 { return fTransformer; }
67
68 #endif //ALI_MUON_GEOMETRY_H
69
70
71
72
73
74
75