]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASDDDataMakerRec.h
Adding the new histograms filled for each mirror
[u/mrichter/AliRoot.git] / ITS / AliITSQASDDDataMakerRec.h
CommitLineData
ebdd0606 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
e41192d7 13// M.Siciliano Aug 2008 QA RecPoints and HLT mode
ebdd0606 14
15/* $Id$ */
16
17#include "AliQA.h"
18#include "AliITSQADataMakerRec.h"
19
20class TObjArray;
21class AliITSDDLModuleMapSDD;
e41192d7 22class AliITSHLTforSDD;
ebdd0606 23class AliITSQASDDDataMakerRec: public TObject {
24
25public:
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);
e41192d7 35
36
ebdd0606 37 virtual ~AliITSQASDDDataMakerRec(); // dtor
38 Int_t GetOffset() { return fGenOffset; }
39 Int_t GetTaskHisto() { return fSDDhTask; }
40
e41192d7 41 void SetHLTMode(Bool_t khltmode=kFALSE){fHLTMode=khltmode;};
42 Bool_t GetHLTMode(){return fHLTMode;};
43 void SetHLTModeFromEnvironment();
44
ebdd0606 45private:
46
e41192d7 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
e41192d7 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
ebdd0606 54
e41192d7 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
5a4e63d5 65 ClassDef(AliITSQASDDDataMakerRec,6) // description
ebdd0606 66
67};
68
69#endif
70