2 // Author: Fons Rademakers 26/11/99
4 /**************************************************************************
5 * Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
7 * Author: The ALICE Off-line Project. *
8 * Contributors are mentioned in the code where appropriate. *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12 * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
19 //////////////////////////////////////////////////////////////////////////
23 // Set of classes defining the ALICE RAW event format. The AliRawEvent //
24 // class defines a RAW event. It consists of an AliEventHeader object //
25 // an AliEquipmentHeader object, an AliRawData object and an array of //
26 // sub-events, themselves also being AliRawEvents. The number of //
27 // sub-events depends on the number of DATE LDC's. //
28 // The AliRawEvent objects are written to a ROOT file using different //
29 // technologies, i.e. to local disk via AliRawDB or via rfiod using //
30 // AliRawRFIODB or via rootd using AliRawRootdDB or to CASTOR via //
31 // rootd using AliRawCastorDB (and for performance testing there is //
32 // also AliRawNullDB). //
33 // The AliStats class provides statics information that is added as //
34 // a single keyed object to each raw file. //
35 // The AliTagDB provides an interface to a TAG database. //
36 // The AliMDC class is usid by the "alimdc" stand-alone program //
37 // that reads data directly from DATE. //
39 //////////////////////////////////////////////////////////////////////////
41 #include <TObjArray.h>
45 #include "AliRawEventHeaderBase.h"
46 #include "AliRawEquipment.h"
48 #include "AliRawEvent.h"
54 //______________________________________________________________________________
55 AliRawEvent::AliRawEvent():
62 // Create ALICE event object. If ownData is kFALSE we will use a static
63 // raw data object, otherwise a private copy will be made.
67 //______________________________________________________________________________
68 AliRawEventHeaderBase *AliRawEvent::GetHeader(char*& data)
70 // Get event header part of AliRawEvent.
71 // First the DATE version is identified and then the
72 // corresponding event header version object is created
75 fEvtHdr = AliRawEventHeaderBase::Create(data);
81 //______________________________________________________________________________
82 AliRawEventHeaderBase *AliRawEvent::GetHeader()
85 AliFatal("Header version not yet initialized!");
92 //______________________________________________________________________________
93 AliRawEquipment *AliRawEvent::NextEquipment()
95 // Returns next equipment object.
98 fEquipments = new TObjArray(100); // arbitrary, probably enough to prevent resizing
100 if (fEquipments->GetSize() <= fNEquipments) {
101 fEquipments->Expand(fNEquipments+10);
102 Warning("NextEquipment", "expanded fEquipments by 10 to %d",
103 fEquipments->GetSize());
107 if (!(eq = (AliRawEquipment *)fEquipments->At(fNEquipments))) {
108 eq = new AliRawEquipment;
109 fEquipments->AddAt(eq, fNEquipments);
117 //______________________________________________________________________________
118 AliRawEquipment *AliRawEvent::GetEquipment(Int_t index) const
120 // Get specified equipment. Returns 0 if equipment does not exist.
125 return (AliRawEquipment *) fEquipments->At(index);
128 //______________________________________________________________________________
129 AliRawEvent *AliRawEvent::NextSubEvent()
131 // Returns next sub-event object.
134 fSubEvents = new TObjArray(100); // arbitrary, probably enough to prevent resizing
136 if (fSubEvents->GetSize() <= fNSubEvents) {
137 fSubEvents->Expand(fNSubEvents+10);
138 Warning("NextSubEvent", "expanded fSubEvents by 10 to %d",
139 fSubEvents->GetSize());
143 if (!(ev = (AliRawEvent *)fSubEvents->At(fNSubEvents))) {
144 ev = new AliRawEvent;
145 fSubEvents->AddAt(ev, fNSubEvents);
153 //______________________________________________________________________________
154 AliRawEvent *AliRawEvent::GetSubEvent(Int_t index) const
156 // Get specified sub event. Returns 0 if sub event does not exist.
161 return (AliRawEvent *) fSubEvents->At(index);
164 //______________________________________________________________________________
165 void AliRawEvent::Reset()
167 // Reset the event in case it needs to be re-used (avoiding costly
168 // new/delete cycle). We reset the size marker for the AliRawData
169 // objects and the sub event counter.
171 for (int i = 0; i < fNEquipments; i++) {
172 AliRawEquipment *eq = (AliRawEquipment *)fEquipments->At(i);
176 for (int i = 0; i < fNSubEvents; i++) {
177 AliRawEvent *ev = (AliRawEvent *)fSubEvents->At(i);
183 //______________________________________________________________________________
184 AliRawEvent::~AliRawEvent()
186 // Clean up event object. Delete also, possible, private raw data.
190 fEquipments->Delete();
193 fSubEvents->Delete();