]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASSDDataMakerRec.h
Updates in SSD QA data maker (Panos)
[u/mrichter/AliRoot.git] / ITS / AliITSQASSDDataMakerRec.h
CommitLineData
8c823e5a 1#ifndef AliITSQASSDDataMakerRec_H
2#define AliITSQASSDDataMakerRec_H
3/* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
3647765c 6/* $Id$ */
f91768e0 7
8c823e5a 8//
9// Checks the quality assurance.
10// By comparing with reference data
11// contained in a DB
12// -------------------------------------------------------------
13// W. Ferrarese + P. Cerello Feb 2008
14// INFN Torino
15
16#include "AliQA.h"
17#include "AliITSQADataMakerRec.h"
f91768e0 18#include "AliQADataMakerRec.h"
8c823e5a 19
20class TObjArray;
21class TH1D;
88128115 22
8c823e5a 23class AliRawReader;
8c823e5a 24class AliITSQADataMakerRec;
88128115 25class AliCDBManager;
8c823e5a 26
27class AliITSQASSDDataMakerRec: public TObject {
28
29public:
30 AliITSQASSDDataMakerRec(AliITSQADataMakerRec *aliITSQADataMakerRec, Bool_t kMode = kFALSE, Int_t ldc=0); //ctor
31 AliITSQASSDDataMakerRec(const AliITSQASSDDataMakerRec& qadm);
32 AliITSQASSDDataMakerRec& operator = (const AliITSQASSDDataMakerRec& qac);
33 virtual void InitRaws();
34 virtual void InitRecPoints();
35 virtual void MakeRaws(AliRawReader *rawReader);
36 virtual void MakeRecPoints(TTree *clustersTree);
37 virtual void StartOfDetectorCycle();
92a357bf 38 virtual void EndOfDetectorCycle(AliQA::TASKINDEX_t task, TObjArray * list);
f91768e0 39 virtual ~AliITSQASSDDataMakerRec(); // dtor
c71529b0 40 Int_t GetOffset() { return fGenOffset; }
3647765c 41 Int_t GetTaskHisto() { return fSSDhTask; }
8c823e5a 42
f91768e0 43 private:
8c823e5a 44
88128115 45 void GetOccupancyStrip(TH1 *lHisto, Int_t *occupancyMatrix);
0730893d 46 Double_t GetOccupancyModule(TH1 *lHisto,
47 Int_t stripside,
48 Int_t mode,
49 Double_t threshold);
88128115 50 void MonitorOCDBObjects();
51
c6fba1d9 52 static const Int_t fgkNumOfLDCs = 3; //number of SSD LDCs
f91768e0 53 static const Int_t fgkNumOfDDLs = 16; //number of SSD DDLs
8c823e5a 54 static const Int_t fgkSSDMODULES = 1698; //total number of SSD modules
f91768e0 55 static const Int_t fgkSSDLADDERSLAYER5 = 34; //ladders on layer 5
56 static const Int_t fgkSSDLADDERSLAYER6 = 38; //ladders on layer 6
57 static const Int_t fgkSSDMODULESPERLADDERLAYER5 = 22; //modules per ladder - layer 5
58 static const Int_t fgkSSDMODULESPERLADDERLAYER6 = 25; //modules per ladder - layer 6
8c823e5a 59 static const Int_t fgkSSDMODULESLAYER5 = 748; //total number of SSD modules - layer5
60 static const Int_t fgkSSDMODULESLAYER6 = 950; //total number of SSD modules - layer6
f91768e0 61 static const Int_t fgkNumberOfPSideStrips = 768; //number of P-side strips
62
8c823e5a 63 AliITSQADataMakerRec *fAliITSQADataMakerRec; //pointer to the main ctor
e85e993e 64 Int_t fSSDEvent; //event counter
65 Int_t fSSDEventPerCycle; //event counter per cycle
8c823e5a 66 Bool_t fkOnline; //online (1) or offline (0) use
67 Int_t fLDC; //LDC number (0 for offline, 1 to 4 for online)
e85e993e 68 Int_t fSSDRawsOffset; //SSD raw data plot offset
88128115 69 Int_t fSSDRawsDAOffset; //SSD DA plot offset
e85e993e 70 Int_t fSSDRawsCommonLevelOffset; //Raw data QA - top level offset - histos used both online and offline
71 Int_t fSSDhTask; //number of histo booked for each SSD task
72 Int_t fGenOffset; //qachecking offset
73 TH1D *fHistSSDRawSignalModule[fgkSSDMODULES]; //raw signal vs strip number - SSD
74 Int_t fOccupancyMatrix[fgkSSDMODULES][2*fgkNumberOfPSideStrips]; //occupancy values per strip
75
88128115 76 AliCDBManager *fCDBManager; //CDB manager
8c823e5a 77
88128115 78 ClassDef(AliITSQASSDDataMakerRec,4) // description
8c823e5a 79};
80
81#endif