]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDQAChecker.cxx
And some more cleanup
[u/mrichter/AliRoot.git] / TRD / AliTRDQAChecker.cxx
index 418aca0138a72ea549b66d8f7b554fead82b78a8..f293e0bc8bfb2106331e6e2e8e1347cf3237f0f8 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-  Checks the quality assurance. 
-  By comparing with reference data
-  S.Radomski Uni-Heidelberg October 2007
-*/
+/* $Id$ */
+
+////////////////////////////////////////////////////////////////////////////
+//                                                                        //
+//  Checks the quality assurance by comparing with reference data         //
+//                                                                        //
+//  Author:                                                               //
+//    Sylwester Radomski (radomski@physi.uni-heidelberg.de)               //
+//                                                                        //
+////////////////////////////////////////////////////////////////////////////
 
 // --- ROOT system ---
 #include <TClass.h>
@@ -33,6 +38,7 @@
 #include "AliLog.h"
 #include "AliQA.h"
 #include "AliQAChecker.h"
+
 #include "AliTRDQAChecker.h"
 
 ClassImp(AliTRDQAChecker)
@@ -40,9 +46,13 @@ ClassImp(AliTRDQAChecker)
 //__________________________________________________________________
 AliTRDQAChecker& AliTRDQAChecker::operator = (const AliTRDQAChecker& qac )
 {
+  //
   // Equal operator.
+  //
+
   this->~AliTRDQAChecker();
   new(this) AliTRDQAChecker(qac);
   return *this;
+
 }