]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONGeometryModule.h
Updated comments (Raffaele)
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometryModule.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$ */
5// Revision of includes 07/05/2004
6
692de412 7/// \ingroup geometry
8/// \class AliMUONGeometryModule
9/// \brief Geometry parameters for detector module
10///
11/// Class for definition of the detector module parameters
12/// (the transformations of detection elements, mapping between
13/// sensitive volumes and detection elements).
14///
a9aad96e 15/// \author Ivana Hrivnacova, IPN Orsay
e118b27e 16
f29ba3e1 17#ifndef ALI_MUON_GEOMETRY_MODULE_H
18#define ALI_MUON_GEOMETRY_MODULE_H
e118b27e 19
fbdfcd24 20#include "AliMUONGeometryModuleTransformer.h"
21
e118b27e 22#include <TObject.h>
23#include <TString.h>
24
fbdfcd24 25class AliMUONGeometryEnvelope;
26class AliMUONGeometryEnvelopeStore;
27class AliMUONGeometryDetElement;
28class AliMUONGeometryStore;
29class AliMUONStringIntMap;
6cfb12b4 30
e118b27e 31class TGeoTranslation;
32class TGeoRotation;
33class TGeoCombiTrans;
34class TObjArray;
35class TArrayI;
36
e118b27e 37class AliMUONGeometryModule : public TObject
38{
39 public:
40 AliMUONGeometryModule(Int_t moduleId);
41 AliMUONGeometryModule();
42 virtual ~AliMUONGeometryModule();
43
e118b27e 44 // set methods
6cfb12b4 45 //
6cfb12b4 46 void SetTransformation(const TGeoCombiTrans& transform);
fbdfcd24 47 void SetVolumePath(const TString& volumePath);
48 void SetIsVirtual(Bool_t isVirtual);
e118b27e 49
50 void SetSensitiveVolume(Int_t volId);
51 void SetSensitiveVolume(const TString& name);
52 void SetAlign(Bool_t align);
53
54 // get methods
6cfb12b4 55 //
56 Bool_t IsVirtual() const;
57 Int_t GetModuleId() const;
fbdfcd24 58 TString GetVolumePath() const;
6cfb12b4 59
e118b27e 60 AliMUONGeometryDetElement* FindBySensitiveVolume(
61 const TString& volumePath) const;
e118b27e 62 Bool_t IsSensitiveVolume(Int_t volId) const;
63 Bool_t IsSensitiveVolume(const TString& volName) const;
64
6cfb12b4 65 AliMUONGeometryEnvelopeStore* GetEnvelopeStore() const;
fbdfcd24 66 AliMUONStringIntMap* GetSVMap() const;
6cfb12b4 67 AliMUONGeometryModuleTransformer* GetTransformer() const;
68
e118b27e 69 protected:
70 AliMUONGeometryModule(const AliMUONGeometryModule& rhs);
fbdfcd24 71 AliMUONGeometryModule& operator = (const AliMUONGeometryModule& rhs);
e118b27e 72
73 private:
74 // methods
75 Int_t GetSVIndex(Int_t svVolId) const;
76
77 // data members
829425a5 78 Bool_t fIsVirtual; ///< \brief true if module is not represented
79 /// by a real volume
80 Int_t fNofSVs; ///< number of sensitive volumes
81 TArrayI* fSVVolumeIds; ///< sensitive volumes IDs
82
83 AliMUONGeometryEnvelopeStore* fEnvelopes; ///< envelopes
84 AliMUONStringIntMap* fSVMap; ///< sensitive volumes map
85 AliMUONGeometryModuleTransformer* fTransformer;///< geometry transformations
e118b27e 86
fbdfcd24 87 ClassDef(AliMUONGeometryModule,4) // MUON geometry module class
e118b27e 88};
89
90// inline functions
91
a9aad96e 92/// Set virtuality (true if module is not represented by a real volume)
fbdfcd24 93inline void AliMUONGeometryModule::SetIsVirtual(Bool_t isVirtual)
94{ fIsVirtual = isVirtual; }
e118b27e 95
a9aad96e 96/// Return true if module is not represented by a real volume
cfbf2f7d 97inline Bool_t AliMUONGeometryModule::IsVirtual() const
98{ return fIsVirtual; }
99
a9aad96e 100/// Return module ID
e118b27e 101inline Int_t AliMUONGeometryModule::GetModuleId() const
6cfb12b4 102{ return fTransformer->GetModuleId(); }
e118b27e 103
a9aad96e 104/// Return the full path of aligned module volume or envelope in geometry
fbdfcd24 105inline TString AliMUONGeometryModule::GetVolumePath() const
106{ return fTransformer->GetVolumePath(); }
cfbf2f7d 107
a9aad96e 108/// Return envelopes associated with this module
6cfb12b4 109inline
110AliMUONGeometryEnvelopeStore* AliMUONGeometryModule::GetEnvelopeStore() const
e118b27e 111{ return fEnvelopes; }
112
a9aad96e 113/// Return sensitive volume map
6cfb12b4 114inline
fbdfcd24 115AliMUONStringIntMap* AliMUONGeometryModule::GetSVMap() const
e118b27e 116{ return fSVMap; }
117
a9aad96e 118/// Return transformer
6cfb12b4 119inline
120AliMUONGeometryModuleTransformer* AliMUONGeometryModule::GetTransformer() const
121{ return fTransformer; }
122
f29ba3e1 123#endif //ALI_MUON_GEOMETRY_MODULE_H