]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCDigitReader.h
added new helper components to libAliHLTUtil (EsdCollector and AliHLTOUTPublisher...
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCDigitReader.h
CommitLineData
a38a7850 1// XEmacs -*-C++-*-
2// @(#) $Id$
3
4#ifndef ALIHLTTPCDIGITREADER_H
5#define ALIHLTTPCDIGITREADER_H
6
297174de 7//* This file is property of and copyright by the ALICE HLT Project *
8//* ALICE Experiment at CERN, All rights reserved. *
9//* See cxx source for full Copyright notice *
a38a7850 10
600e6a1b 11/** @file AliHLTTPCDigitReader.h
27f5f8ed 12 @author Timm Steinbeck, Jochen Thaeder, Matthias Richter, Kenneth Aamodt
84645eb0 13 @date
14 @brief An abstract reader class for TPC data.
15*/
a38a7850 16
db16520a 17#include "AliHLTLogging.h"
a38a7850 18#include "TObject.h"
19
84645eb0 20/**
21 * @class AliHLTTPCDigitReader
22 * An abstract reader class for the TPC data. The Data is treated as a stream
23 * of data points, each containing row number, pad number, time bin and ADC
24 * value. The class hides the actual encoding of the data stream for the sub-
25 * sequent components like the cluster finder.
f44e97dc 26 *
27 * Some of the data decoders allow random access of the data within one channel.
28 * This functionality is available for all readers if caching is enabled (see
29 * @ref EnableCaching).
30 *
31 * The digit reader can be locked for the current channel. If locked, function
32 * @ref Next will return false if data of the current channel is finnished.
84645eb0 33 * @ingroup alihlt_tpc
34 */
db16520a 35class AliHLTTPCDigitReader : public AliHLTLogging {
a38a7850 36public:
f44e97dc 37 /** standard constructor
38 */
a38a7850 39 AliHLTTPCDigitReader();
84645eb0 40 /** destructor */
a38a7850 41 virtual ~AliHLTTPCDigitReader();
42
84645eb0 43 /**
44 * Init the reader with a data block.
45 * The function fetches the first and last row for the readout partition
600e6a1b 46 * from @ref AliHLTTPCTransform. The method is pure virtual and must be implemented
84645eb0 47 * by the child class.
48 * @param ptr pointer to data buffer
49 * @param size size of the data buffer
50 * @param patch patch (readout partition) number within the slice
51 * @param slice sector no (0 to 35)
52 */
53 virtual int InitBlock(void* ptr,unsigned long size, Int_t patch, Int_t slice)=0;
54
55 /**
56 * Old Init function.
57 * <b>Note:</b> This method is for backward compatibility only, not for further
58 * use. The <i>firstrow</i> and <i>lastrow</i> parameters are fetched from
59 * @ref AliHLTTPCTransform.
60 *
61 * @param ptr pointer to data buffer
62 * @param size size of the data buffer
63 * @param firstrow first row occuring in the data
64 * @param lastrow last row occuring in the data
65 * @param patch patch (readout partition) number within the slice
66 * @param slice sector no (0 to 35)
67 */
78b557c2 68 virtual int InitBlock(void* ptr,unsigned long size,Int_t firstrow,Int_t lastrow, Int_t patch, Int_t slice);
84645eb0 69
e03c4cc0 70 enum {
71 kNextSignal = 1,
72 kNextChannel,
73 kNextBunch,
74 kLastValidModifier
75 };
76
84645eb0 77 /**
78 * Set the reader position to the next value.
79 * If the reader was not yet initialized, initialization is carried out and
80 * the position set to the beginning of the stream (which is in essence the
81 * end of the data block due to the back-linked list).
f44e97dc 82 *
e03c4cc0 83 * The modifiers determine the unit of the positioning:
84 * - @ref kNextSignal set to the next signal value
85 * - @ref kNextChannel set at the beginning of the next channel
86 * - @ref kNextBunch set at the beginning of the next bunch within the
87 * current channel.
88 *
f44e97dc 89 * If the reader is locked for a pad/channel, Next operates only on the data
90 * belonging to the current channel and returns false at the end of the
91 * channel.
92 *
e03c4cc0 93 * The function does some basic stuff and forwards to @ref NextSignal, @ref
94 * NextBunch or @ref NextChannel depending on the modifer. This function is
95 * also necessary if the common sorting is going to be used (not yet implemented)
f44e97dc 96 * @return true if data is available, false if not
84645eb0 97 */
e03c4cc0 98 bool Next(int type=kNextSignal);
99
100 /**
101 * Set stream position to the next Pad (ALTRO channel).
102 * This is the direct entry to data access on a channel/bunch basis suited
103 * for fast data access.
104 * @return true if data is available, false if not
105 */
106 virtual bool NextChannel();
107
108 /**
109 * Set stream to the next ALTRO bunch within the current pad.
110 * This is the direct entry to data access on a channel/bunch basis suited
111 * for fast data access.
112 * @return bunch length, 0 if no data bunch available in the current pad
113 */
114 virtual int NextBunch();
84645eb0 115
70d0b23e 116 /**
117 * Get current hardware address.
118 */
119 virtual AliHLTUInt32_t GetAltroBlockHWaddr() const;
120
092a1374 121 /**
122 * Get current hardware address from row and pad number.
123 */
124 virtual AliHLTUInt32_t GetAltroBlockHWaddr(Int_t row, Int_t pad) const;
125
84645eb0 126 /**
127 * Get the row number of the current value.
128 */
a38a7850 129 virtual int GetRow()=0;
84645eb0 130
131 /**
132 * Get the pad number of the current value.
133 */
a38a7850 134 virtual int GetPad()=0;
84645eb0 135
136 /**
137 * Get the current ADC value.
138 */
a38a7850 139 virtual int GetSignal()=0;
84645eb0 140
e03c4cc0 141 /**
142 * Get pointer to the the current ADC value.
143 */
7dceaa9b 144 virtual const UInt_t* GetSignals();
e03c4cc0 145
84645eb0 146 /**
147 * Get the time bin of the current value.
e03c4cc0 148 * If @ref NextBunch has been used the function returns the
149 * first time bin of the bunch.
84645eb0 150 */
a38a7850 151 virtual int GetTime()=0;
152
27f5f8ed 153 /**
154 * Method to use old rcu fomat.
155 */
156 virtual void SetOldRCUFormat(Bool_t oldrcuformat);
157
01f43166 158 /**
159 * Method to set read unsorted flag.
160 */
161 virtual void SetUnsorted(Bool_t unsorted);
162
f44e97dc 163 /**
164 * Enable chaching of the current channel.
165 * Some of the readers allow random data access within one channel.
166 * The others have the possibility to cache the data in order to support
167 * this functionality. Caching is off by default.
168 * @param bCache the current channel is cached
169 */
170 void EnableCaching(bool bCache=false);
171
172 /**
173 * Rewind the current channel to the beginning.
174 * The function uses the reader methods @ref RewindCurrentChannel or
175 * @ref RewindToPrevChannel to set the stream position to the beginning of the
176 * current channel. If the reader is locked for a channel, the function
177 * rewinds to the begnning of that channel.
178 */
179 int RewindChannel();
180
7dceaa9b 181 /**
182 * Returns the bunch size. Used by the fast decoder.
183 */
184 virtual int GetBunchSize();
185
d2f725e4 186 /**
187 * Returns the row offset. Used by the fast decoder.
188 */
189 virtual int GetRowOffset() const;
190
f44e97dc 191 /**
192 * Access operator to the data of a specific time bin.
193 * Not clear if we can manage this.
194 */
195 //int operator[](int timebin);
196
197 class LockGuard {
198 public:
199 /** constructor, locks reader for the current pad */
200 LockGuard(AliHLTTPCDigitReader& reader)
201 : fReader(reader)
202 {reader.fLckRow=reader.GetRow(); reader.fLckPad=reader.GetPad(); reader.SetFlag(kLocked);}
203 /** destructor, unlocks reader */
204 ~LockGuard()
205 {fReader.ClearFlag(kLocked|kChannelOverwrap); fReader.fLckRow=-1; fReader.fLckPad=-1;}
206
207 private:
208 /** instance of the controlled reader */
209 AliHLTTPCDigitReader& fReader; //!transient
210 };
211
212 enum {
213 /** reader locked for the current channel */
214 kLocked = 0x1,
215 /** stream position already at the next channel */
216 kChannelOverwrap = 0x2,
217 /** reader doe not allow channel rewind */
218 kNoRewind = 0x4,
e03c4cc0 219 /** warning missing fast access methods */
220 kWarnMissFastAccess = 0x8,
f44e97dc 221 /** channel caching enabled */
222 kChannelCaching = 0x100
223 };
a38a7850 224protected:
f44e97dc 225 /**
226 * Set the reader position to the next value.
227 * This is the reader specific method called by @ref Next.
e03c4cc0 228 * @return true if data is available, false if not
f44e97dc 229 */
230 virtual bool NextSignal()=0;
231
232 /**
233 * Set a status flag of the reader.
234 * @return current value of the status flags
235 */
236 unsigned int SetFlag(unsigned int flag);
a38a7850 237
f44e97dc 238 /**
239 * Clear a status flag of the reader.
240 * @return current value of the status flags
241 */
242 unsigned int ClearFlag(unsigned int flag);
243
244 /**
245 * Check a status flag of the reader.
246 */
f32b83e1 247 int CheckFlag(unsigned int flag) const {return (fFlags&flag)!=0;}
f44e97dc 248
249 /**
250 * Rewind to the beginning.of the current channel.
251 */
252 virtual int RewindCurrentChannel();
253
254 /**
255 * Rewind to the beginning of the previous channel.
256 */
257 virtual int RewindToPrevChannel();
258
a38a7850 259private:
e03c4cc0 260 /**
261 * Print a warning on the missing fast access methods.
262 * Set corresponding flag to avoid repetitive warnings.
263 */
264 void PrintMissingFastAccessWarning();
265
f44e97dc 266 /** pad/channel is locked */
267 unsigned int fFlags; //!transient
268
269 /** row the reader is locked to */
270 int fLckRow; //!transient
271
272 /** pad the reader is locked to */
273 int fLckPad; //!transient
a38a7850 274
275 ClassDef(AliHLTTPCDigitReader, 0)
276
277};
278#endif
279