]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONPointWithRef.cxx
DQM shifter histos based only on physics data
[u/mrichter/AliRoot.git] / MUON / AliMUONPointWithRef.cxx
index 2c38730034a04e8d2eb2da60c60177e3ad286437..9220b9c82c7f9e17334badc556d052020ae72a2d 100644 (file)
@@ -29,6 +29,8 @@
 #include "Riostream.h"
 #include "TString.h"
 
+using std::cout;
+using std::endl;
 //\cond CLASSIMP
 ClassImp(AliMUONPointWithRef)
 //\endcond
@@ -36,22 +38,22 @@ ClassImp(AliMUONPointWithRef)
 //_____________________________________________________________________________
 AliMUONPointWithRef::AliMUONPointWithRef() : fX(), fY(), fRef(-1)
 {
-  /// ctor
+  /// default ctor
 }
 
 //_____________________________________________________________________________
 AliMUONPointWithRef::AliMUONPointWithRef(Double_t x, Double_t y, Int_t ref)
 : fX(x), fY(y), fRef(ref)
 {
-  /// dtor
+  /// ctor
 }
 
 //_____________________________________________________________________________
 Int_t  
 AliMUONPointWithRef::Compare(const TObject* obj) const
 {
-  // Should serve to sort the vertical edges in ascending order, first on absissa, 
-  // then on ordinate
+  /// Should serve to sort the vertical edges in ascending order, first on absissa, 
+  /// then on ordinate
   
   if ( this == obj ) return 0;