]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSQASDDDataMakerRec.h
Updating CMake files
[u/mrichter/AliRoot.git] / ITS / AliITSQASDDDataMakerRec.h
1 #ifndef AliITSQASDDDataMakerRec_H
2 #define AliITSQASDDDataMakerRec_H
3 /* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 //
7 //  Checks the quality assurance. 
8 //  By comparing with reference data
9 //  contained in a DB
10 //
11 //
12 //  W. Ferrarese + P. Cerello Feb 2008
13 //  M.Siciliano Aug 2008 QA RecPoints and HLT mode
14
15 /* $Id$ */
16
17 #include "AliQA.h"
18 #include "AliITSQADataMakerRec.h"
19
20 class TObjArray;
21 class AliITSDDLModuleMapSDD;
22 class AliITSHLTforSDD;
23 class AliITSQASDDDataMakerRec: public TObject {
24
25 public:
26   AliITSQASDDDataMakerRec(AliITSQADataMakerRec *aliITSQADataMakerRec, Bool_t kMode = kFALSE, Short_t ldc = 0);
27   AliITSQASDDDataMakerRec(const AliITSQASDDDataMakerRec& qadm);
28   AliITSQASDDDataMakerRec& operator = (const AliITSQASDDDataMakerRec& qac);
29   virtual void InitRaws();
30   virtual void InitRecPoints();
31   virtual void MakeRaws(AliRawReader *rawReader);
32   virtual void MakeRecPoints(TTree *clustersTree);
33   virtual void StartOfDetectorCycle();
34   virtual void EndOfDetectorCycle(AliQA::TASKINDEX_t task, TObjArray * list);
35
36
37   virtual ~AliITSQASDDDataMakerRec(); // dtor
38   Int_t GetOffset() { return fGenOffset; }
39   Int_t GetTaskHisto() { return fSDDhTask; }
40
41   void SetHLTMode(Bool_t khltmode=kFALSE){fHLTMode=khltmode;};
42   Bool_t GetHLTMode(){return fHLTMode;};
43   void SetHLTModeFromEnvironment();
44
45 private:
46
47   static const Int_t fgknSDDmodules = 260; // number of SDD modules
48   static const Int_t fgkmodoffset = 240;   // number of SPD modules
49   static const Int_t fgknAnode = 256;      // anode per half-module
50   static const Int_t fgknSide =2;          // side per module
51   static const Int_t fgkDDLIDshift = 0;    // necessary option until RawStream Table is complete
52   static const Int_t fgkLADDonLAY3 = 14;   // number of ladder on layer 3
53   static const Int_t fgkLADDonLAY4 = 22;   // number of ladder on layer 4
54
55   AliITSQADataMakerRec *fAliITSQADataMakerRec;// pointer to the main ctor
56   Bool_t  fkOnline;                           // online (1) or offline (0) use
57   Int_t   fLDC;                               // LDC number (0 for offline, 1 to 4 for online) 
58   Int_t   fSDDhTask;                          // number of histo booked for each Task SDD
59   Int_t   fGenOffset;                         // QAchecking offset       
60   Int_t   fTimeBinSize;                       // time bin width in number of clocks
61   AliITSDDLModuleMapSDD  *fDDLModuleMap;      // SDD Detector configuration for the decoding
62   Bool_t fHLTMode;                            // kTRUE mode C kFALSE mode A 
63                                               // Used in online mode only
64   AliITSHLTforSDD *fHLTSDD;                   // used for offline QA as the HLT mode flag
65   ClassDef(AliITSQASDDDataMakerRec,6)         // description 
66
67 };
68
69 #endif
70