]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliTPCRawStream.h
Putting the ALTRO mapping in RAW as a base class. TPC,PHOS and FMD mapping classes...
[u/mrichter/AliRoot.git] / RAW / AliTPCRawStream.h
CommitLineData
f8aae377 1#ifndef ALITPCRAWSTREAM_H
2#define ALITPCRAWSTREAM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
bea6b2a4 6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9///
10/// This class provides access to TPC digits in raw data.
11///
12///////////////////////////////////////////////////////////////////////////////
13
f8aae377 14#include <TObject.h>
f8aae377 15#include "AliTPCCompression.h"
16
42d20574 17class AliRawReader;
18
f8aae377 19
20class AliTPCRawStream: public TObject {
21 public :
22 AliTPCRawStream(AliRawReader* rawReader);
42d20574 23 AliTPCRawStream(const AliTPCRawStream& stream);
24 AliTPCRawStream& operator = (const AliTPCRawStream& stream);
f8aae377 25 virtual ~AliTPCRawStream();
a8ffd46b 26 void Reset();
f8aae377 27
28 virtual Bool_t Next();
29
a8ffd46b 30 inline Int_t GetSector() const {return fSector;};
31 inline Int_t GetPrevSector() const {return fPrevSector;};
32 inline Bool_t IsNewSector() const {return fSector != fPrevSector;};
33 inline Int_t GetRow() const {return fRow;};
34 inline Int_t GetPrevRow() const {return fPrevRow;};
35 inline Bool_t IsNewRow() const {return (fRow != fPrevRow) || IsNewSector();};
36 inline Int_t GetPad() const {return fPad;};
37 inline Int_t GetPrevPad() const {return fPrevPad;};
38 inline Bool_t IsNewPad() const {return (fPad != fPrevPad) || IsNewRow();};
39 inline Int_t GetTime() const {return fTime;};
40 inline Int_t GetSignal() const {return fSignal;};
f8aae377 41
42 protected :
42d20574 43 UShort_t Get10BitWord(UChar_t* buffer, Int_t position) const;
f8aae377 44
45 AliRawReader* fRawReader; // object for reading the raw data
46
47 AliTPCCompression fCompression; // object for decompression
42d20574 48 static const Int_t fgkNumTables = 5; // number of (de)compression tables
f8aae377 49 static AliTPCHNode** fgRootNode; // (de)compression tables
95e50ecd 50 static UInt_t** fgLUTDimension; // LUT for fast decompression
51 static AliTPCHNode***fgLUTNode; // LUT for fast decompression
f8aae377 52
42d20574 53 static const Int_t fgkDataMax = 10000000; // size of array for uncompressed raw data
f8aae377 54 UShort_t* fData; // uncompressed raw data
55 Int_t fDataSize; // actual size of the uncompressed raw data
56 Int_t fPosition; // current position in fData
57 Int_t fCount; // counter of words to be read for current trailer
58 Int_t fBunchLength; // remaining number of signal bins in the current bunch
42d20574 59 static const Int_t fgkOffset = 1; // offset of signal
f8aae377 60
61 Int_t fSector; // index of current sector
62 Int_t fPrevSector; // index of previous sector
63 Int_t fRow; // index of current row
64 Int_t fPrevRow; // index of previous row
65 Int_t fPad; // index of current pad
66 Int_t fPrevPad; // index of previous pad
67 Int_t fTime; // index of current time bin
68 Int_t fSignal; // signal in ADC counts
69
70 ClassDef(AliTPCRawStream, 0) // base class for reading TPC raw digits
71};
72
73#endif