]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawStreamSPDErrorLog.h
New check for bad SDD modules (F. Prino)
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSPDErrorLog.h
CommitLineData
10bb1a34 1#ifndef ALIITSRAWSTREAMSPDERRORLOG_H
2#define ALIITSRAWSTREAMSPDERRORLOG_H
3
54a5b3aa 4/* $Id$ */
5
10bb1a34 6///////////////////////////////////////////////////////////////////////
7// Author: Henrik Tydesjo //
8// For easier handling of error messages from AliITSRawStreamSPD. //
9// The purpose of this class is to make possible the switch to the //
10// AliRoot raw data parsing routines in the onlinte monitoring //
11// programs, like SPD-MOOD, and still keep all the old functionality.//
12///////////////////////////////////////////////////////////////////////
13
14#include <TH1F.h>
15#include <TH2F.h>
16#include <TGraph.h>
17#include <TGText.h>
18
19class AliITSRawStreamSPDErrorLog : public TObject {
20
21 public:
22 AliITSRawStreamSPDErrorLog();
23 AliITSRawStreamSPDErrorLog(const AliITSRawStreamSPDErrorLog& logger);
24 AliITSRawStreamSPDErrorLog& operator=(const AliITSRawStreamSPDErrorLog& logger);
25 virtual ~AliITSRawStreamSPDErrorLog();
26
b696414b 27 enum {kNrErrorCodes = 17};
10bb1a34 28 enum {kTotal = 0};
29
30 void Reset();
31 void ProcessError(UInt_t errorCode, UInt_t eq, Int_t bytesRead, Int_t headersRead, const Char_t *errMess);
32 void AddMessage(const Char_t *errMess);
33 void SummarizeEvent(UInt_t eventNum);
34
35 UInt_t GetNrErrors(UInt_t errorCode, UInt_t eq);
36 UInt_t GetNrErrorsAllEq(UInt_t errorCode);
37 UInt_t GetNrErrorsTotal(UInt_t errorCode, UInt_t eq);
38 UInt_t GetNrErrorsTotalAllEq(UInt_t errorCode);
39
10bb1a34 40 void SetByteOffset(UInt_t eq, Int_t size);
41 void SuppressErrorMessages(UInt_t errorCode, Bool_t suppr = kTRUE);
42 void SuppressErrorEq(UInt_t eq, Bool_t suppr = kTRUE);
43
44 static UInt_t GetNrErrorCodes(){return kNrErrorCodes;}
45
46 TGraph* GetConsErrEvent(UInt_t errorCode, UInt_t eq);
478d804c 47 TGraph* GetConsErrPos(UInt_t errorCode, UInt_t eq);
10bb1a34 48 TH1F* GetConsErrType(UInt_t eq);
54a5b3aa 49 TH1F* GetConsErrFraction(UInt_t eq); // NB!!! Take care of deleting returned object later
50 TH1F* GetConsErrFractionUnScaled(UInt_t eq);
10bb1a34 51 TGText* GetText() {return fText;}
52
53
54 private:
55 Int_t fNErrors[kNrErrorCodes][20]; // number of errors for this event, for each code and eq
56 UInt_t fNEvents[20]; // number of events used, for each eq
10bb1a34 57 UInt_t fErrEventCounter[kNrErrorCodes][20]; // event counter used when filling graph
478d804c 58 UInt_t fErrPosCounter[kNrErrorCodes][20]; // event counter used when filling graph
59 UInt_t fErrPosTMPCounter[kNrErrorCodes][20]; // event counter used when filling graph
10bb1a34 60 Int_t fByteOffset[20]; // offset: how many bytes in the equipment header, for each eq
61 Bool_t fSuppressMess[kNrErrorCodes]; // do we suppress error messages for a specific error code?
62 Bool_t fSuppressEq[20]; // do we suppress error messages for a specific eq?
63
64 TGraph *fConsErrEvent[kNrErrorCodes][20]; // graphs to display number of errors found in each event
478d804c 65 TGraph *fConsErrPos[kNrErrorCodes][20]; // graphs to display number of bytes read for each error and event
66 TGraph *fConsErrPosTMP[kNrErrorCodes][20]; // temporary, to fill tgraph above for event
10bb1a34 67 TH1F *fConsErrType[20]; // histogram of how many errors for each error code
68 TH1F *fConsErrFraction[20]; // histogram of rate of events with errors for each error code
10bb1a34 69
70 TGText *fText; // text buffer for all events analyzed so far
71 TGText *fTextTmp[20]; // text buffer for this event (defined error codes)
72 TGText *fTextTmpGeneral; // text buffer for this event (general errors)
73
74 void InitHistograms();
75 void DeleteHistograms() const;
76
478d804c 77 ClassDef(AliITSRawStreamSPDErrorLog, 2);
10bb1a34 78};
79
80#endif