]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpZone.h
Updated/added comments for Doxygen
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpZone.h
index a8895a01a2b062014ad85ac83c323bb05adff0be..dfc05123e5de3c9298c7076f84aec2c7ea91d818 100755 (executable)
@@ -36,9 +36,11 @@ class AliMpZone : public TObject
 {
   public:
 #ifdef WITH_STL
+    /// Sub zone vector type
     typedef std::vector<AliMpSubZone*>  SubZoneVector;
 #endif
 #ifdef WITH_ROOT
+    /// Sub zone vector type
     typedef TObjArray  SubZoneVector;
 #endif
 
@@ -73,12 +75,15 @@ class AliMpZone : public TObject
 
 // inline functions
 
+/// Set pad dimensions
 inline  void AliMpZone::SetPadDimensions(const TVector2& padDimensions)
 { fPadDimensions = padDimensions; }
 
+/// Return ID
 inline  UInt_t  AliMpZone::GetID() const 
 { return fID; }
 
+/// Return pad dimensions
 inline  TVector2  AliMpZone::GetPadDimensions() const 
 { return fPadDimensions;}