]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCQAChecker.h
Removed compiler warnings
[u/mrichter/AliRoot.git] / TPC / AliTPCQAChecker.h
CommitLineData
44f32dd2 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
18class AliTPCQAChecker: public AliQACheckerBase {
19
20public:
21 AliTPCQAChecker() : AliQACheckerBase("TPC","TPC Quality Assurance Checker") {;} // ctor
22 AliTPCQAChecker(const AliTPCQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor
44f32dd2 23 virtual ~AliTPCQAChecker() {;} // dtor
24
25private:
26
27 ClassDef(AliTPCQAChecker,1) // TPC Quality Assurance Checker
28
29};
30
31#endif // AliTPCQAChecker_H