]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASPDDataMakerRec.h
Fixes for bug #49914: Compilation breaks in trunk, and bug #48629: Trunk cannot read...
[u/mrichter/AliRoot.git] / ITS / AliITSQASPDDataMakerRec.h
CommitLineData
096292ae 1#ifndef AliITSQASPDDataMakerRec_H
2#define AliITSQASPDDataMakerRec_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. Nicassio D. Elia INFN Bari March 2008
14// maria.nicassio@ba.infn.it
15
3647765c 16/* $Id$ */
096292ae 17
18class TObjArray;
19class AliRawReader;
379510c2 20class AliITSRawStreamSPDErrorLog;
096292ae 21class AliITSQADataMakerRec;
4e25ac79 22class AliQAv1;
096292ae 23
24class AliITSQASPDDataMakerRec : public TObject {
25
26public:
379510c2 27 AliITSQASPDDataMakerRec(AliITSQADataMakerRec *aliITSQADataMakerRec, Bool_t kMode = kFALSE, Short_t ldc = 0,
28 AliITSRawStreamSPDErrorLog *aliITSRawStreamSPDErrorLog = NULL); //ctor
096292ae 29 AliITSQASPDDataMakerRec(const AliITSQASPDDataMakerRec& qadm);
30 AliITSQASPDDataMakerRec& operator = (const AliITSQASPDDataMakerRec& qac);
31 virtual void InitRaws();
32 virtual void InitRecPoints();
33 virtual void MakeRaws(AliRawReader *rawReader);
34 virtual void MakeRecPoints(TTree *clustersTree);
35 virtual void StartOfDetectorCycle();
4e25ac79 36 virtual void EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray * list);
096292ae 37 virtual ~AliITSQASPDDataMakerRec(); // dtor
4e25ac79 38 Int_t GetOffset(AliQAv1::TASKINDEX_t task);
39 Int_t GetTaskHisto(AliQAv1::TASKINDEX_t task);
096292ae 40
41private:
42
43 static const Int_t fgknSPDmodules = 240; //number of SPD modules
44 static const Int_t fgkLADDonLay1 = 80; //number of modules on layer 1
45 static const Int_t fgkLADDonLay2 = 160; //number of modules on layer 2
46
096292ae 47 AliITSQADataMakerRec *fAliITSQADataMakerRec;//pointer to the main ctor
48 Bool_t fkOnline; //online (1) or offline (0) use
49 Int_t fLDC; //LDC number (0 for offline, 1 to 4 for online)
7a0e5776 50 Int_t fSPDhRawsTask; // number of booked SPD histograms for the Raws Task
51 Int_t fSPDhRecPointsTask; // number of booked SPD histograms for the RecPoints Task
52 Int_t fGenRawsOffset; // QAchecking Raws offset
53 Int_t fGenRecPointsOffset; // QAchecking RecPoints offset
379510c2 54 AliITSRawStreamSPDErrorLog *fAdvLogger; // pointer to special error logger object
096292ae 55
7a0e5776 56 ClassDef(AliITSQASPDDataMakerRec,3) // description
096292ae 57
58};
59
60#endif