]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDQAChecker.h
Updated QA (Sylwester)
[u/mrichter/AliRoot.git] / TRD / AliTRDQAChecker.h
index 022765a744ecc50aa58e1cd1f2f35c223b7ef23d..f826900cab98c7e4d478e0fd2380d677b67f05db 100644 (file)
@@ -1,43 +1,44 @@
-#ifndef ALITRDQACHECKER_H
-#define ALITRDQACHECKER_H
+#ifndef ALITRDQUALASSCHECKER_H
+#define ALITRDQUALASSCHECKER_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
-/* $Id$ */
+//////////////////////////////////////////////////////
+//
+//  Checks the quality assurance. 
+//  By comparing with reference data
+//  S. Radomski Uni-Heidelberg October 2007
+//
+///////////////////////////////////////////////////////
 
-////////////////////////////////////////////////////////////////////////////
-//                                                                        //
-//  Checks the quality assurance by comparing with reference data         //
-//                                                                        //
-//  Author:                                                               //
-//    Sylwester Radomski (radomski@physi.uni-heidelberg.de)               //
-//                                                                        //
-////////////////////////////////////////////////////////////////////////////
 
 // --- ROOT system ---
 class TFile ; 
 class TH1F ; 
 class TH1I ; 
+class TList ;
 
 // --- Standard library ---
 
 // --- AliRoot header files ---
 #include "AliQACheckerBase.h"
-
 class AliTRDLoader ; 
 
 class AliTRDQAChecker: public AliQACheckerBase {
 
- public:
-
-  AliTRDQAChecker() : AliQACheckerBase("TRD","TRD Quality Assurance Data Maker") {;} 
-  AliTRDQAChecker(const AliTRDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} 
+public:
+  AliTRDQAChecker() : AliQACheckerBase("TRD","TRD Quality Assurance Data Maker") {;}          // ctor
+  AliTRDQAChecker(const AliTRDQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
   AliTRDQAChecker& operator = (const AliTRDQAChecker& qac) ;
-  virtual ~AliTRDQAChecker() {;} 
+  virtual ~AliTRDQAChecker() {;} // dtor
+
+  virtual const Double_t Check() {return 1.0;}
+  virtual const Double_t Check(TList * /*list*/) {return 1.0;}
 
 private:
   
-  ClassDef(AliTRDQAChecker,1)  // TRD QA checker
+  ClassDef(AliTRDQAChecker,1)  // description 
 
 };
-#endif
+
+#endif // AliTRDQAChecker_H