]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliRawReader.cxx
Compatibility with the Root trunk
[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 <TClass.h>
40 #include <TPluginManager.h>
41 #include <TROOT.h>
42 #include <TInterpreter.h>
43 #include <TSystem.h>
44 #include <TPRegexp.h>
45 #include <THashList.h>
46
47 #include <Riostream.h>
48 #include "AliRawReader.h"
49 #include "AliRawReaderFile.h"
50 #include "AliRawReaderDate.h"
51 #include "AliRawReaderRoot.h"
52 #include "AliRawReaderChain.h"
53 #include "AliDAQ.h"
54 #include "AliLog.h"
55
56 using std::ifstream;
57 ClassImp(AliRawReader)
58
59
60 AliRawReader::AliRawReader() :
61   fEquipmentIdsIn(NULL),
62   fEquipmentIdsOut(NULL),
63   fRequireHeader(kTRUE),
64   fHeader(NULL),
65   fCount(0),
66   fSelectEquipmentType(-1),
67   fSelectMinEquipmentId(-1),
68   fSelectMaxEquipmentId(-1),
69   fSkipInvalid(kFALSE),
70   fSelectEventType(-1),
71   fSelectTriggerMask(0),
72   fSelectTriggerExpr(),
73   fErrorCode(0),
74   fEventNumber(-1),
75   fErrorLogs("AliRawDataErrorLog",100),
76   fHeaderSwapped(NULL),
77   fIsValid(kTRUE),
78   fIsTriggerClassLoaded(kFALSE)
79 {
80 // default constructor: initialize data members
81 // Allocate the swapped header in case of Mac
82 #ifndef R__BYTESWAP
83   fHeaderSwapped=new AliRawDataHeader();
84 #endif
85 }
86
87 Bool_t AliRawReader::LoadEquipmentIdsMap(const char *fileName)
88 {
89   // Open the mapping file
90   // and load the mapping data
91   ifstream input(fileName);
92   if (input.is_open()) {
93     Warning("AliRawReader","Equipment ID mapping file is found !");
94     const Int_t kMaxDDL = 256;
95     fEquipmentIdsIn = new TArrayI(kMaxDDL);
96     fEquipmentIdsOut = new TArrayI(kMaxDDL);
97     Int_t equipIn, equipOut;
98     Int_t nIds = 0;
99     while (input >> equipIn >> equipOut) {
100       if (nIds >= kMaxDDL) {
101         Error("AliRawReader","Too many equipment Id mappings found ! Truncating the list !");
102         break;
103       }
104       fEquipmentIdsIn->AddAt(equipIn,nIds); 
105       fEquipmentIdsOut->AddAt(equipOut,nIds);
106       nIds++;
107     }
108     fEquipmentIdsIn->Set(nIds);
109     fEquipmentIdsOut->Set(nIds);
110     input.close();
111     return kTRUE;
112   }
113   else {
114     Error("AliRawReader","equipment id map file is not found ! Skipping the mapping !");
115     return kFALSE;
116   }
117 }
118
119 AliRawReader::AliRawReader(const AliRawReader& rawReader) :
120   TObject(rawReader),
121   fEquipmentIdsIn(rawReader.fEquipmentIdsIn),
122   fEquipmentIdsOut(rawReader.fEquipmentIdsOut),
123   fRequireHeader(rawReader.fRequireHeader),
124   fHeader(rawReader.fHeader),
125   fCount(rawReader.fCount),
126   fSelectEquipmentType(rawReader.fSelectEquipmentType),
127   fSelectMinEquipmentId(rawReader.fSelectMinEquipmentId),
128   fSelectMaxEquipmentId(rawReader.fSelectMaxEquipmentId),
129   fSkipInvalid(rawReader.fSkipInvalid),
130   fSelectEventType(rawReader.fSelectEventType),
131   fSelectTriggerMask(rawReader.fSelectTriggerMask),
132   fSelectTriggerExpr(rawReader.fSelectTriggerExpr),
133   fErrorCode(0),
134   fEventNumber(-1),
135   fErrorLogs("AliRawDataErrorLog",100),
136   fHeaderSwapped(NULL),
137   fIsValid(rawReader.fIsValid),
138   fIsTriggerClassLoaded(rawReader.fIsTriggerClassLoaded)
139 {
140 // copy constructor
141 // Allocate the swapped header in case of Mac
142 #ifndef R__BYTESWAP
143   fHeaderSwapped=new AliRawDataHeader(*rawReader.fHeaderSwapped);
144 #endif
145 }
146
147 AliRawReader& AliRawReader::operator = (const AliRawReader& rawReader)
148 {
149 // assignment operator
150   if(&rawReader == this) return *this;
151   fEquipmentIdsIn = rawReader.fEquipmentIdsIn;
152   fEquipmentIdsOut = rawReader.fEquipmentIdsOut;
153
154   fHeader = rawReader.fHeader;
155   fCount = rawReader.fCount;
156
157   fSelectEquipmentType = rawReader.fSelectEquipmentType;
158   fSelectMinEquipmentId = rawReader.fSelectMinEquipmentId;
159   fSelectMaxEquipmentId = rawReader.fSelectMaxEquipmentId;
160   fSkipInvalid = rawReader.fSkipInvalid;
161   fSelectEventType = rawReader.fSelectEventType;
162   fSelectTriggerMask = rawReader.fSelectTriggerMask;
163   fSelectTriggerExpr = rawReader.fSelectTriggerExpr;
164
165   fErrorCode = rawReader.fErrorCode;
166
167   fEventNumber = rawReader.fEventNumber;
168   fErrorLogs = *((TClonesArray*)rawReader.fErrorLogs.Clone());
169
170   fIsValid = rawReader.fIsValid;
171   fIsTriggerClassLoaded = rawReader.fIsTriggerClassLoaded;
172
173   return *this;
174 }
175
176 AliRawReader::~AliRawReader()
177 {
178   // destructor
179   // delete the mapping arrays if
180   // initialized
181   if (fEquipmentIdsIn) delete fEquipmentIdsIn;
182   if (fEquipmentIdsOut) delete fEquipmentIdsOut;
183   fErrorLogs.Delete();
184   if (fHeaderSwapped) delete fHeaderSwapped;
185 }
186
187 AliRawReader* AliRawReader::Create(const char *uri)
188 {
189   // RawReader's factory
190   // It instantiate corresponding raw-reader implementation class object
191   // depending on the URI provided
192   // Normal URIs point to files, while the URI starting with
193   // 'mem://:' or 'mem://<filename>' will create
194   // AliRawReaderDateOnline object which is supposed to be used
195   // in the online reconstruction
196
197   TString strURI = uri;
198
199   if (strURI.IsNull()) {
200     AliWarningClass("No raw-reader created");
201     return NULL;
202   }
203
204   TObjArray *fields = strURI.Tokenize("?");
205   TString &fileURI = ((TObjString*)fields->At(0))->String();
206
207   AliRawReader *rawReader = NULL;
208   if (fileURI.BeginsWith("mem://") || fileURI.BeginsWith("^")) {
209     if (fileURI.BeginsWith("mem://")) fileURI.ReplaceAll("mem://","");
210     AliInfoClass(Form("Creating raw-reader in order to read events in shared memory (option=%s)",fileURI.Data()));
211
212     TPluginManager* pluginManager = gROOT->GetPluginManager();
213     TString rawReaderName = "AliRawReaderDateOnline";
214     TPluginHandler* pluginHandler = pluginManager->FindHandler("AliRawReader", "online");
215     // if not, add a plugin for it
216     if (!pluginHandler) {
217       pluginManager->AddHandler("AliRawReader", "online", 
218                                 "AliRawReaderDateOnline", "RAWDatarecOnline", "AliRawReaderDateOnline(const char*)");
219       pluginHandler = pluginManager->FindHandler("AliRawReader", "online");
220     }
221     if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) {
222       rawReader = (AliRawReader*)pluginHandler->ExecPlugin(1,fileURI.Data());
223     }
224     else {
225       delete fields;
226       return NULL;
227     }
228   }
229   else if (fileURI.BeginsWith("amore://")) {
230     // A special raw-data URL used in case
231     // the raw-data reading is steered from
232     // ouside, i.e. from AMORE
233     fileURI.ReplaceAll("amore://","");
234     AliInfoClass("Creating raw-reader in order to read events sent by AMORE");
235     rawReader = new AliRawReaderDate((void *)NULL);
236   }
237   else if (fileURI.BeginsWith("collection://")) {
238     fileURI.ReplaceAll("collection://","");
239     AliInfoClass(Form("Creating raw-reader in order to read raw-data files collection defined in %s",fileURI.Data()));
240     rawReader = new AliRawReaderChain(fileURI);
241   }
242   else if (fileURI.BeginsWith("raw://run")) {
243     fileURI.ReplaceAll("raw://run","");
244     if (fileURI.IsDigit()) {
245       rawReader = new AliRawReaderChain(fileURI.Atoi());
246     }
247     else {
248       AliErrorClass(Form("Invalid syntax: %s",fileURI.Data()));
249       fields->Delete();
250       return NULL;
251     }
252   }
253   else {
254     AliInfoClass(Form("Creating raw-reader in order to read raw-data file: %s",fileURI.Data()));
255     TString filename(gSystem->ExpandPathName(fileURI.Data()));
256     if (filename.EndsWith("/")) {
257       rawReader = new AliRawReaderFile(filename);
258     } else if (filename.EndsWith(".root")) {
259       rawReader = new AliRawReaderRoot(filename);
260     } else {
261       rawReader = new AliRawReaderDate(filename);
262     }
263   }
264
265   if (!rawReader->IsRawReaderValid()) {
266     AliErrorClass(Form("Raw-reader is invalid - check the input URI (%s)",fileURI.Data()));
267     delete rawReader;
268     fields->Delete();
269     delete fields;
270     return NULL;
271   }
272
273   // Now apply event selection criteria (if specified)
274   if (fields->GetEntries() > 1) {
275     Int_t eventType = -1;
276     ULong64_t triggerMask = 0;
277     TString triggerExpr;
278     for(Int_t i = 1; i < fields->GetEntries(); i++) {
279       if (!fields->At(i)) continue;
280       TString &option = ((TObjString*)fields->At(i))->String();
281       if (option.BeginsWith("EventType=",TString::kIgnoreCase)) {
282         option.ReplaceAll("EventType=","");
283         eventType = option.Atoi();
284         continue;
285       }
286       if (option.BeginsWith("Trigger=",TString::kIgnoreCase)) {
287         option.ReplaceAll("Trigger=","");
288         if (option.IsDigit()) {
289           triggerMask = option.Atoll();
290         }
291         else {
292           triggerExpr = option.Data();
293         }
294         continue;
295       }
296       AliWarningClass(Form("Ignoring invalid event selection option: %s",option.Data()));
297     }
298     AliInfoClass(Form("Event selection criteria specified:   eventype=%d   trigger mask=%llx   trigger expression=%s",
299                  eventType,triggerMask,triggerExpr.Data()));
300     rawReader->SelectEvents(eventType,triggerMask,triggerExpr.Data());
301   }
302
303   fields->Delete();
304   delete fields;
305
306   return rawReader;
307 }
308
309 Int_t AliRawReader::GetMappedEquipmentId() const
310 {
311   if (!fEquipmentIdsIn || !fEquipmentIdsOut) {
312     Error("AliRawReader","equipment Ids mapping is not initialized !");
313     return GetEquipmentId();
314   }
315   Int_t equipmentId = GetEquipmentId();
316   for(Int_t iId = 0; iId < fEquipmentIdsIn->GetSize(); iId++) {
317     if (equipmentId == fEquipmentIdsIn->At(iId)) {
318       equipmentId = fEquipmentIdsOut->At(iId);
319       break;
320     }
321   }
322   return equipmentId;
323 }
324
325 Int_t AliRawReader::GetDetectorID() const
326 {
327   // Get the detector ID
328   // The list of detector IDs
329   // can be found in AliDAQ.h
330   Int_t equipmentId;
331   if (fEquipmentIdsIn && fEquipmentIdsIn)
332     equipmentId = GetMappedEquipmentId();
333   else
334     equipmentId = GetEquipmentId();
335
336   if (equipmentId >= 0) {
337     Int_t ddlIndex;
338     return AliDAQ::DetectorIDFromDdlID(equipmentId,ddlIndex);
339   }
340   else
341     return -1;
342 }
343
344 Int_t AliRawReader::GetDDLID() const
345 {
346   // Get the DDL ID (within one sub-detector)
347   // The list of detector IDs
348   // can be found in AliDAQ.h
349   Int_t equipmentId;
350   if (fEquipmentIdsIn && fEquipmentIdsIn)
351     equipmentId = GetMappedEquipmentId();
352   else
353     equipmentId = GetEquipmentId();
354
355   if (equipmentId >= 0) {
356     Int_t ddlIndex;
357     AliDAQ::DetectorIDFromDdlID(equipmentId,ddlIndex);
358     return ddlIndex;
359   }
360   else
361     return -1;
362 }
363
364 void AliRawReader::Select(const char *detectorName, Int_t minDDLID, Int_t maxDDLID)
365 {
366 // read only data of the detector with the given name and in the given
367 // range of DDLs (minDDLID <= DDLID <= maxDDLID).
368 // no selection is applied if a value < 0 is used.
369   Int_t detectorID = AliDAQ::DetectorID(detectorName);
370   if(detectorID >= 0)
371     Select(detectorID,minDDLID,maxDDLID);
372 }
373
374 void AliRawReader::Select(Int_t detectorID, Int_t minDDLID, Int_t maxDDLID)
375 {
376 // read only data of the detector with the given ID and in the given
377 // range of DDLs (minDDLID <= DDLID <= maxDDLID).
378 // no selection is applied if a value < 0 is used.
379
380   fSelectEquipmentType = -1;
381
382   if (minDDLID < 0)
383     fSelectMinEquipmentId = AliDAQ::DdlIDOffset(detectorID);
384   else
385     fSelectMinEquipmentId = AliDAQ::DdlID(detectorID,minDDLID);
386
387   if (maxDDLID < 0)
388     fSelectMaxEquipmentId = AliDAQ::DdlID(detectorID,AliDAQ::NumberOfDdls(detectorID)-1);
389   else
390     fSelectMaxEquipmentId = AliDAQ::DdlID(detectorID,maxDDLID);
391 }
392
393 void AliRawReader::SelectEquipment(Int_t equipmentType, 
394                                    Int_t minEquipmentId, Int_t maxEquipmentId)
395 {
396 // read only data of the equipment with the given type and in the given
397 // range of IDs (minEquipmentId <= EquipmentId <= maxEquipmentId).
398 // no selection is applied if a value < 0 is used.
399
400   fSelectEquipmentType = equipmentType;
401   fSelectMinEquipmentId = minEquipmentId;
402   fSelectMaxEquipmentId = maxEquipmentId;
403 }
404
405 void AliRawReader::SelectEvents(Int_t type, ULong64_t triggerMask,
406                                 const char *triggerExpr)
407 {
408 // read only events with the given type and optionally
409 // trigger mask.
410 // no selection is applied if value = 0 is used.
411 // Trigger selection can be done via string (triggerExpr)
412 // which defines the trigger logic to be used. It works only
413 // after LoadTriggerClass() method is called for all involved
414 // trigger classes.
415
416   fSelectEventType = type;
417   fSelectTriggerMask = triggerMask;
418   if (triggerExpr) fSelectTriggerExpr = triggerExpr;
419 }
420
421 void AliRawReader::LoadTriggerClass(const char* name, Int_t index)
422 {
423   // Loads the list of trigger classes defined.
424   // Used in conjunction with IsEventSelected in the
425   // case when the trigger selection is given by
426   // fSelectedTriggerExpr
427
428   if (fSelectTriggerExpr.IsNull()) return;
429
430   fIsTriggerClassLoaded = kTRUE;
431
432   if (index >= 0)
433     fSelectTriggerExpr.ReplaceAll(name,Form("[%d]",index));
434   else
435     fSelectTriggerExpr.ReplaceAll(name,"0");
436 }
437
438 void AliRawReader::LoadTriggerAlias(const THashList *lst)
439 {
440   // Loads the list of trigger aliases defined.
441   // Replaces the alias by the OR of the triggers included in it.
442   // The subsiquent call to LoadTriggerClass is needed
443   // to obtain the final expression in
444   // fSelectedTriggerExpr
445
446   if (fSelectTriggerExpr.IsNull()) return;
447
448   // Make a THashList alias -> trigger classes
449
450   THashList alias2trig;
451   TIter iter(lst);
452   TNamed *nmd = 0;
453
454   // Loop on triggers
455
456   while((nmd = dynamic_cast<TNamed*>(iter.Next()))){
457
458     TString aliasList(nmd->GetTitle());
459     TObjArray* arrAliases = aliasList.Tokenize(',');
460     Int_t nAliases = arrAliases->GetEntries();
461
462     // Loop on aliases for the current trigger
463     for(Int_t i=0; i<nAliases; i++){
464
465       TObjString *alias = (TObjString*) arrAliases->At(i);
466
467       // Find the current alias in the hash list. If it is not there, add TNamed entry
468       TNamed * inlist = (TNamed*)alias2trig.FindObject((alias->GetString()).Data());
469       if (!inlist) {
470         inlist = new TNamed((alias->GetString()).Data(),nmd->GetName());
471         alias2trig.Add(inlist);
472       }
473       else {
474         TString tt(inlist->GetTitle());
475         tt += " || ";
476         tt += nmd->GetName();
477         inlist->SetTitle(tt.Data());
478       }
479     }
480     
481     delete arrAliases;
482   }
483   alias2trig.Sort(kSortDescending);
484
485   // Replace all the aliases by the OR of triggers
486   TIter iter1(&alias2trig);
487   while((nmd = dynamic_cast<TNamed*>(iter1.Next()))){
488     fSelectTriggerExpr.ReplaceAll(nmd->GetName(),nmd->GetTitle());
489   }
490 }
491
492 Bool_t AliRawReader::IsSelected() const
493 {
494 // apply the selection (if any)
495
496   if (fSkipInvalid && !IsValid()) return kFALSE;
497
498   if (fSelectEquipmentType >= 0)
499     if (GetEquipmentType() != fSelectEquipmentType) return kFALSE;
500
501   Int_t equipmentId;
502   if (fEquipmentIdsIn && fEquipmentIdsIn)
503     equipmentId = GetMappedEquipmentId();
504   else
505     equipmentId = GetEquipmentId();
506
507   if ((fSelectMinEquipmentId >= 0) && 
508       (equipmentId < fSelectMinEquipmentId))
509     return kFALSE;
510   if ((fSelectMaxEquipmentId >= 0) && 
511       (equipmentId > fSelectMaxEquipmentId))
512     return kFALSE;
513
514   return kTRUE;
515 }
516
517 Bool_t AliRawReader::IsEventSelected() const
518 {
519   // apply the event selection (if any)
520
521   // First check the event type
522   if (fSelectEventType >= 0) {
523     if (GetType() != (UInt_t) fSelectEventType) return kFALSE;
524   }
525
526   // Then check the trigger pattern and compared it
527   // to the required trigger mask
528   if (fSelectTriggerMask != 0) {
529     if ((GetClassMask() & fSelectTriggerMask) != fSelectTriggerMask) return kFALSE;
530   }
531
532   if (  fIsTriggerClassLoaded && !fSelectTriggerExpr.IsNull()) {
533     TString expr(fSelectTriggerExpr);
534     ULong64_t mask = GetClassMask();
535     for(Int_t itrigger = 0; itrigger < 50; itrigger++) {
536       if (mask & (1 << itrigger)) {
537         expr.ReplaceAll(Form("[%d]",itrigger),"1");
538       }
539       else {
540         expr.ReplaceAll(Form("[%d]",itrigger),"0");
541       }
542     }
543     // Possibility to introduce downscaling
544     TPRegexp("(%\\s*\\d+)").Substitute(expr,Form("&& !(%d$1)",GetEventIndex()),"g");
545     Int_t error;
546     if ((gROOT->ProcessLineFast(expr.Data(),&error) == 0) &&
547         (error == TInterpreter::kNoError)) {
548       return kFALSE;
549     }
550   }
551
552   return kTRUE;
553 }
554
555 UInt_t AliRawReader::SwapWord(UInt_t x) const
556 {
557    // Swap the endianess of the integer value 'x'
558
559    return (((x & 0x000000ffU) << 24) | ((x & 0x0000ff00U) <<  8) |
560            ((x & 0x00ff0000U) >>  8) | ((x & 0xff000000U) >> 24));
561 }
562
563 UShort_t AliRawReader::SwapShort(UShort_t x) const
564 {
565    // Swap the endianess of the short value 'x'
566
567    return (((x & 0x00ffU) <<  8) | ((x & 0xff00U) >>  8)) ;
568 }
569
570 Bool_t AliRawReader::ReadNextInt(UInt_t& data)
571 {
572 // reads the next 4 bytes at the current position
573 // returns kFALSE if the data could not be read
574
575   while (fCount == 0) {
576     if (!ReadHeader()) return kFALSE;
577   }
578   if (fCount < (Int_t) sizeof(data)) {
579     Error("ReadNextInt", 
580           "too few data left (%d bytes) to read an UInt_t!", fCount);
581     return kFALSE;
582   }
583   if (!ReadNext((UChar_t*) &data, sizeof(data))) {
584     Error("ReadNextInt", "could not read data!");
585     return kFALSE;
586   }
587 #ifndef R__BYTESWAP
588   data=SwapWord(data);
589 #endif
590   return kTRUE;
591 }
592
593 Bool_t AliRawReader::ReadNextShort(UShort_t& data)
594 {
595 // reads the next 2 bytes at the current position
596 // returns kFALSE if the data could not be read
597
598   while (fCount == 0) {
599     if (!ReadHeader()) return kFALSE;
600   }
601   if (fCount < (Int_t) sizeof(data)) {
602     Error("ReadNextShort", 
603           "too few data left (%d bytes) to read an UShort_t!", fCount);
604     return kFALSE;
605   }
606   if (!ReadNext((UChar_t*) &data, sizeof(data))) {
607     Error("ReadNextShort", "could not read data!");
608     return kFALSE;
609   }
610 #ifndef R__BYTESWAP
611   data=SwapShort(data);
612 #endif
613   return kTRUE;
614 }
615
616 Bool_t AliRawReader::ReadNextChar(UChar_t& data)
617 {
618 // reads the next 1 byte at the current stream position
619 // returns kFALSE if the data could not be read
620
621   while (fCount == 0) {
622     if (!ReadHeader()) return kFALSE;
623   }
624   if (!ReadNext((UChar_t*) &data, sizeof(data))) {
625     Error("ReadNextChar", "could not read data!");
626     return kFALSE;
627   }
628   return kTRUE;
629 }
630
631 Bool_t  AliRawReader::GotoEvent(Int_t event)
632 {
633   // Random access to certain
634   // event index. Could be very slow
635   // for some non-root raw-readers.
636   // So it should be reimplemented there.
637   if (event < fEventNumber) RewindEvents();
638
639   while (fEventNumber < event) {
640     if (!NextEvent()) return kFALSE;
641   }
642
643   return kTRUE;
644 }
645
646 Int_t AliRawReader::CheckData() const
647 {
648 // check the consistency of the data
649 // derived classes should overwrite the default method which returns 0 (no err)
650
651   return 0;
652 }
653
654
655 void AliRawReader::DumpData(Int_t limit)
656 {
657 // print the raw data
658 // if limit is not negative, only the first and last "limit" lines of raw data
659 // are printed
660
661   Reset();
662   if (!ReadHeader()) {
663     Error("DumpData", "no header");
664     return;
665   }
666   printf("header:\n"
667          " type = %d  run = %d  ", GetType(), GetRunNumber());
668   if (GetEventId()) {
669     printf("event = %8.8x %8.8x\n", GetEventId()[1], GetEventId()[0]);
670   } else {
671     printf("event = -------- --------\n");
672   }
673   if (GetTriggerPattern()) {
674     printf(" trigger = %8.8x %8.8x  ",
675            GetTriggerPattern()[1], GetTriggerPattern()[0]);
676   } else {
677     printf(" trigger = -------- --------  ");
678   }
679   if (GetDetectorPattern()) {
680     printf("detector = %8.8x\n", GetDetectorPattern()[0]);
681   } else {
682     printf("detector = --------\n");
683   }
684   if (GetAttributes()) {
685     printf(" attributes = %8.8x %8.8x %8.8x  ",
686            GetAttributes()[2], GetAttributes()[1], GetAttributes()[0]);
687   } else {
688     printf(" attributes = -------- -------- --------  ");
689   }
690   printf("GDC = %d\n", GetGDCId());
691   printf("\n");
692
693   do {
694     printf("-------------------------------------------------------------------------------\n");
695     printf("LDC = %d\n", GetLDCId());
696
697     printf("equipment:\n"
698            " size = %d  type = %d  id = %d\n",
699            GetEquipmentSize(), GetEquipmentType(), GetEquipmentId());
700     if (GetEquipmentAttributes()) {
701       printf(" attributes = %8.8x %8.8x %8.8x  ", GetEquipmentAttributes()[2],
702              GetEquipmentAttributes()[1], GetEquipmentAttributes()[0]);
703     } else {
704       printf(" attributes = -------- -------- --------  ");
705     }
706     printf("element size = %d\n", GetEquipmentElementSize());
707
708     printf("data header:\n"
709            " size = %d  version = %d  valid = %d  compression = %d\n",
710            GetDataSize(), GetVersion(), IsValid(), IsCompressed());
711
712     printf("\n");
713     if (limit == 0) continue;
714
715     Int_t size = GetDataSize();
716     char line[70];
717     for (Int_t i = 0; i < 70; i++) line[i] = ' ';
718     line[69] = '\0';
719     Int_t pos = 0;
720     Int_t max = 16;
721     UChar_t byte;
722
723     for (Int_t n = 0; n < size; n++) {
724       if (!ReadNextChar(byte)) {
725         Error("DumpData", "couldn't read byte number %d\n", n);
726         break;
727       }
728       if (pos >= max) {
729         printf("%8.8x  %s\n", n-pos, line);
730         for (Int_t i = 0; i < 70; i++) line[i] = ' ';
731         line[69] = '\0';
732         pos = 0;
733         if ((limit > 0) && (n/max == limit)) {
734           Int_t nContinue = ((size-1)/max+1-limit) * max;
735           if (nContinue > n) {
736             printf(" [skipping %d bytes]\n", nContinue-n);
737             n = nContinue-1;
738             continue;
739           }
740         }
741       }
742       Int_t offset = pos/4;
743       if ((byte > 0x20) && (byte < 0x7f)) {
744         line[pos+offset] = byte;
745       } else {
746         line[pos+offset] = '.';
747       }
748       char hex[3];
749       snprintf(hex, 3, "%2.2x", byte);
750       line[max+max/4+3+2*pos+offset] = hex[0];
751       line[max+max/4+4+2*pos+offset] = hex[1];
752       pos++;
753     }
754
755     if (pos > 0) printf("%8.8x  %s\n", size-pos, line);
756     printf("\n");
757            
758   } while (ReadHeader());
759 }
760
761 void AliRawReader::AddErrorLog(AliRawDataErrorLog::ERawDataErrorLevel level,
762                                Int_t code,
763                                const char *message)
764 {
765   // Add a raw data error message to the list
766   // of raw-data decoding errors
767   if (fEventNumber < 0) {
768     return;
769   }
770   Int_t ddlId = GetEquipmentId();
771   if (ddlId < 0) {
772     AliError("No ddl raw data have been read so far! Impossible to add a raw data error log!");
773     return;
774   }
775
776   Int_t prevEventNumber = -1;
777   Int_t prevDdlId = -1;
778   Int_t prevErrorCode = -1;
779   AliRawDataErrorLog *prevLog = (AliRawDataErrorLog *)fErrorLogs.Last();
780   if (prevLog) {
781     prevEventNumber = prevLog->GetEventNumber();
782     prevDdlId       = prevLog->GetDdlID();
783     prevErrorCode   = prevLog->GetErrorCode();
784   }
785
786   if ((prevEventNumber != fEventNumber) ||
787       (prevDdlId != ddlId) ||
788       (prevErrorCode != code)) {
789     new (fErrorLogs[fErrorLogs.GetEntriesFast()])
790       AliRawDataErrorLog(fEventNumber,
791                          ddlId,
792                          level,
793                          code,
794                          message);
795   }
796   else
797     if (prevLog) prevLog->AddCount();
798
799 }
800
801 Bool_t AliRawReader::GotoEventWithID(Int_t event, 
802                                      UInt_t period,
803                                      UInt_t orbitID,
804                                      UShort_t bcID)
805 {
806   // Go to certain event number by
807   // checking the event ID.
808   // Useful in case event-selection
809   // is applied and the 'event' is
810   // relative
811   if (!GotoEvent(event)) return kFALSE;
812
813   while (GetBCID()    != period  ||
814          GetOrbitID() != orbitID ||
815          GetPeriod()  != bcID) {
816     if (!NextEvent()) return kFALSE;
817   }
818
819   return kTRUE;
820 }
821