]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpIntPair.h
In MUONChamberMaterialBudget.C
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpIntPair.h
index 63d237d23d207958571d99ed2edbc72f55e4683f..3787e4f3c7360497c895de012997ace0e172ca03 100755 (executable)
@@ -4,7 +4,7 @@
 // $Id$
 // $MpId: AliMpIntPair.h,v 1.6 2006/05/24 13:58:07 ivana Exp $
 
-/// \ingroup basic
+/// \ingroup core
 /// \class AliMpIntPair
 /// \brief A pair of integers.
 ///
@@ -58,9 +58,13 @@ class AliMpIntPair : public TObject
   void SetFirst(Int_t ix)  {fFirst=ix; fValidity=true; }
          /// Set second value 
   void SetSecond(Int_t iy) {fSecond=iy; fValidity=true;}
+         /// Set both first and second value
   void Set(Int_t ix, Int_t iy) { fFirst=ix; fSecond=iy; fValidity=true; }
   
+  //
   // TObject functions used for sorting in Root collections
+  //
+         /// Return true as Compare() function is implemented 
   virtual Bool_t  IsSortable() const {return kTRUE;}
   virtual Int_t   Compare(const TObject* obj) const;