]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliAltroRawStream.h
New version of the Altro raw data coding and decoding. Two basic changes. 1. The...
[u/mrichter/AliRoot.git] / RAW / AliAltroRawStream.h
CommitLineData
3ea47630 1#ifndef ALIALTRORAWSTREAM_H
2#define ALIALTRORAWSTREAM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9///
10/// This is a base class for reading raw data digits in Altro format
11///
12///////////////////////////////////////////////////////////////////////////////
13
14#include <TObject.h>
15
16class AliRawReader;
17
3ea47630 18class AliAltroRawStream: public TObject {
19 public :
20 AliAltroRawStream(AliRawReader* rawReader);
21 virtual ~AliAltroRawStream();
22
3a291af4 23 virtual void Reset();
24 virtual Bool_t Next();
3ea47630 25
e7fd2555 26 inline Int_t GetDDLNumber() const { return fDDLNumber; } // Provide current DDL number
27 inline Int_t GetPrevDDLNumber() const { return fPrevDDLNumber; }// Provide previous DDL number
28 inline Bool_t IsNewDDLNumber() const {return (fDDLNumber != fPrevDDLNumber);};
5e6235b5 29 inline Int_t GetRCUId() const { return fRCUId; } // Provide current RCU identifier
30 inline Int_t GetPrevRCUId() const { return fPrevRCUId; } // Provide previous RCU identifier
31 inline Bool_t IsNewRCUId() const {return (fRCUId != fPrevRCUId);};
3a291af4 32 inline Int_t GetHWAddress() const { return fHWAddress; } // Provide current hardware address
33 inline Int_t GetPrevHWAddress() const { return fPrevHWAddress; } // Provide previous hardware address
e7fd2555 34 inline Bool_t IsNewHWAddress() const {return (fHWAddress != fPrevHWAddress) || IsNewDDLNumber();};
3a291af4 35 inline Int_t GetTime() const { return fTime; } // Provide index of current time bin
e7fd2555 36 inline Int_t GetPrevTime() const { return fPrevTime; } // Provide index of previous time bin
37 inline Bool_t IsNewTime() const {return (fTime != fPrevTime) || IsNewHWAddress();};
3a291af4 38 inline Int_t GetSignal() const { return fSignal; } // Provide signal in ADC counts
39 inline Int_t GetTimeLength() const { return fTimeBunch; } // Provide total length of current time bunch
0ba5477a 40
5e6235b5 41 Bool_t GetRCUTrailerData(UChar_t*& data) const; // Provide a pointer to RCU trailer
42 inline Int_t GetRCUTrailerSize() const { return fRCUTrailerSize; } // Provide size of RCU trailer
43
e7fd2555 44 void SelectRawData(Int_t detId); // Select raw data for specific detector id
45
3ea47630 46 protected:
3a291af4 47 AliAltroRawStream(const AliAltroRawStream& stream);
48 AliAltroRawStream& operator = (const AliAltroRawStream& stream);
49
e7fd2555 50 Bool_t fNoAltroMapping; // temporary flag in case of no altro mapping is provided
51 Short_t fSegmentation[3]; // temporary container for the dummy trailer, to be removed
52
53 private :
3a291af4 54
e7fd2555 55 UShort_t GetNextWord();
56 Bool_t ReadTrailer();
57 Bool_t ReadDummyTrailer();
58 void ReadBunch();
59 void ReadAmplitude();
60 Int_t GetPosition();
5e6235b5 61 UInt_t Get32bitWord(Int_t &index);
e7fd2555 62
63 Int_t fDDLNumber; // index of current DDL number
5e6235b5 64 Int_t fPrevDDLNumber;// index of previous DDL number
65 Int_t fRCUId; // current RCU identifier
66 Int_t fPrevRCUId; // previous RCU identifier
3a291af4 67 Short_t fHWAddress; // current hardware address
68 Short_t fPrevHWAddress;// previous hardware address
3ea47630 69 Int_t fTime; // index of current time bin
e7fd2555 70 Int_t fPrevTime; // index of previous time bin
3ea47630 71 Int_t fSignal; // signal in ADC counts
634692a1 72 Int_t fTimeBunch; // total length of the current time bunch
3ea47630 73
74 AliRawReader* fRawReader; // object for reading the raw data
75
3a291af4 76
e7fd2555 77 UChar_t* fData; // raw data
3ea47630 78
3ea47630 79 Int_t fPosition; // current (10 bit) position in fData
80 Int_t fCount; // counter of words to be read for current trailer
81 Int_t fBunchLength; // remaining number of signal bins in the current bunch
82
5e6235b5 83 UChar_t* fRCUTrailerData; // pointer to RCU trailer data
84 Int_t fRCUTrailerSize; // size of RCU trailer data in bytes
85
3ea47630 86 ClassDef(AliAltroRawStream, 0) // base class for reading Altro raw digits
87};
88
89#endif