]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliRawEquipmentV2.cxx
Fixed warnings
[u/mrichter/AliRoot.git] / RAW / AliRawEquipmentV2.cxx
1 // @(#) $Id: AliRawEquipment.cxx 23318 2008-01-14 12:43:28Z hristov $
2 // Author: Fons Rademakers  26/11/99
3
4 /**************************************************************************
5  * Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
6  *                                                                        *
7  * Author: The ALICE Off-line Project.                                    *
8  * Contributors are mentioned in the code where appropriate.              *
9  *                                                                        *
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  **************************************************************************/
18
19 //////////////////////////////////////////////////////////////////////////
20 //                                                                      //
21 // AliRawEquipmentV2                                                    //
22 //                                                                      //
23 // Set of classes defining the ALICE RAW event format. The AliRawEventV2//
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 AliRawEventV2s. The number of      //
27 // sub-events depends on the number of DATE LDC's.                      //
28 // The AliRawEventV2 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.                                  //
38 //                                                                      //
39 //////////////////////////////////////////////////////////////////////////
40
41 #include "AliRawEquipmentV2.h"
42 #include "AliRawDataArrayV2.h"
43 #include "AliRawData.h"
44
45 ClassImp(AliRawEquipmentV2)
46
47 //______________________________________________________________________________
48 AliRawEquipmentV2::AliRawEquipmentV2():
49 AliRawVEquipment(),
50 fEqpHdr(),
51 fRawData(NULL),
52 fRawDataRef(NULL)
53 {
54    // Create ALICE equipment object.
55
56 }
57
58 //______________________________________________________________________________
59 AliRawEquipmentHeader *AliRawEquipmentV2::GetEquipmentHeader()
60 {
61    // Get equipment header part of AliRawEquipmentV2.
62
63    return &fEqpHdr;
64 }
65
66 //______________________________________________________________________________
67 AliRawData *AliRawEquipmentV2::GetRawData()
68 {
69    // Get raw data part of AliRawEquipmentV2.
70
71   if (!fRawData) {
72     if (fRawDataRef.IsValid()) {
73       fRawData = (AliRawData*)fRawDataRef.GetObject();
74     }
75   }
76   return fRawData;
77 }
78
79 //______________________________________________________________________________
80 void AliRawEquipmentV2::Reset()
81 {
82    // Reset the equipment in case it needs to be re-used (avoiding costly
83    // new/delete cycle). We reset the size marker for the AliRawData
84    // object.
85
86    fEqpHdr.Reset();
87    fRawDataRef = NULL;
88 }
89
90 //______________________________________________________________________________
91 AliRawEquipmentV2::~AliRawEquipmentV2()
92 {
93    // Clean up event object. Delete also, possible, private raw data.
94
95    if (!fRawDataRef.IsValid()) delete fRawData;
96 }
97
98 //______________________________________________________________________________
99 AliRawData *AliRawEquipmentV2::NextRawData(AliRawDataArrayV2 *array)
100 {
101   // Get a pointer to the raw-data object
102   // stored within an array in a separate
103   // branch of the tree.
104   // Set the reference to the raw-data object
105
106   AliRawData *raw = NULL;
107   if (array) {
108     raw = array->Add();
109     fRawDataRef = raw;
110   }
111   else {
112     Error("NextRawData", "Raw-data array does not exist! Can not set a reference to a raw-data object!");    
113     fRawDataRef = NULL;
114   }
115
116   return raw;
117 }
118
119 //______________________________________________________________________________
120 void AliRawEquipmentV2::CloneRawData(const AliRawData *rawData)
121 {
122   // Clone the input raw data and
123   // flush the TRef
124
125   fRawDataRef = NULL;
126   if (rawData) fRawData = (AliRawData*)rawData->Clone();
127 }