]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliRawReader.cxx
Macro to calculate the resolution and the efficiency of chamber(s) (Nicolas)
[u/mrichter/AliRoot.git] / RAW / AliRawReader.cxx
CommitLineData
a6e7b125 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
bea6b2a4 16/* $Id$ */
17
a6e7b125 18///////////////////////////////////////////////////////////////////////////////
bea6b2a4 19///
20/// This is the base class for reading raw data.
21///
22/// The derived classes, which operate on concrete raw data formats,
23/// should implement
24/// - ReadHeader to read the next (data/equipment) header
25/// - ReadNextData to read the next raw data block (=1 DDL)
26/// - ReadNext to read a given number of bytes
27/// - several getters like GetType
28///
29/// Sequential access to the raw data is provided by the methods
30/// ReadHeader, ReadNextData, ReadNextInt, ReadNextShort, ReadNextChar
31///
32/// If only data from a specific detector (and a given range of DDL numbers)
33/// should be read, this can be achieved by the Select method.
34/// Several getters provide information about the current event and the
35/// current type of raw data.
36///
a6e7b125 37///////////////////////////////////////////////////////////////////////////////
38
0cfe2438 39#include <Riostream.h>
a6e7b125 40#include "AliRawReader.h"
362c9d61 41#include "AliDAQ.h"
38cf12f3 42#include "AliLog.h"
8de97894 43
a6e7b125 44ClassImp(AliRawReader)
45
46
c946ab02 47AliRawReader::AliRawReader() :
0cfe2438 48 fEquipmentIdsIn(NULL),
49 fEquipmentIdsOut(NULL),
18882b3b 50 fRequireHeader(kTRUE),
39f9963f 51 fHeader(NULL),
c946ab02 52 fCount(0),
f224de6c 53 fSelectEquipmentType(-1),
54 fSelectMinEquipmentId(-1),
55 fSelectMaxEquipmentId(-1),
39f9963f 56 fSkipInvalid(kFALSE),
dd9a70fe 57 fSelectEventType(-1),
38cf12f3 58 fErrorCode(0),
59 fEventNumber(-1),
60 fErrorLogs("AliRawDataErrorLog",100)
a6e7b125 61{
42d20574 62// default constructor: initialize data members
0cfe2438 63}
42d20574 64
0cfe2438 65Bool_t AliRawReader::LoadEquipmentIdsMap(const char *fileName)
66{
67 // Open the mapping file
68 // and load the mapping data
69 ifstream input(fileName);
70 if (input.is_open()) {
71 Warning("AliRawReader","Equipment ID mapping file is found !");
72 const Int_t kMaxDDL = 256;
73 fEquipmentIdsIn = new TArrayI(kMaxDDL);
74 fEquipmentIdsOut = new TArrayI(kMaxDDL);
75 Int_t equipIn, equipOut;
76 Int_t nIds = 0;
77 while (input >> equipIn >> equipOut) {
78 if (nIds >= kMaxDDL) {
79 Error("AliRawReader","Too many equipment Id mappings found ! Truncating the list !");
80 break;
81 }
82 fEquipmentIdsIn->AddAt(equipIn,nIds);
83 fEquipmentIdsOut->AddAt(equipOut,nIds);
84 nIds++;
85 }
86 fEquipmentIdsIn->Set(nIds);
87 fEquipmentIdsOut->Set(nIds);
88 input.close();
89 return kTRUE;
90 }
91 else {
92 Error("AliRawReader","equipment id map file is not found ! Skipping the mapping !");
93 return kFALSE;
94 }
a6e7b125 95}
96
42d20574 97AliRawReader::AliRawReader(const AliRawReader& rawReader) :
c946ab02 98 TObject(rawReader),
0cfe2438 99 fEquipmentIdsIn(rawReader.fEquipmentIdsIn),
100 fEquipmentIdsOut(rawReader.fEquipmentIdsOut),
18882b3b 101 fRequireHeader(rawReader.fRequireHeader),
39f9963f 102 fHeader(rawReader.fHeader),
c946ab02 103 fCount(rawReader.fCount),
f224de6c 104 fSelectEquipmentType(rawReader.fSelectEquipmentType),
105 fSelectMinEquipmentId(rawReader.fSelectMinEquipmentId),
106 fSelectMaxEquipmentId(rawReader.fSelectMaxEquipmentId),
39f9963f 107 fSkipInvalid(rawReader.fSkipInvalid),
dd9a70fe 108 fSelectEventType(rawReader.fSelectEventType),
38cf12f3 109 fErrorCode(0),
110 fEventNumber(-1),
111 fErrorLogs("AliRawDataErrorLog",100)
42d20574 112{
113// copy constructor
42d20574 114}
115
116AliRawReader& AliRawReader::operator = (const AliRawReader& rawReader)
117{
118// assignment operator
0cfe2438 119 fEquipmentIdsIn = rawReader.fEquipmentIdsIn;
120 fEquipmentIdsOut = rawReader.fEquipmentIdsOut;
42d20574 121
39f9963f 122 fHeader = rawReader.fHeader;
42d20574 123 fCount = rawReader.fCount;
124
39f9963f 125 fSelectEquipmentType = rawReader.fSelectEquipmentType;
126 fSelectMinEquipmentId = rawReader.fSelectMinEquipmentId;
127 fSelectMaxEquipmentId = rawReader.fSelectMaxEquipmentId;
128 fSkipInvalid = rawReader.fSkipInvalid;
dd9a70fe 129 fSelectEventType = rawReader.fSelectEventType;
42d20574 130
b4857df7 131 fErrorCode = rawReader.fErrorCode;
132
38cf12f3 133 fEventNumber = rawReader.fEventNumber;
134 fErrorLogs = *((TClonesArray*)rawReader.fErrorLogs.Clone());
135
42d20574 136 return *this;
137}
138
0cfe2438 139AliRawReader::~AliRawReader()
140{
141 // destructor
142 // delete the mapping arrays if
143 // initialized
144 if (fEquipmentIdsIn) delete fEquipmentIdsIn;
145 if (fEquipmentIdsOut) delete fEquipmentIdsOut;
146}
147
148Int_t AliRawReader::GetMappedEquipmentId() const
149{
150 if (!fEquipmentIdsIn || !fEquipmentIdsOut) {
151 Error("AliRawReader","equipment Ids mapping is not initialized !");
152 return GetEquipmentId();
153 }
154 Int_t equipmentId = GetEquipmentId();
155 for(Int_t iId = 0; iId < fEquipmentIdsIn->GetSize(); iId++) {
156 if (equipmentId == fEquipmentIdsIn->At(iId)) {
157 equipmentId = fEquipmentIdsOut->At(iId);
158 break;
159 }
160 }
161 return equipmentId;
162}
163
164Int_t AliRawReader::GetDetectorID() const
165{
166 // Get the detector ID
167 // The list of detector IDs
362c9d61 168 // can be found in AliDAQ.h
0cfe2438 169 Int_t equipmentId;
170 if (fEquipmentIdsIn && fEquipmentIdsIn)
171 equipmentId = GetMappedEquipmentId();
172 else
173 equipmentId = GetEquipmentId();
174
362c9d61 175 if (equipmentId >= 0) {
176 Int_t ddlIndex;
177 return AliDAQ::DetectorIDFromDdlID(equipmentId,ddlIndex);
178 }
0cfe2438 179 else
180 return -1;
181}
182
183Int_t AliRawReader::GetDDLID() const
184{
185 // Get the DDL ID (within one sub-detector)
186 // The list of detector IDs
362c9d61 187 // can be found in AliDAQ.h
0cfe2438 188 Int_t equipmentId;
189 if (fEquipmentIdsIn && fEquipmentIdsIn)
190 equipmentId = GetMappedEquipmentId();
191 else
192 equipmentId = GetEquipmentId();
193
362c9d61 194 if (equipmentId >= 0) {
195 Int_t ddlIndex;
196 AliDAQ::DetectorIDFromDdlID(equipmentId,ddlIndex);
197 return ddlIndex;
198 }
0cfe2438 199 else
200 return -1;
201}
8de97894 202
362c9d61 203void AliRawReader::Select(const char *detectorName, Int_t minDDLID, Int_t maxDDLID)
204{
205// read only data of the detector with the given name and in the given
206// range of DDLs (minDDLID <= DDLID <= maxDDLID).
207// no selection is applied if a value < 0 is used.
208 Int_t detectorID = AliDAQ::DetectorID(detectorName);
209 if(detectorID >= 0)
210 Select(detectorID,minDDLID,maxDDLID);
211}
212
8de97894 213void AliRawReader::Select(Int_t detectorID, Int_t minDDLID, Int_t maxDDLID)
a6e7b125 214{
8de97894 215// read only data of the detector with the given ID and in the given
f224de6c 216// range of DDLs (minDDLID <= DDLID <= maxDDLID).
8de97894 217// no selection is applied if a value < 0 is used.
a6e7b125 218
0cfe2438 219 fSelectEquipmentType = -1;
362c9d61 220
221 if (minDDLID < 0)
222 fSelectMinEquipmentId = AliDAQ::DdlIDOffset(detectorID);
223 else
224 fSelectMinEquipmentId = AliDAQ::DdlID(detectorID,minDDLID);
225
226 if (maxDDLID < 0)
227 fSelectMaxEquipmentId = AliDAQ::DdlID(detectorID,AliDAQ::NumberOfDdls(detectorID)-1);
228 else
229 fSelectMaxEquipmentId = AliDAQ::DdlID(detectorID,maxDDLID);
8de97894 230}
a6e7b125 231
f224de6c 232void AliRawReader::SelectEquipment(Int_t equipmentType,
233 Int_t minEquipmentId, Int_t maxEquipmentId)
234{
235// read only data of the equipment with the given type and in the given
236// range of IDs (minEquipmentId <= EquipmentId <= maxEquipmentId).
237// no selection is applied if a value < 0 is used.
238
239 fSelectEquipmentType = equipmentType;
240 fSelectMinEquipmentId = minEquipmentId;
241 fSelectMaxEquipmentId = maxEquipmentId;
242}
243
dd9a70fe 244void AliRawReader::SelectEvents(Int_t type)
245{
246// read only events with the given type.
247// no selection is applied if a value < 0 is used.
248
249 fSelectEventType = type;
250}
251
42d20574 252Bool_t AliRawReader::IsSelected() const
a6e7b125 253{
8de97894 254// apply the selection (if any)
255
39f9963f 256 if (fSkipInvalid && !IsValid()) return kFALSE;
f224de6c 257
0cfe2438 258 if (fSelectEquipmentType >= 0)
f224de6c 259 if (GetEquipmentType() != fSelectEquipmentType) return kFALSE;
0cfe2438 260
261 Int_t equipmentId;
262 if (fEquipmentIdsIn && fEquipmentIdsIn)
263 equipmentId = GetMappedEquipmentId();
264 else
265 equipmentId = GetEquipmentId();
266
267 if ((fSelectMinEquipmentId >= 0) &&
268 (equipmentId < fSelectMinEquipmentId))
269 return kFALSE;
270 if ((fSelectMaxEquipmentId >= 0) &&
271 (equipmentId > fSelectMaxEquipmentId))
272 return kFALSE;
f224de6c 273
8de97894 274 return kTRUE;
a6e7b125 275}
276
dd9a70fe 277Bool_t AliRawReader::IsEventSelected() const
278{
279// apply the event selection (if any)
280
281 if (fSelectEventType >= 0) {
282 if (GetType() != (UInt_t) fSelectEventType) return kFALSE;
283 }
284
285 return kTRUE;
286}
287
a6e7b125 288
a6e7b125 289Bool_t AliRawReader::ReadNextInt(UInt_t& data)
290{
8de97894 291// reads the next 4 bytes at the current position
292// returns kFALSE if the data could not be read
a6e7b125 293
294 while (fCount == 0) {
c946ab02 295 if (!ReadHeader()) return kFALSE;
a6e7b125 296 }
8de97894 297 if (fCount < (Int_t) sizeof(data)) {
298 Error("ReadNextInt",
299 "too few data left (%d bytes) to read an UInt_t!", fCount);
300 return kFALSE;
301 }
302 if (!ReadNext((UChar_t*) &data, sizeof(data))) {
a6e7b125 303 Error("ReadNextInt", "could not read data!");
304 return kFALSE;
305 }
a6e7b125 306 return kTRUE;
307}
308
309Bool_t AliRawReader::ReadNextShort(UShort_t& data)
310{
8de97894 311// reads the next 2 bytes at the current position
312// returns kFALSE if the data could not be read
a6e7b125 313
314 while (fCount == 0) {
c946ab02 315 if (!ReadHeader()) return kFALSE;
a6e7b125 316 }
8de97894 317 if (fCount < (Int_t) sizeof(data)) {
318 Error("ReadNextShort",
319 "too few data left (%d bytes) to read an UShort_t!", fCount);
320 return kFALSE;
321 }
322 if (!ReadNext((UChar_t*) &data, sizeof(data))) {
a6e7b125 323 Error("ReadNextShort", "could not read data!");
324 return kFALSE;
325 }
a6e7b125 326 return kTRUE;
327}
328
329Bool_t AliRawReader::ReadNextChar(UChar_t& data)
330{
331// reads the next 1 byte at the current stream position
8de97894 332// returns kFALSE if the data could not be read
a6e7b125 333
334 while (fCount == 0) {
c946ab02 335 if (!ReadHeader()) return kFALSE;
a6e7b125 336 }
8de97894 337 if (!ReadNext((UChar_t*) &data, sizeof(data))) {
a6e7b125 338 Error("ReadNextChar", "could not read data!");
339 return kFALSE;
340 }
a6e7b125 341 return kTRUE;
342}
343
b4857df7 344
345Int_t AliRawReader::CheckData() const
346{
347// check the consistency of the data
348// derived classes should overwrite the default method which returns 0 (no err)
349
350 return 0;
351}
352
509a7696 353
354void AliRawReader::DumpData(Int_t limit)
355{
356// print the raw data
357// if limit is not negative, only the first and last "limit" lines of raw data
358// are printed
359
360 Reset();
361 if (!ReadHeader()) {
362 Error("DumpData", "no header");
363 return;
364 }
365 printf("header:\n"
366 " type = %d run = %d ", GetType(), GetRunNumber());
367 if (GetEventId()) {
368 printf("event = %8.8x %8.8x\n", GetEventId()[1], GetEventId()[0]);
369 } else {
370 printf("event = -------- --------\n");
371 }
372 if (GetTriggerPattern()) {
373 printf(" trigger = %8.8x %8.8x ",
374 GetTriggerPattern()[1], GetTriggerPattern()[0]);
375 } else {
376 printf(" trigger = -------- -------- ");
377 }
378 if (GetDetectorPattern()) {
379 printf("detector = %8.8x\n", GetDetectorPattern()[0]);
380 } else {
381 printf("detector = --------\n");
382 }
383 if (GetAttributes()) {
384 printf(" attributes = %8.8x %8.8x %8.8x ",
385 GetAttributes()[2], GetAttributes()[1], GetAttributes()[0]);
386 } else {
387 printf(" attributes = -------- -------- -------- ");
388 }
389 printf("GDC = %d\n", GetGDCId());
390 printf("\n");
391
392 do {
393 printf("-------------------------------------------------------------------------------\n");
394 printf("LDC = %d\n", GetLDCId());
395
396 printf("equipment:\n"
397 " size = %d type = %d id = %d\n",
398 GetEquipmentSize(), GetEquipmentType(), GetEquipmentId());
399 if (GetEquipmentAttributes()) {
400 printf(" attributes = %8.8x %8.8x %8.8x ", GetEquipmentAttributes()[2],
401 GetEquipmentAttributes()[1], GetEquipmentAttributes()[0]);
402 } else {
403 printf(" attributes = -------- -------- -------- ");
404 }
405 printf("element size = %d\n", GetEquipmentElementSize());
406
39f9963f 407 printf("data header:\n"
408 " size = %d version = %d valid = %d compression = %d\n",
409 GetDataSize(), GetVersion(), IsValid(), IsCompressed());
509a7696 410
411 printf("\n");
412 if (limit == 0) continue;
413
414 Int_t size = GetDataSize();
415 char line[70];
416 for (Int_t i = 0; i < 70; i++) line[i] = ' ';
417 line[69] = '\0';
418 Int_t pos = 0;
419 Int_t max = 16;
420 UChar_t byte;
421
422 for (Int_t n = 0; n < size; n++) {
423 if (!ReadNextChar(byte)) {
424 Error("DumpData", "couldn't read byte number %d\n", n);
425 break;
426 }
427 if (pos >= max) {
428 printf("%8.8x %s\n", n-pos, line);
429 for (Int_t i = 0; i < 70; i++) line[i] = ' ';
430 line[69] = '\0';
431 pos = 0;
432 if ((limit > 0) && (n/max == limit)) {
433 Int_t nContinue = ((size-1)/max+1-limit) * max;
434 if (nContinue > n) {
435 printf(" [skipping %d bytes]\n", nContinue-n);
436 n = nContinue-1;
437 continue;
438 }
439 }
440 }
441 Int_t offset = pos/4;
442 if ((byte > 0x20) && (byte < 0x7f)) {
443 line[pos+offset] = byte;
444 } else {
445 line[pos+offset] = '.';
446 }
447 char hex[3];
448 sprintf(hex, "%2.2x", byte);
449 line[max+max/4+3+2*pos+offset] = hex[0];
450 line[max+max/4+4+2*pos+offset] = hex[1];
451 pos++;
452 }
453
454 if (pos > 0) printf("%8.8x %s\n", size-pos, line);
455 printf("\n");
456
457 } while (ReadHeader());
458}
38cf12f3 459
460void AliRawReader::AddErrorLog(AliRawDataErrorLog::ERawDataErrorType type,
461 const char *message)
462{
463 // Add a raw data error message to the list
464 // of raw-data decoding errors
465 if (fEventNumber < 0) {
466 AliError("No events have read so far! Impossible to add a raw data error log!");
467 return;
468 }
469 Int_t ddlId = GetDDLID();
470 if (ddlId < 0) {
471 AliError("No ddl raw data have been read so far! Impossible to add a raw data error log!");
472 return;
473 }
474
475 new (fErrorLogs[fErrorLogs.GetEntriesFast()])
476 AliRawDataErrorLog(fEventNumber,
477 ddlId,
478 type,
479 message);
480}