]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliRawReader.cxx
StepManager: immediate exit is not in a ITS sensitive volume
[u/mrichter/AliRoot.git] / RAW / AliRawReader.cxx
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
16 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
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 ///
37 ///////////////////////////////////////////////////////////////////////////////
38
39 #include <Riostream.h>
40 #include "AliRawReader.h"
41 #include "AliDAQ.h"
42 #include "AliLog.h"
43
44 ClassImp(AliRawReader)
45
46
47 AliRawReader::AliRawReader() :
48   fEquipmentIdsIn(NULL),
49   fEquipmentIdsOut(NULL),
50   fRequireHeader(kTRUE),
51   fHeader(NULL),
52   fCount(0),
53   fSelectEquipmentType(-1),
54   fSelectMinEquipmentId(-1),
55   fSelectMaxEquipmentId(-1),
56   fSkipInvalid(kFALSE),
57   fSelectEventType(-1),
58   fErrorCode(0),
59   fEventNumber(-1),
60   fErrorLogs("AliRawDataErrorLog",100)
61 {
62 // default constructor: initialize data members
63 }
64
65 Bool_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   }
95 }
96
97 AliRawReader::AliRawReader(const AliRawReader& rawReader) :
98   TObject(rawReader),
99   fEquipmentIdsIn(rawReader.fEquipmentIdsIn),
100   fEquipmentIdsOut(rawReader.fEquipmentIdsOut),
101   fRequireHeader(rawReader.fRequireHeader),
102   fHeader(rawReader.fHeader),
103   fCount(rawReader.fCount),
104   fSelectEquipmentType(rawReader.fSelectEquipmentType),
105   fSelectMinEquipmentId(rawReader.fSelectMinEquipmentId),
106   fSelectMaxEquipmentId(rawReader.fSelectMaxEquipmentId),
107   fSkipInvalid(rawReader.fSkipInvalid),
108   fSelectEventType(rawReader.fSelectEventType),
109   fErrorCode(0),
110   fEventNumber(-1),
111   fErrorLogs("AliRawDataErrorLog",100)
112 {
113 // copy constructor
114 }
115
116 AliRawReader& AliRawReader::operator = (const AliRawReader& rawReader)
117 {
118 // assignment operator
119   fEquipmentIdsIn = rawReader.fEquipmentIdsIn;
120   fEquipmentIdsOut = rawReader.fEquipmentIdsOut;
121
122   fHeader = rawReader.fHeader;
123   fCount = rawReader.fCount;
124
125   fSelectEquipmentType = rawReader.fSelectEquipmentType;
126   fSelectMinEquipmentId = rawReader.fSelectMinEquipmentId;
127   fSelectMaxEquipmentId = rawReader.fSelectMaxEquipmentId;
128   fSkipInvalid = rawReader.fSkipInvalid;
129   fSelectEventType = rawReader.fSelectEventType;
130
131   fErrorCode = rawReader.fErrorCode;
132
133   fEventNumber = rawReader.fEventNumber;
134   fErrorLogs = *((TClonesArray*)rawReader.fErrorLogs.Clone());
135
136   return *this;
137 }
138
139 AliRawReader::~AliRawReader()
140 {
141   // destructor
142   // delete the mapping arrays if
143   // initialized
144   if (fEquipmentIdsIn) delete fEquipmentIdsIn;
145   if (fEquipmentIdsOut) delete fEquipmentIdsOut;
146   fErrorLogs.Delete();
147 }
148
149 Int_t AliRawReader::GetMappedEquipmentId() const
150 {
151   if (!fEquipmentIdsIn || !fEquipmentIdsOut) {
152     Error("AliRawReader","equipment Ids mapping is not initialized !");
153     return GetEquipmentId();
154   }
155   Int_t equipmentId = GetEquipmentId();
156   for(Int_t iId = 0; iId < fEquipmentIdsIn->GetSize(); iId++) {
157     if (equipmentId == fEquipmentIdsIn->At(iId)) {
158       equipmentId = fEquipmentIdsOut->At(iId);
159       break;
160     }
161   }
162   return equipmentId;
163 }
164
165 Int_t AliRawReader::GetDetectorID() const
166 {
167   // Get the detector ID
168   // The list of detector IDs
169   // can be found in AliDAQ.h
170   Int_t equipmentId;
171   if (fEquipmentIdsIn && fEquipmentIdsIn)
172     equipmentId = GetMappedEquipmentId();
173   else
174     equipmentId = GetEquipmentId();
175
176   if (equipmentId >= 0) {
177     Int_t ddlIndex;
178     return AliDAQ::DetectorIDFromDdlID(equipmentId,ddlIndex);
179   }
180   else
181     return -1;
182 }
183
184 Int_t AliRawReader::GetDDLID() const
185 {
186   // Get the DDL ID (within one sub-detector)
187   // The list of detector IDs
188   // can be found in AliDAQ.h
189   Int_t equipmentId;
190   if (fEquipmentIdsIn && fEquipmentIdsIn)
191     equipmentId = GetMappedEquipmentId();
192   else
193     equipmentId = GetEquipmentId();
194
195   if (equipmentId >= 0) {
196     Int_t ddlIndex;
197     AliDAQ::DetectorIDFromDdlID(equipmentId,ddlIndex);
198     return ddlIndex;
199   }
200   else
201     return -1;
202 }
203
204 void AliRawReader::Select(const char *detectorName, Int_t minDDLID, Int_t maxDDLID)
205 {
206 // read only data of the detector with the given name and in the given
207 // range of DDLs (minDDLID <= DDLID <= maxDDLID).
208 // no selection is applied if a value < 0 is used.
209   Int_t detectorID = AliDAQ::DetectorID(detectorName);
210   if(detectorID >= 0)
211     Select(detectorID,minDDLID,maxDDLID);
212 }
213
214 void AliRawReader::Select(Int_t detectorID, Int_t minDDLID, Int_t maxDDLID)
215 {
216 // read only data of the detector with the given ID and in the given
217 // range of DDLs (minDDLID <= DDLID <= maxDDLID).
218 // no selection is applied if a value < 0 is used.
219
220   fSelectEquipmentType = -1;
221
222   if (minDDLID < 0)
223     fSelectMinEquipmentId = AliDAQ::DdlIDOffset(detectorID);
224   else
225     fSelectMinEquipmentId = AliDAQ::DdlID(detectorID,minDDLID);
226
227   if (maxDDLID < 0)
228     fSelectMaxEquipmentId = AliDAQ::DdlID(detectorID,AliDAQ::NumberOfDdls(detectorID)-1);
229   else
230     fSelectMaxEquipmentId = AliDAQ::DdlID(detectorID,maxDDLID);
231 }
232
233 void AliRawReader::SelectEquipment(Int_t equipmentType, 
234                                    Int_t minEquipmentId, Int_t maxEquipmentId)
235 {
236 // read only data of the equipment with the given type and in the given
237 // range of IDs (minEquipmentId <= EquipmentId <= maxEquipmentId).
238 // no selection is applied if a value < 0 is used.
239
240   fSelectEquipmentType = equipmentType;
241   fSelectMinEquipmentId = minEquipmentId;
242   fSelectMaxEquipmentId = maxEquipmentId;
243 }
244
245 void AliRawReader::SelectEvents(Int_t type)
246 {
247 // read only events with the given type.
248 // no selection is applied if a value < 0 is used.
249
250   fSelectEventType = type;
251 }
252
253 Bool_t AliRawReader::IsSelected() const
254 {
255 // apply the selection (if any)
256
257   if (fSkipInvalid && !IsValid()) return kFALSE;
258
259   if (fSelectEquipmentType >= 0)
260     if (GetEquipmentType() != fSelectEquipmentType) return kFALSE;
261
262   Int_t equipmentId;
263   if (fEquipmentIdsIn && fEquipmentIdsIn)
264     equipmentId = GetMappedEquipmentId();
265   else
266     equipmentId = GetEquipmentId();
267
268   if ((fSelectMinEquipmentId >= 0) && 
269       (equipmentId < fSelectMinEquipmentId))
270     return kFALSE;
271   if ((fSelectMaxEquipmentId >= 0) && 
272       (equipmentId > fSelectMaxEquipmentId))
273     return kFALSE;
274
275   return kTRUE;
276 }
277
278 Bool_t AliRawReader::IsEventSelected() const
279 {
280 // apply the event selection (if any)
281
282   if (fSelectEventType >= 0) {
283     if (GetType() != (UInt_t) fSelectEventType) return kFALSE;
284   }
285
286   return kTRUE;
287 }
288
289
290 Bool_t AliRawReader::ReadNextInt(UInt_t& data)
291 {
292 // reads the next 4 bytes at the current position
293 // returns kFALSE if the data could not be read
294
295   while (fCount == 0) {
296     if (!ReadHeader()) return kFALSE;
297   }
298   if (fCount < (Int_t) sizeof(data)) {
299     Error("ReadNextInt", 
300           "too few data left (%d bytes) to read an UInt_t!", fCount);
301     return kFALSE;
302   }
303   if (!ReadNext((UChar_t*) &data, sizeof(data))) {
304     Error("ReadNextInt", "could not read data!");
305     return kFALSE;
306   }
307   return kTRUE;
308 }
309
310 Bool_t AliRawReader::ReadNextShort(UShort_t& data)
311 {
312 // reads the next 2 bytes at the current position
313 // returns kFALSE if the data could not be read
314
315   while (fCount == 0) {
316     if (!ReadHeader()) return kFALSE;
317   }
318   if (fCount < (Int_t) sizeof(data)) {
319     Error("ReadNextShort", 
320           "too few data left (%d bytes) to read an UShort_t!", fCount);
321     return kFALSE;
322   }
323   if (!ReadNext((UChar_t*) &data, sizeof(data))) {
324     Error("ReadNextShort", "could not read data!");
325     return kFALSE;
326   }
327   return kTRUE;
328 }
329
330 Bool_t AliRawReader::ReadNextChar(UChar_t& data)
331 {
332 // reads the next 1 byte at the current stream position
333 // returns kFALSE if the data could not be read
334
335   while (fCount == 0) {
336     if (!ReadHeader()) return kFALSE;
337   }
338   if (!ReadNext((UChar_t*) &data, sizeof(data))) {
339     Error("ReadNextChar", "could not read data!");
340     return kFALSE;
341   }
342   return kTRUE;
343 }
344
345
346 Int_t AliRawReader::CheckData() const
347 {
348 // check the consistency of the data
349 // derived classes should overwrite the default method which returns 0 (no err)
350
351   return 0;
352 }
353
354
355 void AliRawReader::DumpData(Int_t limit)
356 {
357 // print the raw data
358 // if limit is not negative, only the first and last "limit" lines of raw data
359 // are printed
360
361   Reset();
362   if (!ReadHeader()) {
363     Error("DumpData", "no header");
364     return;
365   }
366   printf("header:\n"
367          " type = %d  run = %d  ", GetType(), GetRunNumber());
368   if (GetEventId()) {
369     printf("event = %8.8x %8.8x\n", GetEventId()[1], GetEventId()[0]);
370   } else {
371     printf("event = -------- --------\n");
372   }
373   if (GetTriggerPattern()) {
374     printf(" trigger = %8.8x %8.8x  ",
375            GetTriggerPattern()[1], GetTriggerPattern()[0]);
376   } else {
377     printf(" trigger = -------- --------  ");
378   }
379   if (GetDetectorPattern()) {
380     printf("detector = %8.8x\n", GetDetectorPattern()[0]);
381   } else {
382     printf("detector = --------\n");
383   }
384   if (GetAttributes()) {
385     printf(" attributes = %8.8x %8.8x %8.8x  ",
386            GetAttributes()[2], GetAttributes()[1], GetAttributes()[0]);
387   } else {
388     printf(" attributes = -------- -------- --------  ");
389   }
390   printf("GDC = %d\n", GetGDCId());
391   printf("\n");
392
393   do {
394     printf("-------------------------------------------------------------------------------\n");
395     printf("LDC = %d\n", GetLDCId());
396
397     printf("equipment:\n"
398            " size = %d  type = %d  id = %d\n",
399            GetEquipmentSize(), GetEquipmentType(), GetEquipmentId());
400     if (GetEquipmentAttributes()) {
401       printf(" attributes = %8.8x %8.8x %8.8x  ", GetEquipmentAttributes()[2],
402              GetEquipmentAttributes()[1], GetEquipmentAttributes()[0]);
403     } else {
404       printf(" attributes = -------- -------- --------  ");
405     }
406     printf("element size = %d\n", GetEquipmentElementSize());
407
408     printf("data header:\n"
409            " size = %d  version = %d  valid = %d  compression = %d\n",
410            GetDataSize(), GetVersion(), IsValid(), IsCompressed());
411
412     printf("\n");
413     if (limit == 0) continue;
414
415     Int_t size = GetDataSize();
416     char line[70];
417     for (Int_t i = 0; i < 70; i++) line[i] = ' ';
418     line[69] = '\0';
419     Int_t pos = 0;
420     Int_t max = 16;
421     UChar_t byte;
422
423     for (Int_t n = 0; n < size; n++) {
424       if (!ReadNextChar(byte)) {
425         Error("DumpData", "couldn't read byte number %d\n", n);
426         break;
427       }
428       if (pos >= max) {
429         printf("%8.8x  %s\n", n-pos, line);
430         for (Int_t i = 0; i < 70; i++) line[i] = ' ';
431         line[69] = '\0';
432         pos = 0;
433         if ((limit > 0) && (n/max == limit)) {
434           Int_t nContinue = ((size-1)/max+1-limit) * max;
435           if (nContinue > n) {
436             printf(" [skipping %d bytes]\n", nContinue-n);
437             n = nContinue-1;
438             continue;
439           }
440         }
441       }
442       Int_t offset = pos/4;
443       if ((byte > 0x20) && (byte < 0x7f)) {
444         line[pos+offset] = byte;
445       } else {
446         line[pos+offset] = '.';
447       }
448       char hex[3];
449       sprintf(hex, "%2.2x", byte);
450       line[max+max/4+3+2*pos+offset] = hex[0];
451       line[max+max/4+4+2*pos+offset] = hex[1];
452       pos++;
453     }
454
455     if (pos > 0) printf("%8.8x  %s\n", size-pos, line);
456     printf("\n");
457            
458   } while (ReadHeader());
459 }
460
461 void AliRawReader::AddErrorLog(AliRawDataErrorLog::ERawDataErrorLevel level,
462                                Int_t code,
463                                const char *message)
464 {
465   // Add a raw data error message to the list
466   // of raw-data decoding errors
467   if (fEventNumber < 0) {
468     AliError("No events have read so far! Impossible to add a raw data error log!");
469     return;
470   }
471   Int_t ddlId = GetDDLID();
472   if (ddlId < 0) {
473     AliError("No ddl raw data have been read so far! Impossible to add a raw data error log!");
474     return;
475   }
476
477   Int_t prevEventNumber = -1;
478   Int_t prevDdlId = -1;
479   Int_t prevErrorCode = -1;
480   AliRawDataErrorLog *prevLog = (AliRawDataErrorLog *)fErrorLogs.Last();
481   if (prevLog) {
482     prevEventNumber = prevLog->GetEventNumber();
483     prevDdlId       = prevLog->GetDdlID();
484     prevErrorCode   = prevLog->GetErrorCode();
485   }
486
487   if ((prevEventNumber != fEventNumber) ||
488       (prevDdlId != ddlId) ||
489       (prevErrorCode != code)) {
490     new (fErrorLogs[fErrorLogs.GetEntriesFast()])
491       AliRawDataErrorLog(fEventNumber,
492                          ddlId,
493                          level,
494                          code,
495                          message);
496   }
497   else
498     if (prevLog) prevLog->AddCount();
499
500 }