]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONGeometry.h
- Adding check and flagging for HG present
[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     /// Not implemented
48     AliMUONGeometry(const AliMUONGeometry& right);
49     /// Not implemented
50     AliMUONGeometry&  operator = (const AliMUONGeometry& right);
51  
52   private:
53     //methods
54     TString  ComposePath(const TString& volName, Int_t copyNo) const; 
55
56     void    FillData3(const TString& sensVolumePath, Int_t detElemId);             
57     TString ReadData3(ifstream& in);
58     void    WriteData3(ofstream& out) const;
59
60     // data members
61     TObjArray*                  fModules;     ///< Array of geometry modules
62     AliMUONGeometryTransformer* fTransformer; ///< Geometry transformer
63
64   ClassDef(AliMUONGeometry,1)  // Geometry parametrisation
65 };
66
67 /// Return geometry transformer
68 inline AliMUONGeometryTransformer* AliMUONGeometry::GetTransformer() const
69 { return fTransformer; }
70
71 #endif //ALI_MUON_GEOMETRY_H
72
73
74
75
76
77
78