]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONGeometryDetElement.h
track splitting studies with injected particles in MC
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometryDetElement.h
CommitLineData
e118b27e 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4// $Id$
692de412 5
6/// \ingroup geometry
7/// \class AliMUONGeometryDetElement
8c0e3489 8/// \brief Class for storing detection element transformations
692de412 9///
a9aad96e 10/// \author Ivana Hrivnacova, IPN Orsay
e118b27e 11
12#ifndef ALI_MUON_GEOMETRY_DET_ELEMENT_H
13#define ALI_MUON_GEOMETRY_DET_ELEMENT_H
14
15#include <TObject.h>
8c0e3489 16#include <TString.h>
e118b27e 17
8c0e3489 18class TGeoHMatrix;
e118b27e 19
20class AliMUONGeometryDetElement : public TObject
21{
22 public:
ccc0dd0a 23 AliMUONGeometryDetElement(Int_t detElemId);
24 AliMUONGeometryDetElement(Int_t detElemId, const TString& volumePath);
25 AliMUONGeometryDetElement(TRootIOCtor* /*ioCtor*/);
e118b27e 26 virtual ~AliMUONGeometryDetElement();
27
4bbe3e21 28 // static methods
31edb2d7 29 static const TString& GetDENamePrefix();
ccc0dd0a 30 static TString GetDEName(Int_t detElemId);
4bbe3e21 31
e118b27e 32 // methods
33 void Global2Local(
34 Float_t xg, Float_t yg, Float_t zg,
35 Float_t& xl, Float_t& yl, Float_t& zl) const;
36 void Global2Local(
37 Double_t xg, Double_t yg, Double_t zg,
38 Double_t& xl, Double_t& yl, Double_t& zl) const;
39
40 void Local2Global(
41 Float_t xl, Float_t yl, Float_t zl,
42 Float_t& xg, Float_t& yg, Float_t& zg) const;
43 void Local2Global(
44 Double_t xl, Double_t yl, Double_t zl,
45 Double_t& xg, Double_t& yg, Double_t& zg) const;
46 void PrintLocalTransform() const;
47 void PrintGlobalTransform() const;
48
49 // set methods
450ca6fb 50 void SetLocalTransformation(const TGeoHMatrix& transform, Bool_t warn = true);
51 void SetGlobalTransformation(const TGeoHMatrix& transform, Bool_t warn = true);
8c0e3489 52 void SetVolumePath(const TString& volumePath);
e118b27e 53
54 // get methods
8c0e3489 55 Int_t GetId() const;
e9a283f7 56 TString GetDEName() const;
8c0e3489 57 TString GetVolumePath() const;
58 TString GetVolumeName() const;
59 Int_t GetVolumeCopyNo() const;
60 const TGeoHMatrix* GetLocalTransformation() const;
61 const TGeoHMatrix* GetGlobalTransformation() const;
e118b27e 62
63 protected:
ccc0dd0a 64 /// Not implemented
65 AliMUONGeometryDetElement();
71a2d3aa 66 /// Not implemented
e118b27e 67 AliMUONGeometryDetElement(const AliMUONGeometryDetElement& rhs);
71a2d3aa 68 /// Not implemented
e118b27e 69 AliMUONGeometryDetElement& operator = (const AliMUONGeometryDetElement& rhs);
70
71 private:
72 // methods
8c0e3489 73 void PrintTransform(const TGeoHMatrix* transform) const;
e9a283f7 74
e118b27e 75 // data members
e9a283f7 76 TString fDEName; ///< detection element name
829425a5 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
e118b27e 81
8c0e3489 82 ClassDef(AliMUONGeometryDetElement,2) // MUON det element transformations
e118b27e 83};
84
85// inline functions
86
a9aad96e 87/// Set the full path of the aligned volume or envelope in geometry
8c0e3489 88inline void AliMUONGeometryDetElement::SetVolumePath(const TString& volumePath)
89{ fVolumePath = volumePath; }
90
a9aad96e 91/// Return detection element ID
e118b27e 92inline Int_t AliMUONGeometryDetElement::GetId() const
93{ return GetUniqueID(); }
94
e9a283f7 95/// Return detection element ID
96inline TString AliMUONGeometryDetElement::GetDEName() const
97{ return fDEName; }
98
a9aad96e 99/// Return the full path of the aligned volume or envelope in geometry
8c0e3489 100inline TString AliMUONGeometryDetElement::GetVolumePath() const
101{ return fVolumePath; }
e118b27e 102
a9aad96e 103/// Return the detection element transformation wrt module
8c0e3489 104inline const TGeoHMatrix*
e118b27e 105AliMUONGeometryDetElement::GetLocalTransformation() const
106{ return fLocalTransformation; }
107
a9aad96e 108/// Return the detection element transformation wrt world
8c0e3489 109inline const TGeoHMatrix*
e118b27e 110AliMUONGeometryDetElement::GetGlobalTransformation() const
111{ return fGlobalTransformation; }
112
113#endif //ALI_MUON_GEOMETRY_DET_ELEMENT_H