]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliRawReader.h
Code error is added to the raw data error log class
[u/mrichter/AliRoot.git] / RAW / AliRawReader.h
CommitLineData
a6e7b125 1#ifndef ALIRAWREADER_H
2#define ALIRAWREADER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
bea6b2a4 6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9///
10/// This is the base class for reading raw data.
11///
12///////////////////////////////////////////////////////////////////////////////
13
a6e7b125 14#include <TObject.h>
0cfe2438 15#include <TArrayI.h>
38cf12f3 16#include <TClonesArray.h>
17
18#include "AliRawDataErrorLog.h"
39f9963f 19#include "AliRawDataHeader.h"
8de97894 20
1fb5b4a8 21class AliRawEventHeaderBase;
a6e7b125 22
a6e7b125 23class AliRawReader: public TObject {
24 public :
8de97894 25 AliRawReader();
42d20574 26 AliRawReader(const AliRawReader& rawReader);
27 AliRawReader& operator = (const AliRawReader& rawReader);
0cfe2438 28 virtual ~AliRawReader();
8de97894 29
30 void Select(Int_t detectorID,
31 Int_t minDDLID = -1, Int_t maxDDLID = -1);
362c9d61 32 void Select(const char *detectorName,
33 Int_t minDDLID = -1, Int_t maxDDLID = -1);
f224de6c 34 void SelectEquipment(Int_t equipmentType,
35 Int_t minEquipmentId = -1,
36 Int_t maxEquipmentId = -1);
39f9963f 37 void SkipInvalid(Bool_t skip = kTRUE)
38 {fSkipInvalid = skip;};
dd9a70fe 39 void SelectEvents(Int_t type);
299738b9 40 virtual void RequireHeader(Bool_t required)
18882b3b 41 {fRequireHeader = required;};
a6e7b125 42
1fb5b4a8 43 virtual const AliRawEventHeaderBase* GetEventHeader() const {return NULL;};
44
42d20574 45 virtual UInt_t GetType() const = 0;
46 virtual UInt_t GetRunNumber() const = 0;
47 virtual const UInt_t* GetEventId() const = 0;
48 virtual const UInt_t* GetTriggerPattern() const = 0;
49 virtual const UInt_t* GetDetectorPattern() const = 0;
50 virtual const UInt_t* GetAttributes() const = 0;
e94ad92c 51 virtual const UInt_t* GetSubEventAttributes() const = 0;
c946ab02 52 virtual UInt_t GetLDCId() const = 0;
42d20574 53 virtual UInt_t GetGDCId() const = 0;
04fa961a 54
c946ab02 55 virtual Int_t GetEquipmentSize() const = 0;
56 virtual Int_t GetEquipmentType() const = 0;
57 virtual Int_t GetEquipmentId() const = 0;
0cfe2438 58 Int_t GetMappedEquipmentId() const;
59 Bool_t LoadEquipmentIdsMap(const char *fileName);
c946ab02 60 virtual const UInt_t* GetEquipmentAttributes() const = 0;
61 virtual Int_t GetEquipmentElementSize() const = 0;
299738b9 62 virtual Int_t GetEquipmentHeaderSize() const = 0;
a6e7b125 63
0cfe2438 64 Int_t GetDetectorID() const;
65 Int_t GetDDLID() const;
39f9963f 66
c946ab02 67 Int_t GetDataSize() const
527a1d3f 68 {if (fHeader) {
69 if (fHeader->fSize != 0xFFFFFFFF) return fHeader->fSize - sizeof(AliRawDataHeader);
299738b9 70 else return GetEquipmentSize() - GetEquipmentHeaderSize() - sizeof(AliRawDataHeader);
71 } else return GetEquipmentSize() - GetEquipmentHeaderSize();};
509a7696 72
c946ab02 73 Int_t GetVersion() const
39f9963f 74 {if (fHeader) return fHeader->fVersion; else return -1;};
75 Bool_t IsValid() const
76 {if (fHeader) return fHeader->TestAttribute(0);
77 else return kFALSE;};
c946ab02 78 Bool_t IsCompressed() const
39f9963f 79 {if (fHeader) return fHeader->TestAttribute(1);
c946ab02 80 else return kFALSE;};
c3408d7d 81 Bool_t TestBlockAttribute(Int_t index) const
82 {if (fHeader) return fHeader->TestAttribute(index);
83 else return kFALSE;};
84 UChar_t GetBlockAttributes() const
85 {if (fHeader) return fHeader->GetAttributes();
86 else return 0;};
f58b3254 87 UInt_t GetStatusBits() const
88 {if (fHeader) return fHeader->GetStatus();
89 else return 0;};
c3408d7d 90 const AliRawDataHeader* GetDataHeader() const
91 {return fHeader;}
c946ab02 92
93 virtual Bool_t ReadHeader() = 0;
8de97894 94 virtual Bool_t ReadNextData(UChar_t*& data) = 0;
95 virtual Bool_t ReadNextInt(UInt_t& data);
96 virtual Bool_t ReadNextShort(UShort_t& data);
97 virtual Bool_t ReadNextChar(UChar_t& data);
bf22797a 98 virtual Bool_t ReadNext(UChar_t* data, Int_t size) = 0;
8de97894 99
100 virtual Bool_t Reset() = 0;
a6e7b125 101
dd9a70fe 102 virtual Bool_t NextEvent() = 0;
103 virtual Bool_t RewindEvents() = 0;
104
39f9963f 105 enum {kErrMagic=1, kErrNoDataHeader=2,
106 kErrSize=4, kErrOutOfBounds=8};
b4857df7 107 virtual Int_t CheckData() const;
bea6b2a4 108 Int_t GetErrorCode() const {return fErrorCode;};
b4857df7 109
509a7696 110 void DumpData(Int_t limit = -1);
111
9fc249d9 112 void AddErrorLog(AliRawDataErrorLog::ERawDataErrorLevel level,
113 Int_t code,
38cf12f3 114 const char *message = NULL);
9fc249d9 115 void AddMinorErrorLog(Int_t code,
116 const char *message = NULL) {
117 return AddErrorLog(AliRawDataErrorLog::kMinor,code,message);
118 }
119 void AddMajorErrorLog(Int_t code,
120 const char *message = NULL) {
121 return AddErrorLog(AliRawDataErrorLog::kMajor,code,message);
122 }
123 void AddFatalErrorLog(Int_t code,
124 const char *message = NULL) {
125 return AddErrorLog(AliRawDataErrorLog::kFatal,code,message);
126 }
38cf12f3 127 Int_t GetNumberOfErrorLogs() const { return fErrorLogs.GetEntriesFast(); }
128 AliRawDataErrorLog *GetErrorLog(Int_t i) const {
129 return (AliRawDataErrorLog *)fErrorLogs.UncheckedAt(i);
130 }
131
a6e7b125 132 protected :
42d20574 133 Bool_t IsSelected() const;
dd9a70fe 134 Bool_t IsEventSelected() const;
a6e7b125 135
0cfe2438 136 TArrayI *fEquipmentIdsIn; // array of equipment Ids to be mapped
137 TArrayI *fEquipmentIdsOut; // array of mapped equipment Ids
18882b3b 138
0cfe2438 139 Bool_t fRequireHeader; // if false, data without header is accepted
140
141 AliRawDataHeader* fHeader; // current data header
142 Int_t fCount; // counter of bytes to be read for current DDL
a6e7b125 143
f224de6c 144 Int_t fSelectEquipmentType; // type of selected equipment (<0 = no selection)
145 Int_t fSelectMinEquipmentId; // minimal index of selected equipment (<0 = no selection)
146 Int_t fSelectMaxEquipmentId; // maximal index of selected equipment (<0 = no selection)
0cfe2438 147 Bool_t fSkipInvalid; // skip invalid data
148 Int_t fSelectEventType; // type of selected events (<0 = no selection)
8de97894 149
0cfe2438 150 Int_t fErrorCode; // code of last error
b4857df7 151
38cf12f3 152 Int_t fEventNumber; // current event number
153 TClonesArray fErrorLogs; // raw data decoding errors
154
a6e7b125 155 ClassDef(AliRawReader, 0) // base class for reading raw digits
156};
157
158#endif