]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONGeometryDetElement.h
Adding HLTbase to the list of libraries
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometryDetElement.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 AliMUONGeometryDetElement
8 /// \brief Class for storing detection element transformations 
9 ///
10 /// \author Ivana Hrivnacova, IPN Orsay
11
12 #ifndef ALI_MUON_GEOMETRY_DET_ELEMENT_H
13 #define ALI_MUON_GEOMETRY_DET_ELEMENT_H
14
15 #include <TObject.h>
16 #include <TString.h>
17
18 class TGeoHMatrix;
19
20 class AliMUONGeometryDetElement : public TObject
21 {
22   public:
23     AliMUONGeometryDetElement(Int_t detElemId,
24                               const TString& volumePath);
25     AliMUONGeometryDetElement();
26     virtual ~AliMUONGeometryDetElement();
27
28     // static methods
29     static TString GetDENamePrefix();
30
31     // methods
32     void Global2Local(
33                  Float_t xg, Float_t yg, Float_t zg, 
34                  Float_t& xl, Float_t& yl, Float_t& zl) const;
35     void Global2Local(
36                  Double_t xg, Double_t yg, Double_t zg, 
37                  Double_t& xl, Double_t& yl, Double_t& zl) const;
38
39     void Local2Global(
40                  Float_t xl, Float_t yl, Float_t zl, 
41                  Float_t& xg, Float_t& yg, Float_t& zg) const;
42     void Local2Global(
43                  Double_t xl, Double_t yl, Double_t zl, 
44                  Double_t& xg, Double_t& yg, Double_t& zg) const;
45     void PrintLocalTransform() const;
46     void PrintGlobalTransform() const;
47
48     // set methods
49     void SetLocalTransformation(const TGeoHMatrix& transform);
50     void SetGlobalTransformation(const TGeoHMatrix& transform);
51     void SetVolumePath(const TString& volumePath);
52     
53     // get methods
54     Int_t    GetId() const;
55     TString  GetDEName() const;
56     TString  GetVolumePath() const;
57     TString  GetVolumeName() const;
58     Int_t    GetVolumeCopyNo() const;
59     const TGeoHMatrix*  GetLocalTransformation() const;
60     const TGeoHMatrix*  GetGlobalTransformation() const;
61
62   protected:
63     /// Not implemented
64     AliMUONGeometryDetElement(const AliMUONGeometryDetElement& rhs);
65     /// Not implemented
66     AliMUONGeometryDetElement& operator = (const AliMUONGeometryDetElement& rhs);
67   
68   private:
69     // methods
70     void PrintTransform(const TGeoHMatrix* transform) const;
71  
72      // static data members
73     static const TString  fgkDENamePrefix; ///< Geometry module name prefix
74  
75     // data members
76     TString       fDEName;     ///< detection element name
77     TString       fVolumePath; ///< \brief the full path of aligned volume
78                                ///  or envelope in geometry
79     TGeoHMatrix*  fLocalTransformation;  ///< the transformation wrt module
80     TGeoHMatrix*  fGlobalTransformation; ///< the transformation wrt world
81
82   ClassDef(AliMUONGeometryDetElement,2) // MUON det element transformations
83 };
84
85 // inline functions
86
87 /// Return module name prefix
88 inline TString AliMUONGeometryDetElement::GetDENamePrefix()
89 { return fgkDENamePrefix; }
90
91 /// Set the full path of the aligned volume or envelope in geometry
92 inline void AliMUONGeometryDetElement::SetVolumePath(const TString& volumePath)
93 { fVolumePath = volumePath; }
94
95 /// Return detection element ID
96 inline Int_t AliMUONGeometryDetElement::GetId() const
97 { return GetUniqueID(); }
98
99 /// Return detection element ID
100 inline TString AliMUONGeometryDetElement::GetDEName() const
101 { return fDEName; }
102
103 /// Return the full path of the aligned volume or envelope in geometry
104 inline TString AliMUONGeometryDetElement::GetVolumePath() const
105 { return fVolumePath; }
106
107 /// Return the detection element transformation wrt module
108 inline const TGeoHMatrix* 
109 AliMUONGeometryDetElement::GetLocalTransformation() const
110 { return fLocalTransformation; }
111
112 /// Return the detection element transformation wrt world
113 inline const TGeoHMatrix* 
114 AliMUONGeometryDetElement::GetGlobalTransformation() const
115 { return fGlobalTransformation; }
116
117 #endif //ALI_MUON_GEOMETRY_DET_ELEMENT_H