]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliMDC.cxx
track matching macros from Alberto
[u/mrichter/AliRoot.git] / RAW / AliMDC.cxx
CommitLineData
a197a4ce 1// @(#)alimdc:$Name$:$Id$
2// Author: Fons Rademakers 26/11/99
3// Updated: Dario Favretto 15/04/2003
4
5/**************************************************************************
6 * Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
7 * *
8 * Author: The ALICE Off-line Project. *
9 * Contributors are mentioned in the code where appropriate. *
10 * *
11 * Permission to use, copy, modify and distribute this software and its *
12 * documentation strictly for non-commercial purposes is hereby granted *
13 * without fee, provided that the above copyright notice appears in all *
14 * copies and that both the copyright notice and this permission notice *
15 * appear in the supporting documentation. The authors make no claims *
16 * about the suitability of this software for any purpose. It is *
17 * provided "as is" without express or implied warranty. *
18 **************************************************************************/
19
8c49c5a5 20/* $Id$ */
21
a197a4ce 22//////////////////////////////////////////////////////////////////////////
23// //
24// AliMDC //
25// //
26// Set of classes defining the ALICE RAW event format. The AliRawEvent //
27// class defines a RAW event. It consists of an AliEventHeader object //
28// an AliEquipmentHeader object, an AliRawData object and an array of //
29// sub-events, themselves also being AliRawEvents. The number of //
30// sub-events depends on the number of DATE LDC's. //
31// The AliRawEvent objects are written to a ROOT file using different //
32// technologies, i.e. to local disk via AliRawDB or via rfiod using //
33// AliRawRFIODB or via rootd using AliRawRootdDB or to CASTOR via //
34// rootd using AliRawCastorDB (and for performance testing there is //
35// also AliRawNullDB). //
36// The AliRunDB class provides the interface to the run and file //
37// catalogues (AliEn or plain MySQL). //
38// The AliStats class provides statics information that is added as //
39// a single keyed object to each raw file. //
40// The AliTagDB provides an interface to a TAG database. //
41// The AliMDC class is usid by the "alimdc" stand-alone program //
42// that reads data directly from DATE. //
43// //
44//////////////////////////////////////////////////////////////////////////
45
8c49c5a5 46#include <sys/types.h>
47#include <sys/stat.h>
48
a197a4ce 49#include <errno.h>
50
51#include <TSystem.h>
e10815f1 52#include <TROOT.h>
a197a4ce 53#include <TStopwatch.h>
54
e10815f1 55#include <sys/uio.h>
a197a4ce 56#ifdef USE_EB
57#include "libDateEb.h"
58#endif
59
e10815f1 60#include <AliLog.h>
a109e73e 61#include <AliESD.h>
a109e73e 62
a197a4ce 63#include "AliRawEvent.h"
f2dc6b20 64#include "AliRawEventHeaderBase.h"
94d918a7 65#include "AliRawEquipment.h"
a197a4ce 66#include "AliRawEquipmentHeader.h"
67#include "AliRawData.h"
68#include "AliStats.h"
69#include "AliRawDB.h"
70#include "AliRawRFIODB.h"
71#include "AliRawCastorDB.h"
72#include "AliRawRootdDB.h"
73#include "AliRawNullDB.h"
74#include "AliTagDB.h"
b7d09bb3 75#include "AliRunDB.h"
e10815f1 76#include "AliFilter.h"
a197a4ce 77
78#include "AliMDC.h"
79
a197a4ce 80ClassImp(AliMDC)
81
82
e10815f1 83// Filter names
84const char* const AliMDC::fgkFilterName[kNFilters] = {"AliHoughFilter"};
a197a4ce 85
e10815f1 86//______________________________________________________________________________
87AliMDC::AliMDC(Int_t compress, Bool_t deleteFiles, EFilterMode filterMode,
88 const char* localRunDB, Bool_t rdbmsRunDB,
89 const char* alienHostRunDB, const char* alienDirRunDB,
90 Double_t maxSizeTagDB, const char* fileNameTagDB) :
91 fEvent(new AliRawEvent),
92 fESD(NULL),
93 fStats(NULL),
94 fRawDB(NULL),
95 fRunDB(new AliRunDB(localRunDB, rdbmsRunDB, alienHostRunDB, alienDirRunDB)),
96 fTagDB(NULL),
97 fCompress(compress),
98 fDeleteFiles(deleteFiles),
99 fFilterMode(filterMode),
100 fFilters(),
f2dc6b20 101 fStop(kFALSE),
102 fIsTagDBCreated(kFALSE),
103 fMaxSizeTagDB(maxSizeTagDB),
104 fFileNameTagDB(fileNameTagDB)
e10815f1 105{
106 // Create MDC processor object.
107 // compress is the file compression mode.
108 // If deleteFiles is kTRUE the raw data files will be deleted after they
109 // were closed.
110 // If the filterMode if kFilterOff no filter algorithm will be, if it is
111 // kFilterTransparent the algorthims will be run but no events will be
112 // rejected, if it is kFilterOn the filters will be run and the event will
113 // be rejected if all filters return kFALSE.
114 // localRunDB is the file name of the local run DB; if NULL no local run DB
115 // will be created.
116 // The filling of a MySQL run DB can be switch on or off with rdbmsRunDB.
117 // The host and directory name of the alien run DB can be specified by
118 // alienHostRunDB and alienDirRunDB; if NULL no alien DB will be filled.
119 // If maxSizeTagDB is greater than 0 it determines the maximal size of the
120 // tag DB and then fileNameTagDB is the directory name for the tag DB.
121 // Otherwise fileNameTagDB is the file name of the tag DB. If it is NULL
122 // no tag DB will be created.
123
124
125 if (fFilterMode != kFilterOff) {
126 fESD = new AliESD;
127 }
a197a4ce 128
f2dc6b20 129// Tag DB is now created at the point where the header version is
130// already known
131// if (fileNameTagDB) {
132// if (maxSizeTagDB > 0) {
133// fTagDB = new AliTagDB(fEvent->GetHeader(), NULL);
134// fTagDB->SetMaxSize(maxSizeTagDB);
135// fTagDB->SetFS(fileNameTagDB);
136// fTagDB->Create();
137// } else {
138// fTagDB = new AliTagDB(fEvent->GetHeader(), fileNameTagDB);
139// }
140// }
a197a4ce 141
e10815f1 142 // install SIGUSR1 handler to allow clean interrupts
143 gSystem->AddSignalHandler(new AliMDCInterruptHandler(this));
a197a4ce 144
e10815f1 145 // create the high level filters
146 if (fFilterMode != kFilterOff) {
147 for (Int_t iFilter = 0; iFilter < kNFilters; iFilter++) {
148 TClass* filterClass = gROOT->GetClass(fgkFilterName[iFilter]);
149 if (!filterClass) {
150 Warning("AliMDC", "no filter class %s found", fgkFilterName[iFilter]);
151 continue;
a197a4ce 152 }
e10815f1 153 AliFilter* filter = (AliFilter*) filterClass->New();
154 if (!filter) {
155 Warning("AliMDC", "creation of filter %s failed", fgkFilterName[iFilter]);
156 continue;
a197a4ce 157 }
e10815f1 158 fFilters.Add(filter);
159 }
160 }
a197a4ce 161}
162
e10815f1 163//______________________________________________________________________________
164AliMDC::~AliMDC()
165{
166// destructor
167
168 fFilters.Delete();
f2dc6b20 169 if(fTagDB) delete fTagDB;
e10815f1 170 delete fRunDB;
171 delete fRawDB;
172 delete fStats;
173 delete fESD;
174 delete fEvent;
175}
176
a197a4ce 177//______________________________________________________________________________
e10815f1 178Int_t AliMDC::Open(EWriteMode mode, const char* fileName)
a197a4ce 179{
e10815f1 180// open a new raw DB file
181
182 if (mode == kRFIO)
183 fRawDB = new AliRawRFIODB(fEvent, fESD, fCompress, fileName);
184 else if (mode == kROOTD)
185 fRawDB = new AliRawRootdDB(fEvent, fESD, fCompress, fileName);
186 else if (mode == kCASTOR)
187 fRawDB = new AliRawCastorDB(fEvent, fESD, fCompress, fileName);
188 else if (mode == kDEVNULL)
189 fRawDB = new AliRawNullDB(fEvent, fESD, fCompress, fileName);
190 else
191 fRawDB = new AliRawDB(fEvent, fESD, fCompress, fileName);
192 fRawDB->SetDeleteFiles(fDeleteFiles);
193
194 if (fRawDB->IsZombie()) {
195 delete fRawDB;
196 fRawDB = NULL;
f07ec911 197 return -1;
e10815f1 198 }
199 Info("Open", "Filling raw DB %s\n", fRawDB->GetDBName());
a197a4ce 200
e10815f1 201 // Create AliStats object
202 fStats = new AliStats(fRawDB->GetDBName(), fCompress,
203 fFilterMode != kFilterOff);
204 return 0;
205}
a109e73e 206
e10815f1 207//______________________________________________________________________________
208Int_t AliMDC::ProcessEvent(void* event, Bool_t isIovecArray)
209{
210// Convert the DATE event to an AliRawEvent object and store it in the raw DB,
211// optionally also run the filter.
212// event is either a pointer to the streamlined event
213// or, if isIovecArray is kTRUE, a pointer to an array of iovecs with one
214// iovec per subevent (used by the event builder).
215// The return value is the number of written bytes or an error code
d21e9888 216 const UInt_t kFileSizeErrorLevel = 1900000000;
217
218 UInt_t currentFileSize = GetTotalSize();
219 if(currentFileSize > kFileSizeErrorLevel) {
220 Error("ProcessEvent", "file size (%u) exceeds the limit "
221 , currentFileSize);
222 return kErrFileSize;
223 }
e10815f1 224
225 Int_t status;
226 char* data = (char*) event;
227 if (isIovecArray) data = (char*) ((iovec*) event)[0].iov_base;
228
229 // Shortcut for easy header access
f2dc6b20 230 AliRawEventHeaderBase *header = fEvent->GetHeader(data);
e10815f1 231
232 // Read event header
f2dc6b20 233 if ((status = header->ReadHeader(data)) != (Int_t)header->GetHeadSize()) {
e10815f1 234 return kErrHeader;
235 }
a197a4ce 236
f2dc6b20 237 if (AliDebugLevel() > 2) ToAliDebug(3, header->Dump(););
e10815f1 238
239 // Check event type and skip "Start of Run", "End of Run",
240 // "Start of Run Files" and "End of Run Files"
f2dc6b20 241 Int_t size = header->GetEventSize() - header->GetHeadSize();
cce65444 242
243 AliDebug(1, Form("Processing %s (%d bytes)", header->GetTypeName(), size));
a197a4ce 244
e10815f1 245 // Amount of data left to read for this event
246 Int_t toRead = size;
a197a4ce 247
cce65444 248 // StartOfRun, EndOfRun etc. events have no payload
249 // Nevertheless, store the event headers in the tree
250 if (toRead > 0) {
251
252 // If there is less data for this event than the next sub-event
253 // header, something is wrong. Skip to next event...
254 if (toRead < (Int_t)header->GetHeadSize()) {
255 Error("ProcessEvent", "header size (%d) exceeds number of bytes "
256 "to read (%d)", header->GetHeadSize(), toRead);
257 if (AliDebugLevel() > 0) ToAliDebug(1, header->Dump(););
258 return kErrHeaderSize;
259 }
e10815f1 260
cce65444 261 // Loop over all sub-events... (LDCs)
262 Int_t nsub = 1;
263 while (toRead > 0) {
264 if (isIovecArray) data = (char*) ((iovec*) event)[nsub].iov_base;
e10815f1 265
cce65444 266 AliDebug(1, Form("reading LDC %d", nsub));
e10815f1 267
cce65444 268 AliRawEvent *subEvent = fEvent->NextSubEvent();
e10815f1 269
cce65444 270 // Read sub-event header
271 AliRawEventHeaderBase *subHeader = subEvent->GetHeader(data);
272 if ((status = subHeader->ReadHeader(data)) != (Int_t)subHeader->GetHeadSize()) {
273 return kErrSubHeader;
274 }
e10815f1 275
cce65444 276 if (AliDebugLevel() > 2) ToAliDebug(3, subHeader->Dump(););
e10815f1 277
cce65444 278 toRead -= subHeader->GetHeadSize();
e10815f1 279
cce65444 280 Int_t rawSize = subHeader->GetEventSize() - subHeader->GetHeadSize();
e10815f1 281
cce65444 282 // Make sure raw data less than left over bytes for current event
283 if (rawSize > toRead) {
284 Warning("ProcessEvent", "raw data size (%d) exceeds number of "
285 "bytes to read (%d)\n", rawSize, toRead);
286 if (AliDebugLevel() > 0) ToAliDebug(1, subHeader->Dump(););
287 return kErrDataSize;
288 }
289
290 // Read Equipment Headers (in case of physics or calibration event)
291 if (header->Get("Type") == AliRawEventHeaderBase::kPhysicsEvent ||
292 header->Get("Type") == AliRawEventHeaderBase::kCalibrationEvent ||
293 header->Get("Type") == AliRawEventHeaderBase::kSystemSoftwareTriggerEvent ||
294 header->Get("Type") == AliRawEventHeaderBase::kDetectorSoftwareTriggerEvent) {
295 while (rawSize > 0) {
296 AliRawEquipment &equipment = *subEvent->NextEquipment();
297 AliRawEquipmentHeader &equipmentHeader =
298 *equipment.GetEquipmentHeader();
299 Int_t equipHeaderSize = equipmentHeader.HeaderSize();
300 if ((status = ReadEquipmentHeader(equipmentHeader, header->DataIsSwapped(),
301 data)) != equipHeaderSize) {
302 return kErrEquipmentHeader;
303 }
304
305 if (AliDebugLevel() > 2) ToAliDebug(3, equipmentHeader.Dump(););
306
307 toRead -= equipHeaderSize;
308 rawSize -= equipHeaderSize;
309
310 // Read equipment raw data
311 AliRawData &subRaw = *equipment.GetRawData();
312
313 Int_t eqSize = equipmentHeader.GetEquipmentSize() - equipHeaderSize;
314 if ((status = ReadRawData(subRaw, eqSize, data)) != eqSize) {
315 return kErrEquipment;
316 }
317 toRead -= eqSize;
318 rawSize -= eqSize;
e10815f1 319
e10815f1 320 }
e10815f1 321
cce65444 322 } else { // Read only raw data but no equipment header
42127dba 323 if (rawSize) {
324 AliRawEquipment &equipment = *subEvent->NextEquipment();
325 AliRawData &subRaw = *equipment.GetRawData();
326 if ((status = ReadRawData(subRaw, rawSize, data)) != rawSize) {
327 return kErrEquipment;
328 }
329 toRead -= rawSize;
e10815f1 330 }
a197a4ce 331 }
a197a4ce 332
cce65444 333 nsub++;
e10815f1 334 }
e10815f1 335 }
a197a4ce 336
e10815f1 337 // High Level Event Filter
338 if (fFilterMode != kFilterOff) {
f2dc6b20 339 if (header->Get("Type") == AliRawEventHeaderBase::kPhysicsEvent ||
cce65444 340 header->Get("Type") == AliRawEventHeaderBase::kCalibrationEvent ||
341 header->Get("Type") == AliRawEventHeaderBase::kSystemSoftwareTriggerEvent ||
342 header->Get("Type") == AliRawEventHeaderBase::kDetectorSoftwareTriggerEvent) {
e10815f1 343 Bool_t result = kFALSE;
344 for (Int_t iFilter = 0; iFilter < fFilters.GetEntriesFast(); iFilter++) {
345 AliFilter* filter = (AliFilter*) fFilters[iFilter];
346 if (!filter) continue;
347 if (filter->Filter(fEvent, fESD)) result = kTRUE;
a197a4ce 348 }
e10815f1 349 if ((fFilterMode == kFilterOn) && !result) return kFilterReject;
350 }
351 }
a197a4ce 352
e10815f1 353 // Set stat info for first event of this file
354 if (fRawDB->GetEvents() == 0)
f2dc6b20 355 fStats->SetFirstId(header->Get("RunNb"), header->GetP("Id")[0]);
e10815f1 356
357 // Store raw event in tree
358 Int_t nBytes = fRawDB->Fill();
a197a4ce 359
f2dc6b20 360 // Create Tag DB here only after the raw data header
361 // version was already identified
362 if (!fIsTagDBCreated) {
363 if (fFileNameTagDB) {
364 if (fMaxSizeTagDB > 0) {
365 fTagDB = new AliTagDB(fEvent->GetHeader(), NULL);
366 fTagDB->SetMaxSize(fMaxSizeTagDB);
367 fTagDB->SetFS(fFileNameTagDB);
368 fTagDB->Create();
369 } else {
370 fTagDB = new AliTagDB(fEvent->GetHeader(), fFileNameTagDB);
371 }
372 }
373 fIsTagDBCreated = kTRUE;
374 }
375
e10815f1 376 // Store header in tree
377 if (fTagDB) fTagDB->Fill();
a197a4ce 378
37f78e68 379 // Make top event object ready for next event data
380 fEvent->Reset();
381 // Clean up HLT ESD for the next event
382 if (fESD) fESD->Reset();
383
f07ec911 384 if(nBytes >= 0)
385 return nBytes;
386 else
387 return kErrWriting;
e10815f1 388}
389
d21e9888 390//______________________________________________________________________________
391Int_t AliMDC::GetTotalSize()
392{
393// return the total current raw DB file size
394
395 if (!fRawDB) return -1;
396
397 return fRawDB->GetTotalSize();
398}
399
e10815f1 400//______________________________________________________________________________
401Int_t AliMDC::Close()
402{
403// close the current raw DB file
404
f07ec911 405 if (!fRawDB) return -1;
e10815f1 406
407 fRawDB->WriteStats(fStats);
408 fRunDB->Update(fStats);
f07ec911 409 Int_t filesize = fRawDB->Close();
e10815f1 410 delete fRawDB;
411 fRawDB = NULL;
412 delete fStats;
413 fStats = NULL;
f07ec911 414 return filesize;
e10815f1 415}
a197a4ce 416
e10815f1 417//______________________________________________________________________________
418Int_t AliMDC::Run(const char* inputFile, Bool_t loop,
419 EWriteMode mode, Double_t maxFileSize,
420 const char* fs1, const char* fs2)
421{
422 // Run the MDC processor. Read from the input stream and only return
423 // when the input gave and EOF or a fatal error occured. On success 0
424 // is returned, 1 in case of a fatality.
425 // inputFile is the name of the DATE input file; if NULL the input will
426 // be taken from the event builder.
427 // If loop is set the same input file will be reused in an infinite loop.
428 // mode specifies the type of the raw DB.
429 // maxFileSize is the maximal size of the raw DB.
430 // fs1 and fs2 are the file system locations of the raw DB.
431
432 Info("Run", "input = %s, rawdb size = %f, filter = %s, "
433 "looping = %s, compression = %d, delete files = %s",
434 inputFile ? inputFile : "event builder", maxFileSize,
435 fFilterMode == kFilterOff ? "off" :
436 (fFilterMode == kFilterOn ? "on" : "transparent"),
437 loop ? "yes" : "no", fCompress, fDeleteFiles ? "yes" : "no");
438
439 // Open the input file
440 Int_t fd = -1;
441 if (inputFile) {
442 if ((fd = open(inputFile, O_RDONLY)) == -1) {
443 Error("Run", "cannot open input file %s", inputFile);
444 return 1;
445 }
446 }
a197a4ce 447
e10815f1 448 // Used for statistics
449 TStopwatch timer;
450 timer.Start();
451 Double_t told = 0, tnew = 0;
452 Float_t chunkSize = maxFileSize/100, nextChunk = chunkSize;
453
454 // Create new raw DB.
455 if (fRawDB) Close();
456 if (mode == kRFIO) {
457 fRawDB = new AliRawRFIODB(fEvent, fESD, fCompress, NULL);
458 } else if (mode == kROOTD) {
459 fRawDB = new AliRawRootdDB(fEvent, fESD, fCompress, NULL);
460 } else if (mode == kCASTOR) {
461 fRawDB = new AliRawCastorDB(fEvent, fESD, fCompress, NULL);
462 } else if (mode == kDEVNULL) {
463 fRawDB = new AliRawNullDB(fEvent, fESD, fCompress, NULL);
464 } else {
465 fRawDB = new AliRawDB(fEvent, fESD, fCompress, NULL);
466 }
467 fRawDB->SetMaxSize(maxFileSize);
468 fRawDB->SetFS(fs1, fs2);
469 fRawDB->SetDeleteFiles(fDeleteFiles);
470 fRawDB->Create();
471
472 if (fRawDB->IsZombie()) {
473 delete fRawDB;
474 fRawDB = NULL;
475 return 1;
476 }
477 printf("Filling raw DB %s\n", fRawDB->GetDBName());
a197a4ce 478
e10815f1 479 // Create AliStats object
480 fStats = new AliStats(fRawDB->GetDBName(), fCompress,
481 fFilterMode != kFilterOff);
a197a4ce 482
e10815f1 483 // Process input stream
a197a4ce 484#ifdef USE_EB
e10815f1 485 Int_t eorFlag = 0;
a197a4ce 486#endif
e10815f1 487 char* event = NULL;
488 UInt_t eventSize = 0;
489 Int_t numEvents = 0;
490
f2dc6b20 491 AliRawEventHeaderBase header;
492
e10815f1 493 while (kTRUE) {
494
495 // If we were in looping mode stop directly after a SIGUSR1 signal
496 if (fStop) {
497 Info("Run", "Stopping loop, processed %d events", numEvents);
498 break;
499 }
a197a4ce 500
e10815f1 501 if (!inputFile) { // get data from event builder
94d918a7 502#ifdef USE_EB
e10815f1 503 if ((eorFlag = ebEor())) break;
504 if ((event = (char*)ebGetNextEvent()) == (char*)-1) {
505 Error("Run", "error getting next event (%s)", ebGetLastError());
506 break;
507 }
508 if (event == 0) {
509 // no event, sleep for 1 second and try again
510 gSystem->Sleep(1000);
511 continue;
512 }
513#else
514 Error("Run", "AliMDC was compiled without event builder support");
515 delete fRawDB;
516 fRawDB = NULL;
517 delete fStats;
518 fStats = NULL;
519 return 1;
94d918a7 520#endif
521
e10815f1 522 } else { // get data from a file
f2dc6b20 523 {
524 Int_t nrecv;
525 if ((nrecv = Read(fd, header.HeaderBaseBegin(), header.HeaderBaseSize())) !=
526 header.HeaderBaseSize()) {
527 if (nrecv == 0) { // eof
528 if (loop) {
529 ::lseek(fd, 0, SEEK_SET);
530 continue;
531 } else {
532 break;
533 }
534 } else {
535 Error("Run", "error reading base header");
536 Close();
537 delete[] event;
538 return 1;
539 }
540 }
541 }
542 char *data = (char *)header.HeaderBaseBegin();
543 AliRawEventHeaderBase *hdr = AliRawEventHeaderBase::Create(data);
e10815f1 544 Int_t nrecv;
f2dc6b20 545 if ((nrecv = Read(fd, hdr->HeaderBegin(), hdr->HeaderSize())) !=
546 hdr->HeaderSize()) {
e10815f1 547 if (nrecv == 0) { // eof
548 if (loop) {
549 ::lseek(fd, 0, SEEK_SET);
f2dc6b20 550 delete hdr;
e10815f1 551 continue;
552 } else {
f2dc6b20 553 delete hdr;
e10815f1 554 break;
555 }
556 } else {
557 Error("Run", "error reading header");
558 Close();
559 delete[] event;
f2dc6b20 560 delete hdr;
e10815f1 561 return 1;
562 }
a197a4ce 563 }
f2dc6b20 564 if (eventSize < hdr->GetEventSize()) {
e10815f1 565 delete[] event;
f2dc6b20 566 eventSize = 2 * hdr->GetEventSize();
e10815f1 567 event = new char[eventSize];
a109e73e 568 }
f2dc6b20 569 memcpy(event, hdr->HeaderBaseBegin(), hdr->HeaderBaseSize());
570 memcpy(event+hdr->HeaderBaseSize(), hdr->HeaderBegin(), hdr->HeaderSize());
571 if (hdr->GetExtendedDataSize() != 0)
572 memcpy(event+hdr->HeaderBaseSize()+hdr->HeaderSize(),
573 hdr->GetExtendedData(), hdr->GetExtendedDataSize());
574 Int_t size = hdr->GetEventSize() - hdr->GetHeadSize();
575 if (Read(fd, event + hdr->GetHeadSize(), size) != size) {
e10815f1 576 Error("Run", "error reading data");
577 Close();
578 delete[] event;
f2dc6b20 579 delete hdr;
e10815f1 580 return 1;
581 }
f2dc6b20 582 delete hdr;
e10815f1 583 }
a109e73e 584
e10815f1 585 Int_t result = ProcessEvent(event, !inputFile);
f07ec911 586 if(result < -1)
587 Error("Run", "error writing data. Error code: %d",result);
a197a4ce 588
e10815f1 589 if (result >= 0) {
590 numEvents++;
591 if (!(numEvents%10))
592 printf("Processed event %d (%d)\n", numEvents, fRawDB->GetEvents());
593 }
a197a4ce 594
e10815f1 595 if (result > 0) {
a197a4ce 596 // Filling time statistics
e10815f1 597 if (fRawDB->GetBytesWritten() > nextChunk) {
598 tnew = timer.RealTime();
599 fStats->Fill(tnew-told);
600 told = tnew;
601 timer.Continue();
602 nextChunk += chunkSize;
a197a4ce 603 }
604
605 // Check size of raw db. If bigger than maxFileSize, close file
606 // and continue with new file.
e10815f1 607 if (fRawDB->GetBytesWritten() > maxFileSize) {
608
609 printf("Written raw DB at a rate of %.1f MB/s\n",
610 fRawDB->GetBytesWritten() / timer.RealTime() / 1000000.);
611
612 // Write stats object to raw db, run db, MySQL and AliEn
613 fRawDB->WriteStats(fStats);
614 if (fRunDB) fRunDB->Update(fStats);
615 delete fStats;
616 fStats = NULL;
617
618 if (!fRawDB->NextFile()) {
619 Error("Run", "error opening next raw data file");
620 Close();
621 if (inputFile) delete[] event;
622 return 1;
623 }
624
625 printf("Filling raw DB %s\n", fRawDB->GetDBName());
626 fStats = new AliStats(fRawDB->GetDBName(), fCompress,
627 fFilterMode != kFilterOff);
628
629 timer.Start();
630 told = 0, tnew = 0;
631 nextChunk = chunkSize;
a197a4ce 632 }
633
634 // Check size of tag db
e10815f1 635 if (fTagDB && fTagDB->FileFull()) {
636 if (!fTagDB->NextFile()) {
637 delete fTagDB;
638 fTagDB = 0;
639 } else {
640 printf("Filling tag DB %s\n", fTagDB->GetDBName());
641 }
a197a4ce 642 }
e10815f1 643 }
a197a4ce 644
e10815f1 645 // Make top event object ready for next event data
646 //printf("Event %d has %d sub-events\n", numEvents, fEvent->GetNSubEvents());
37f78e68 647 // fEvent->Reset();
e10815f1 648 // Clean up HLT ESD for the next event
37f78e68 649 // if (fESD) fESD->Reset();
e10815f1 650
651 if (!inputFile) {
a197a4ce 652#ifdef USE_EB
e10815f1 653 if (!ebReleaseEvent((iovec*)event)) {
654 Error("Run", "problem releasing event (%s)", ebGetLastError());
655 break;
a197a4ce 656 }
657#endif
e10815f1 658 }
659 }
a197a4ce 660
e10815f1 661 printf("Written raw DB at a rate of %.1f MB/s\n",
662 fRawDB->GetBytesWritten() / timer.RealTime() / 1000000.);
a197a4ce 663
e10815f1 664 // Write stats to raw db and run db and delete stats object
665 Close();
a197a4ce 666
e10815f1 667 if (!inputFile) {
a197a4ce 668#ifdef USE_EB
e10815f1 669 // Print eor flag
670 if (eorFlag) {
a197a4ce 671 Info("Run", "event builder reported end of run (%d)", eorFlag);
e10815f1 672 }
a197a4ce 673#endif
e10815f1 674 } else {
675 // Close input source
676 close(fd);
f2dc6b20 677 delete [] event;
e10815f1 678 }
a197a4ce 679
e10815f1 680 return 0;
a197a4ce 681}
682
683//______________________________________________________________________________
e10815f1 684Int_t AliMDC::Read(Int_t fd, void *buffer, Int_t length)
a197a4ce 685{
686 // Read exactly length bytes into buffer. Returns number of bytes
687 // received, returns -1 in case of error and 0 for EOF.
688
689 errno = 0;
690
e10815f1 691 if (fd < 0) return -1;
a197a4ce 692
693 Int_t n, nrecv = 0;
694 char *buf = (char *)buffer;
695
696 for (n = 0; n < length; n += nrecv) {
e10815f1 697 if ((nrecv = read(fd, buf+n, length-n)) <= 0) {
a197a4ce 698 if (nrecv == 0)
699 break; // EOF
700 if (errno != EINTR)
701 SysError("Read", "read");
702 return -1;
703 }
704 }
705 return n;
706}
707
a197a4ce 708//______________________________________________________________________________
709Int_t AliMDC::ReadEquipmentHeader(AliRawEquipmentHeader &header,
e10815f1 710 Bool_t isSwapped, char*& data)
a197a4ce 711{
e10815f1 712 // Read equipment header info from DATE data stream. Returns bytes read
713 // (i.e. AliRawEquipmentHeader::HeaderSize()), -1 in case of error and
714 // 0 for EOF. If isSwapped is kTRUE the event data is byte swapped
715 // and we will swap the header to host format.
716
717 memcpy(header.HeaderBegin(), data, header.HeaderSize());
718 data += header.HeaderSize();
719
720 // Swap equipment header data if needed
721 if (isSwapped)
722 header.Swap();
723
724 if (header.GetEquipmentSize() < (UInt_t)header.HeaderSize()) {
725 Error("ReadEquipmentHeader", "invalid equipment header size");
726 // try recovery... how?
727 return -1;
728 }
a197a4ce 729
e10815f1 730 return header.HeaderSize();
a197a4ce 731}
732
733//______________________________________________________________________________
e10815f1 734Int_t AliMDC::ReadRawData(AliRawData &raw, Int_t size, char*& data)
a197a4ce 735{
e10815f1 736 // Read raw data from DATE data stream. Returns bytes read (i.e.
737 // size), -1 in case of error and 0 for EOF.
a197a4ce 738
e10815f1 739 raw.SetBuffer(data, size);
740 data += size;
a197a4ce 741
e10815f1 742 return size;
a197a4ce 743}
744
745//______________________________________________________________________________
e10815f1 746void AliMDC::Stop()
a197a4ce 747{
e10815f1 748 // Stop the event loop
749
750 fStop = kTRUE;
751 if (fRawDB) fRawDB->Stop();
a197a4ce 752}
753
e10815f1 754