]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONObjectPair.h
Error messages stored in the global raw-reader error log (Cvetan, Chiara)
[u/mrichter/AliRoot.git] / MUON / AliMUONObjectPair.h
index 9025e7a822097e78c981ddd005ae1b0574013901..de946d23f1b51bb22779db2abf66554832c6de24 100644 (file)
@@ -6,7 +6,7 @@
 
 // $Id$
 
-/// \ingroup base
+/// \ingroup calib
 /// \class AliMUONObjectPair
 /// \brief The equivalent of a std::pair<TObject*,TObject*> ;-)
 /// 
@@ -29,10 +29,14 @@ public:
   
   virtual ~AliMUONObjectPair();
 
+  /// Return the first element of the pair
   TObject* First() const { return fFirst; }
+  /// Return  the second element of the pair
   TObject* Second() const { return fSecond; }
 
+  /// Return the first element of the pair 
   TObject* Key() const { return fFirst; }
+  /// Return the second element of the pair 
   TObject* Value() const { return fSecond; }
 
   virtual void Copy(TObject& other) const;