]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDQAChecker.cxx
Fixes for bug #49914: Compilation breaks in trunk, and bug #48629: Trunk cannot read...
[u/mrichter/AliRoot.git] / TRD / AliTRDQAChecker.cxx
index f293e0bc8bfb2106331e6e2e8e1347cf3237f0f8..caf703bbc5f00a386afef572b446b400cc3c2550 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/* $Id$ */
-
-////////////////////////////////////////////////////////////////////////////
-//                                                                        //
-//  Checks the quality assurance by comparing with reference data         //
-//                                                                        //
-//  Author:                                                               //
-//    Sylwester Radomski (radomski@physi.uni-heidelberg.de)               //
-//                                                                        //
-////////////////////////////////////////////////////////////////////////////
+/*
+  Checks the quality assurance. 
+  By comparing with reference data
+  S.Radomski Uni-Heidelberg October 2007
+*/
 
 // --- ROOT system ---
 #include <TClass.h>
 
 // --- AliRoot header files ---
 #include "AliLog.h"
-#include "AliQA.h"
+#include "AliQAv1.h"
 #include "AliQAChecker.h"
-
 #include "AliTRDQAChecker.h"
 
 ClassImp(AliTRDQAChecker)
 
 //__________________________________________________________________
-AliTRDQAChecker& AliTRDQAChecker::operator = (const AliTRDQAChecker& qac )
-{
-  //
-  // Equal operator.
-  //
-
-  this->~AliTRDQAChecker();
-  new(this) AliTRDQAChecker(qac);
-  return *this;
-
-}
-