]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQAChecker.h
Fixing local structure disabled word, which had an incorrect value.
[u/mrichter/AliRoot.git] / ITS / AliITSQAChecker.h
CommitLineData
1507771f 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
3647765c 13// W.Ferrarese P.Cerello Mag 2008
1507771f 14//
15
16
17// --- ROOT system ---
18class TFile ;
19class TH2F ;
20
21// --- AliRoot header files ---
4e25ac79 22#include "AliQAv1.h"
1507771f 23#include "AliQACheckerBase.h"
5dfa9b71 24
25class AliITSQASPDChecker;
26class AliITSQASDDChecker;
27class AliITSQASSDChecker;
1507771f 28class AliITSLoader ;
29
30class AliITSQAChecker: public AliQACheckerBase {
31
5dfa9b71 32friend class AliITSQASPDChecker;
33friend class AliITSQASDDChecker;
34friend class AliITSQASSDChecker;
35
1507771f 36public:
5dfa9b71 37 AliITSQAChecker(Bool_t kMode = kFALSE, Short_t subDet = 0, Short_t ldc = 0) ; // ctor
8b51d296 38 AliITSQAChecker(const AliITSQAChecker& qac);
5047ab0a 39 AliITSQAChecker& operator=(const AliITSQAChecker& qac);
1507771f 40 virtual ~AliITSQAChecker() {;} // dtor
5dfa9b71 41 void SetMode(Bool_t kMode) { fkOnline = kMode; }
42 void SetSubDet(Short_t subdet) { fDet = subdet; }
43 void SetLDC(Short_t ldc) { fLDC = ldc; }
44 Bool_t GetMode() { return fkOnline; }
45 Short_t GetSubDet() { return fDet; }
46 Short_t GetLDC() { return fLDC; }
c71529b0 47 virtual void SetTaskOffset(Int_t SPDOffset, Int_t SDDOffset, Int_t SSDOffset);
80b9610c 48 virtual void SetHisto(Int_t SPDhisto, Int_t SDDhisto, Int_t SSDhisto);
614c7e17 49 virtual void SetDetTaskOffset(Int_t subdet=0,Int_t offset=0);
80b9610c 50 virtual void InitQACheckerLimits();
51 virtual void CreateStepForBit(Double_t histonumb,Double_t *steprange);
52 virtual void SetQA(AliQAv1::ALITASK_t index, Double_t * value) const;
53 virtual void SetDetHisto(Int_t subdet=0,Int_t histo=0);
54
55 virtual Int_t GetSPDHisto(){return fSPDHisto;} ;
56 virtual Int_t GetSDDHisto(){return fSDDHisto;} ;
57 virtual Int_t GetSSDHisto(){return fSSDHisto;} ;
58
5dfa9b71 59
f9e8ab3f 60protected:
eedcd663 61 virtual Double_t * Check(AliQAv1::ALITASK_t index, TObjArray ** list, AliDetectorRecoParam * recoParam) ;
614c7e17 62 virtual void SetSPDTaskOffset(Int_t SPDOffset){fSPDOffset = SPDOffset;} ;
63 virtual void SetSDDTaskOffset(Int_t SDDOffset){fSDDOffset = SDDOffset;} ;
64 virtual void SetSSDTaskOffset(Int_t SSDOffset){fSSDOffset = SSDOffset;} ;
65
80b9610c 66 virtual void SetSPDHisto(Int_t SPDhisto){fSPDHisto = SPDhisto;} ;
67 virtual void SetSDDHisto(Int_t SDDhisto){fSDDHisto = SDDhisto;} ;
68 virtual void SetSSDHisto(Int_t SSDhisto){fSSDHisto = SSDhisto;} ;
69
1507771f 70private:
5dfa9b71 71
72 Bool_t fkOnline;
73 Short_t fDet;
74 Short_t fLDC;
80b9610c 75
c71529b0 76 Int_t fSPDOffset; //starting point for the QACheck list
77 Int_t fSDDOffset;
78 Int_t fSSDOffset;
5dfa9b71 79
80b9610c 80 Int_t fSPDHisto;
81 Int_t fSDDHisto;
82 Int_t fSSDHisto;
83
5dfa9b71 84 AliITSQASPDChecker *fSPDChecker; // SPD Checker
85 AliITSQASDDChecker *fSDDChecker; // SDD Checker
86 AliITSQASSDChecker *fSSDChecker; // SSD Checker
87
88 ClassDef(AliITSQAChecker,3) // description
1507771f 89
90};
91
92#endif // AliITSQAChecker_H