]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCDigitReader.h
moved recparam retrieval inside event loop so they are properly set by the framework
[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
5863c71a 70 /**
71 * Reset digit reader and release internal structures.
72 */
73 virtual int Reset() {return 0;}
74
e03c4cc0 75 enum {
76 kNextSignal = 1,
77 kNextChannel,
78 kNextBunch,
79 kLastValidModifier
80 };
81
84645eb0 82 /**
83 * Set the reader position to the next value.
84 * If the reader was not yet initialized, initialization is carried out and
85 * the position set to the beginning of the stream (which is in essence the
86 * end of the data block due to the back-linked list).
f44e97dc 87 *
e03c4cc0 88 * The modifiers determine the unit of the positioning:
89 * - @ref kNextSignal set to the next signal value
90 * - @ref kNextChannel set at the beginning of the next channel
91 * - @ref kNextBunch set at the beginning of the next bunch within the
92 * current channel.
93 *
f44e97dc 94 * If the reader is locked for a pad/channel, Next operates only on the data
95 * belonging to the current channel and returns false at the end of the
96 * channel.
97 *
e03c4cc0 98 * The function does some basic stuff and forwards to @ref NextSignal, @ref
99 * NextBunch or @ref NextChannel depending on the modifer. This function is
100 * also necessary if the common sorting is going to be used (not yet implemented)
f44e97dc 101 * @return true if data is available, false if not
84645eb0 102 */
e03c4cc0 103 bool Next(int type=kNextSignal);
104
105 /**
106 * Set stream position to the next Pad (ALTRO channel).
107 * This is the direct entry to data access on a channel/bunch basis suited
108 * for fast data access.
109 * @return true if data is available, false if not
110 */
111 virtual bool NextChannel();
112
113 /**
114 * Set stream to the next ALTRO bunch within the current pad.
115 * This is the direct entry to data access on a channel/bunch basis suited
116 * for fast data access.
117 * @return bunch length, 0 if no data bunch available in the current pad
118 */
119 virtual int NextBunch();
84645eb0 120
70d0b23e 121 /**
122 * Get current hardware address.
123 */
124 virtual AliHLTUInt32_t GetAltroBlockHWaddr() const;
125
092a1374 126 /**
127 * Get current hardware address from row and pad number.
128 */
129 virtual AliHLTUInt32_t GetAltroBlockHWaddr(Int_t row, Int_t pad) const;
130
84645eb0 131 /**
132 * Get the row number of the current value.
133 */
a38a7850 134 virtual int GetRow()=0;
84645eb0 135
136 /**
137 * Get the pad number of the current value.
138 */
a38a7850 139 virtual int GetPad()=0;
84645eb0 140
141 /**
142 * Get the current ADC value.
143 */
a38a7850 144 virtual int GetSignal()=0;
84645eb0 145
e03c4cc0 146 /**
147 * Get pointer to the the current ADC value.
148 */
7dceaa9b 149 virtual const UInt_t* GetSignals();
e03c4cc0 150
84645eb0 151 /**
152 * Get the time bin of the current value.
e03c4cc0 153 * If @ref NextBunch has been used the function returns the
154 * first time bin of the bunch.
84645eb0 155 */
a38a7850 156 virtual int GetTime()=0;
157
27f5f8ed 158 /**
159 * Method to use old rcu fomat.
160 */
161 virtual void SetOldRCUFormat(Bool_t oldrcuformat);
162
01f43166 163 /**
164 * Method to set read unsorted flag.
165 */
166 virtual void SetUnsorted(Bool_t unsorted);
167
f44e97dc 168 /**
169 * Enable chaching of the current channel.
170 * Some of the readers allow random data access within one channel.
171 * The others have the possibility to cache the data in order to support
172 * this functionality. Caching is off by default.
173 * @param bCache the current channel is cached
174 */
175 void EnableCaching(bool bCache=false);
176
177 /**
178 * Rewind the current channel to the beginning.
179 * The function uses the reader methods @ref RewindCurrentChannel or
180 * @ref RewindToPrevChannel to set the stream position to the beginning of the
181 * current channel. If the reader is locked for a channel, the function
182 * rewinds to the begnning of that channel.
183 */
184 int RewindChannel();
185
7dceaa9b 186 /**
187 * Returns the bunch size. Used by the fast decoder.
188 */
189 virtual int GetBunchSize();
190
d2f725e4 191 /**
192 * Returns the row offset. Used by the fast decoder.
193 */
194 virtual int GetRowOffset() const;
195
f44e97dc 196 /**
197 * Access operator to the data of a specific time bin.
198 * Not clear if we can manage this.
199 */
200 //int operator[](int timebin);
201
202 class LockGuard {
203 public:
204 /** constructor, locks reader for the current pad */
205 LockGuard(AliHLTTPCDigitReader& reader)
206 : fReader(reader)
207 {reader.fLckRow=reader.GetRow(); reader.fLckPad=reader.GetPad(); reader.SetFlag(kLocked);}
208 /** destructor, unlocks reader */
209 ~LockGuard()
210 {fReader.ClearFlag(kLocked|kChannelOverwrap); fReader.fLckRow=-1; fReader.fLckPad=-1;}
211
212 private:
213 /** instance of the controlled reader */
214 AliHLTTPCDigitReader& fReader; //!transient
215 };
216
217 enum {
218 /** reader locked for the current channel */
219 kLocked = 0x1,
220 /** stream position already at the next channel */
221 kChannelOverwrap = 0x2,
222 /** reader doe not allow channel rewind */
223 kNoRewind = 0x4,
e03c4cc0 224 /** warning missing fast access methods */
225 kWarnMissFastAccess = 0x8,
f44e97dc 226 /** channel caching enabled */
227 kChannelCaching = 0x100
228 };
a38a7850 229protected:
f44e97dc 230 /**
231 * Set the reader position to the next value.
232 * This is the reader specific method called by @ref Next.
e03c4cc0 233 * @return true if data is available, false if not
f44e97dc 234 */
235 virtual bool NextSignal()=0;
236
237 /**
238 * Set a status flag of the reader.
239 * @return current value of the status flags
240 */
241 unsigned int SetFlag(unsigned int flag);
a38a7850 242
f44e97dc 243 /**
244 * Clear a status flag of the reader.
245 * @return current value of the status flags
246 */
247 unsigned int ClearFlag(unsigned int flag);
248
249 /**
250 * Check a status flag of the reader.
251 */
f32b83e1 252 int CheckFlag(unsigned int flag) const {return (fFlags&flag)!=0;}
f44e97dc 253
254 /**
255 * Rewind to the beginning.of the current channel.
256 */
257 virtual int RewindCurrentChannel();
258
259 /**
260 * Rewind to the beginning of the previous channel.
261 */
262 virtual int RewindToPrevChannel();
263
a38a7850 264private:
e03c4cc0 265 /**
266 * Print a warning on the missing fast access methods.
267 * Set corresponding flag to avoid repetitive warnings.
268 */
269 void PrintMissingFastAccessWarning();
270
f44e97dc 271 /** pad/channel is locked */
272 unsigned int fFlags; //!transient
273
274 /** row the reader is locked to */
275 int fLckRow; //!transient
276
277 /** pad the reader is locked to */
278 int fLckPad; //!transient
a38a7850 279
280 ClassDef(AliHLTTPCDigitReader, 0)
281
282};
283#endif
284