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