]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONObjectPair.h
Adding code to patch St1 HV mapping
[u/mrichter/AliRoot.git] / MUON / AliMUONObjectPair.h
index 9025e7a822097e78c981ddd005ae1b0574013901..8343bb3cac127e52f5c4c0c856d1ee01315abd55 100644 (file)
@@ -6,7 +6,7 @@
 
 // $Id$
 
-/// \ingroup base
+/// \ingroup core
 /// \class AliMUONObjectPair
 /// \brief The equivalent of a std::pair<TObject*,TObject*> ;-)
 /// 
@@ -29,14 +29,22 @@ 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;
   
+  virtual void Print(Option_t* opt="") const;
+  
+  virtual void Clear(Option_t* opt="");
+  
 private:
 
   TObject* fFirst; ///< first element of the pair