]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSQASSDChecker.h
Comparing lists of noisy SSD chips (Panos)
[u/mrichter/AliRoot.git] / ITS / AliITSQASSDChecker.h
1 #ifndef ALIITSQASSDCHECKER_H
2 #define ALIITSQASSDCHECKER_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 //  P. Cerello - apr 2008
14 //
15
16
17 // --- ROOT system ---
18 class TFile ; 
19 class TH2F ;  
20
21 // --- AliRoot header files ---
22 #include "AliQAv1.h"
23 #include "AliQACheckerBase.h"
24 #include "AliITSQAChecker.h"
25 class AliITSLoader ; 
26
27 class AliITSQASSDChecker: public TObject {
28
29 public:
30   AliITSQASSDChecker():fSubDetOffset(0) {;}          // ctor
31   AliITSQASSDChecker& operator = (const AliITSQASSDChecker& qac) ; //operator =
32   virtual ~AliITSQASSDChecker() {;} // dtor
33   Double_t Check(AliQAv1::ALITASK_t /*index*/, TObjArray * /*list*/);
34
35   void CheckRaws(TH1 *);
36   void CheckRecPoints(TH1 *);
37   void SetTaskOffset(Int_t TaskOffset);
38
39
40 private:
41   
42   AliITSQASSDChecker(const AliITSQASSDChecker& /*qac*/):TObject(),fSubDetOffset(0) {;} // cpy ctor   
43   Int_t fSubDetOffset;            // checking operation starting point
44   ClassDef(AliITSQASSDChecker,1)  // description 
45
46 };
47
48 #endif // AliITSQASSDChecker_H