]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding comments (Christian)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 17 Jun 2007 21:08:28 +0000 (21:08 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 17 Jun 2007 21:08:28 +0000 (21:08 +0000)
MUON/mapping/AliMpLocalBoard.h

index b2bbc82f140509436d16328864abc687f8415687..d5c76a1a9784e2a54f5d1d70835eaf2fc095794c 100644 (file)
@@ -81,14 +81,23 @@ class AliMpLocalBoard : public TNamed
     AliMpIntPair GetPosition() const;
 
     // Id to be copy to or from
+    
+    /// Get Id from where the X input are copied
     Int_t GetInputXfrom() {return fInputXfrom;}
+    /// Get Id to where the X input are copied
     Int_t GetInputXto()   {return fInputXto;}
+    /// Get Id from where the Y input are copied
     Int_t GetInputYfrom() {return fInputYfrom;}
+    /// Get Id to where the Y input are copied
     Int_t GetInputYto()   {return fInputYto;}
 
+    /// Set Id from where the X input are copied 
     void SetInputXfrom(Int_t id) {fInputXfrom = id;}
+    /// Set Id to where the X input are copied    
     void SetInputXto(Int_t id)   {fInputXto   = id;}
+    /// Set Id from where the Y input are copied 
     void SetInputYfrom(Int_t id) {fInputYfrom = id;}
+    /// Set Id to where the Y input are copied 
     void SetInputYto(Int_t id)   {fInputYto   = id;}
 
  private: