]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCQAChecker.h
Effective C++ + add RMS and MEAN to the analysis
[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   AliTPCQAChecker& operator = (const AliTPCQAChecker& qac) ;
24   virtual ~AliTPCQAChecker() {;} // dtor
25
26 private:
27   
28   ClassDef(AliTPCQAChecker,1)  // TPC Quality Assurance Checker
29
30 };
31
32 #endif // AliTPCQAChecker_H