]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSQAChecker.h
Parameters for track finding in AliITStrackerSA added to AliITSRecoParam (F. Prino)
[u/mrichter/AliRoot.git] / ITS / AliITSQAChecker.h
1 #ifndef ALIITSQACHECKER_H
2 #define ALIITSQACHECKER_H
3 /* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7 /* $Id$ */
8
9 //
10 //  Checks the quality assurance. 
11 //  By comparing with reference data
12 //  INFN Torino
13 //  W. Ferrarese Oct 2007
14 //
15
16
17 // --- ROOT system ---
18 class TFile ; 
19 class TH2F ;  
20
21 // --- AliRoot header files ---
22 #include "AliQACheckerBase.h"
23 class AliITSLoader ; 
24
25 class AliITSQAChecker: public AliQACheckerBase {
26
27 public:
28   AliITSQAChecker() : AliQACheckerBase("ITS","SDD Quality Assurance Data Maker") {;}          // ctor
29   AliITSQAChecker(const AliITSQAChecker& qac) : AliQACheckerBase(qac.GetName(), qac.GetTitle()) {;} // cpy ctor   
30   AliITSQAChecker& operator = (const AliITSQAChecker& qac) ; //operator =
31   virtual ~AliITSQAChecker() {;} // dtor
32
33 private:
34   
35   ClassDef(AliITSQAChecker,1)  // description 
36
37 };
38
39 #endif // AliITSQAChecker_H