]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDQAChecker.h
The present commit corresponds to an important change in the way the
[u/mrichter/AliRoot.git] / TRD / AliTRDQAChecker.h
index 392ba9853ce9a865a793507cd7e528550065f790..3572b3ff82a401c122197bb4ab5519b174e24bef 100644 (file)
@@ -1,23 +1,28 @@
-#ifndef ALITRDQUALASSCHECKER_H
-#define ALITRDQUALASSCHECKER_H
+#ifndef ALITRDQACHECKER_H
+#define ALITRDQACHECKER_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
-/*
-  Checks the quality assurance. 
-  By comparing with reference data
-  S. Radomski Uni-Heidelberg October 2007
-*/
+//////////////////////////////////////////////////////
+//
+//  Checks the quality assurance. 
+//  By comparing with reference data
+//  S. Radomski Uni-Heidelberg October 2007
+//
+///////////////////////////////////////////////////////
 
 
 // --- ROOT system ---
 class TFile ; 
 class TH1F ; 
 class TH1I ; 
+class TList ;
+class TObjArray;
 
 // --- Standard library ---
 
 // --- AliRoot header files ---
+#include "AliQA.h"
 #include "AliQACheckerBase.h"
 class AliTRDLoader ; 
 
@@ -26,13 +31,17 @@ class AliTRDQAChecker: public AliQACheckerBase {
 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() {;} // dtor
 
+  virtual Double_t * Check(AliQA::ALITASK_t /*index*/) {return NULL;}
+  virtual Double_t * Check(TList * /*list*/) {return NULL;}
+  virtual Double_t * Check(AliQA::ALITASK_t /*index*/, TObjArray ** /*list*/) {return NULL;}
+  virtual Double_t * Check(AliQA::ALITASK_t /*index*/, TNtupleD** /*nt*/)     {return NULL;}
+
 private:
   
   ClassDef(AliTRDQAChecker,1)  // description 
 
 };
 
-#endif // AliTRDQAChecker_H
+#endif // AliTRDQACHECKER_H