]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONPointWithRef.h
TOF QA Task (F. Bellini)
[u/mrichter/AliRoot.git] / MUON / AliMUONPointWithRef.h
index 33fe4646fb6f8648b6242aeec12d051561c1d01c..c698601db10c35f00a61bfc9204f0f8f4949fb8d 100644 (file)
@@ -21,6 +21,7 @@ class AliMUONPointWithRef : public TObject
 public:
   AliMUONPointWithRef(Double_t x, Double_t y, Int_t ref);
   AliMUONPointWithRef();
+  /// Destructor
   virtual ~AliMUONPointWithRef() {}
   
   /// We are sortable
@@ -28,18 +29,21 @@ public:
 
   virtual Int_t        Compare(const TObject* obj) const;
 
+  /// Return x value
   Double_t X() const { return fX; }
   
+  /// Return y value
   Double_t Y() const { return fY; }
   
+  /// Return the index of the original point in some array
   Int_t Ref() const { return fRef; }
   
   void Print(Option_t* opt="") const;
   
 private:
-  Double_t fX; //< x value
-  Double_t fY; //< y value
-  Int_t fRef; //< index of the original point in some array
+  Double_t fX; ///< x value
+  Double_t fY; ///< y value
+  Int_t fRef; ///< index of the original point in some array
   
   ClassDef(AliMUONPointWithRef,1) // A point with an external integer reference
 };