]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCQAChecker.h
ProcessDCS() { return kFALSE; } is removed following the discussion at
[u/mrichter/AliRoot.git] / TPC / AliTPCQAChecker.h
1 #ifndef ALITPCQACHECKER_H
2 #define ALITPCQACHECKER_H
3 /* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7 /* $Id: $ */
8
9 /*
10   Based on AliPHOSQAChecker.
11   Checks the quality assurance by comparing with reference data.
12   P. Christiansen, Lund, January 2008.
13 */
14
15 // --- AliRoot header files ---
16 #include "AliQACheckerBase.h"
17
18 class AliTPCQAChecker: public AliQACheckerBase {
19
20 public:
21   AliTPCQAChecker() : AliQACheckerBase("TPC","TPC Quality Assurance Checker") {;}          // ctor
22   AliTPCQAChecker(const AliTPCQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
23   virtual ~AliTPCQAChecker() {;} // dtor
24
25 private:
26   
27   ClassDef(AliTPCQAChecker,1)  // TPC Quality Assurance Checker
28
29 };
30
31 #endif // AliTPCQAChecker_H