]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliRawReader.cxx
default constructor and constant for magic word added
[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
16///////////////////////////////////////////////////////////////////////////////
17//
8de97894 18// This is the base class for reading raw data and providing
a6e7b125 19// information about digits
20//
42d20574 21// The derived classes, which operate on concrete raw data formats,
22// should implement
c946ab02 23// - ReadHeader to read the next (mini or equipment) header
42d20574 24// - ReadNextData to read the next raw data block (=1 DDL)
25// - ReadNext to read a given number of bytes
26// - several getters like GetType
27//
28// Sequential access to the raw data is provided by the methods
c946ab02 29// ReadHeader, ReadNextData, ReadNextInt, ReadNextShort, ReadNextChar
42d20574 30//
31// If only data from a specific detector (and a given range of DDL numbers)
32// should be read, this can be achieved by the Select method.
33// Several getter provide information about the current event and the
34// current type of raw data.
35//
a6e7b125 36///////////////////////////////////////////////////////////////////////////////
37
38#include "AliRawReader.h"
39
8de97894 40
a6e7b125 41ClassImp(AliRawReader)
42
43
c946ab02 44AliRawReader::AliRawReader() :
45 fMiniHeader(NULL),
46 fCount(0),
47 fSelectDetectorID(-1),
48 fSelectMinDDLID(-1),
49 fSelectMaxDDLID(-1),
50 fErrorCode(0)
a6e7b125 51{
42d20574 52// default constructor: initialize data members
53
a6e7b125 54}
55
42d20574 56AliRawReader::AliRawReader(const AliRawReader& rawReader) :
c946ab02 57 TObject(rawReader),
58 fMiniHeader(rawReader.fMiniHeader),
59 fCount(rawReader.fCount),
60 fSelectDetectorID(rawReader.fSelectDetectorID),
61 fSelectMinDDLID(rawReader.fSelectMinDDLID),
62 fSelectMaxDDLID(rawReader.fSelectMaxDDLID),
63 fErrorCode(0)
42d20574 64{
65// copy constructor
66
42d20574 67}
68
69AliRawReader& AliRawReader::operator = (const AliRawReader& rawReader)
70{
71// assignment operator
72
73 fMiniHeader = rawReader.fMiniHeader;
74 fCount = rawReader.fCount;
75
76 fSelectDetectorID = rawReader.fSelectDetectorID;
77 fSelectMinDDLID = rawReader.fSelectMinDDLID;
78 fSelectMaxDDLID = rawReader.fSelectMaxDDLID;
79
b4857df7 80 fErrorCode = rawReader.fErrorCode;
81
42d20574 82 return *this;
83}
84
8de97894 85
86void AliRawReader::Select(Int_t detectorID, Int_t minDDLID, Int_t maxDDLID)
a6e7b125 87{
8de97894 88// read only data of the detector with the given ID and in the given
89// range of DDLs (minDDLID <= DDLID < maxDDLID).
90// no selection is applied if a value < 0 is used.
a6e7b125 91
8de97894 92 fSelectDetectorID = detectorID;
93 fSelectMinDDLID = minDDLID;
94 fSelectMaxDDLID = maxDDLID;
95}
a6e7b125 96
42d20574 97Bool_t AliRawReader::IsSelected() const
a6e7b125 98{
8de97894 99// apply the selection (if any)
100
101 if (fSelectDetectorID >= 0) {
c946ab02 102 if (!fMiniHeader) return kFALSE;
8de97894 103 if (fMiniHeader->fDetectorID != fSelectDetectorID) return kFALSE;
104 if ((fSelectMinDDLID >= 0) && (fMiniHeader->fDDLID < fSelectMinDDLID))
105 return kFALSE;
106 if ((fSelectMaxDDLID >= 0) && (fMiniHeader->fDDLID >= fSelectMaxDDLID))
107 return kFALSE;
a6e7b125 108 }
8de97894 109 return kTRUE;
a6e7b125 110}
111
112
b4857df7 113Bool_t AliRawReader::CheckMiniHeader(AliMiniHeader* miniHeader) const
a6e7b125 114{
8de97894 115// check the magic number of the mini header
a6e7b125 116
b4857df7 117 if (!miniHeader) miniHeader = fMiniHeader;
c946ab02 118 if (!miniHeader) return kFALSE;
b4857df7 119 if ((miniHeader->fMagicWord[2] != 0x12) ||
120 (miniHeader->fMagicWord[1] != 0x34) ||
121 (miniHeader->fMagicWord[0] != 0x56)) {
8de97894 122 return kFALSE;
a6e7b125 123 }
a6e7b125 124 return kTRUE;
125}
126
127Bool_t AliRawReader::ReadNextInt(UInt_t& data)
128{
8de97894 129// reads the next 4 bytes at the current position
130// returns kFALSE if the data could not be read
a6e7b125 131
132 while (fCount == 0) {
c946ab02 133 if (!ReadHeader()) return kFALSE;
a6e7b125 134 }
8de97894 135 if (fCount < (Int_t) sizeof(data)) {
136 Error("ReadNextInt",
137 "too few data left (%d bytes) to read an UInt_t!", fCount);
138 return kFALSE;
139 }
140 if (!ReadNext((UChar_t*) &data, sizeof(data))) {
a6e7b125 141 Error("ReadNextInt", "could not read data!");
142 return kFALSE;
143 }
a6e7b125 144 return kTRUE;
145}
146
147Bool_t AliRawReader::ReadNextShort(UShort_t& data)
148{
8de97894 149// reads the next 2 bytes at the current position
150// returns kFALSE if the data could not be read
a6e7b125 151
152 while (fCount == 0) {
c946ab02 153 if (!ReadHeader()) return kFALSE;
a6e7b125 154 }
8de97894 155 if (fCount < (Int_t) sizeof(data)) {
156 Error("ReadNextShort",
157 "too few data left (%d bytes) to read an UShort_t!", fCount);
158 return kFALSE;
159 }
160 if (!ReadNext((UChar_t*) &data, sizeof(data))) {
a6e7b125 161 Error("ReadNextShort", "could not read data!");
162 return kFALSE;
163 }
a6e7b125 164 return kTRUE;
165}
166
167Bool_t AliRawReader::ReadNextChar(UChar_t& data)
168{
169// reads the next 1 byte at the current stream position
8de97894 170// returns kFALSE if the data could not be read
a6e7b125 171
172 while (fCount == 0) {
c946ab02 173 if (!ReadHeader()) return kFALSE;
a6e7b125 174 }
8de97894 175 if (!ReadNext((UChar_t*) &data, sizeof(data))) {
a6e7b125 176 Error("ReadNextChar", "could not read data!");
177 return kFALSE;
178 }
a6e7b125 179 return kTRUE;
180}
181
b4857df7 182
183Int_t AliRawReader::CheckData() const
184{
185// check the consistency of the data
186// derived classes should overwrite the default method which returns 0 (no err)
187
188 return 0;
189}
190