]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawStreamSDD.h
Modifications to increase the speed of SDD raw data deconding (F. Prino)
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSDD.h
CommitLineData
2906f4c2 1#ifndef ALIITSRAWSTREAMSDD_H
2#define ALIITSRAWSTREAMSDD_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///
1ba0280f 10/// This class provides access to ITS SDD digits in raw data
11/// (default=simulated data).
2906f4c2 12///////////////////////////////////////////////////////////////////////////////
13
14#include "AliITSRawStream.h"
979b5a5f 15#include "AliITSDDLModuleMapSDD.h"
2906f4c2 16
17class AliRawReader;
18
19
20class AliITSRawStreamSDD: public AliITSRawStream {
21 public :
22 AliITSRawStreamSDD(AliRawReader* rawReader);
979b5a5f 23 AliITSRawStreamSDD(const AliITSRawStreamSDD& rs);
24 AliITSRawStreamSDD& operator=(const AliITSRawStreamSDD& rs);
25 virtual ~AliITSRawStreamSDD();
2906f4c2 26
27 virtual Bool_t Next();
28
1ba0280f 29 virtual Int_t GetAnode() const {return fCoord1;}
30 virtual Int_t GetTime() const {return fCoord2;}
31 virtual Int_t GetChannel() const {return fChannel;}
a97b3678 32 virtual Int_t ReadJitter() const {return 0;}
33 virtual Int_t GetCarlosId() const {return fCarlosId;}
979b5a5f 34 virtual Int_t GetEventId() const {return fEventId;}
5dfa68c5 35
979b5a5f 36 virtual void SetDDLModuleMap(AliITSDDLModuleMapSDD* ddlsdd){fDDLModuleMap->SetDDLMap(ddlsdd);}
83ec5e27 37 virtual void SetLowCarlosThreshold(Int_t th, Int_t i)
a97b3678 38 {fLowThreshold[i]=th;}
83ec5e27 39 virtual void SetZeroSuppLowThreshold(Int_t iMod, Int_t iSid, Int_t th)
40 {fLowThresholdArray[iMod][iSid]=th;}
979b5a5f 41 Int_t GetModuleNumber(UInt_t iDDL, UInt_t iModule) const {
42 return fDDLModuleMap->GetModuleNumber(iDDL,iModule);
43 }
a97b3678 44 virtual void Reset();
2906f4c2 45
83ec5e27 46 enum {kSDDModules = 260}; // number of SDD modules
47 enum {kSPDModules = 240}; // number of SPD modules (used as offset)
48 enum {kDDLsNumber = 24}; // number of DDLs in SDD
49 enum {kModulesPerDDL = 12}; // number of modules in each DDL
765a9f95 50 enum {kCarlosWords = 12}; // number of FIFOCARLOS Words
83ec5e27 51 enum {kFifoWords = 4}; // number of FIFO Words
765a9f95 52 enum ESDDRawStreamError {
39a7c5cc 53 kDataError = 1,
54 kDataFormatErr = 2
55 };
1ba0280f 56 protected:
83ec5e27 57 virtual Bool_t SkipHeaderWord();
1ba0280f 58 virtual UInt_t ReadBits();
59 virtual Int_t DecompAmbra(Int_t value) const;
2906f4c2 60
38300302 61 static const UInt_t fgkCodeLength[8]; //code length
2906f4c2 62
979b5a5f 63 AliITSDDLModuleMapSDD* fDDLModuleMap; // mapping DDL/module -> module number
2906f4c2 64 UInt_t fData; // data read for file
83ec5e27 65 Int_t fSkip[kDDLsNumber];// obsolete -- needed to compile AliITSRawStreamSDDv2
a97b3678 66 Int_t fEventId; // event ID from header
14dceddf 67 Int_t fCarlosId; // carlos ID
1ba0280f 68 Int_t fChannel; // current channel
69 Int_t fJitter; // jitter between L0 and pascal stop (x25ns)
a97b3678 70 ULong64_t fChannelData[kModulesPerDDL][2];// packed data for the 2 channels
71 UInt_t fLastBit[kModulesPerDDL][2]; // last filled bit in fChannelData
72 UInt_t fChannelCode[kModulesPerDDL][2];// current channel code
73 Bool_t fReadCode[kModulesPerDDL][2]; // next bits are code or data
74 UInt_t fReadBits[kModulesPerDDL][2]; // number of bits to read
83ec5e27 75 Int_t fLowThresholdArray[kSDDModules][2]; // array with low thresholds for all modules
76 Int_t fLowThreshold[2]; // obsolete -- needed to compile AliITSRawStreamSDDv2
14dceddf 77 Int_t fNfifo[kFifoWords]; // FIFO number
a97b3678 78 Int_t fTimeBin[kModulesPerDDL][2]; // current timebin [ncarlos][nchannels]
79 Int_t fAnode[kModulesPerDDL][2]; // current anode [ncarlos][nchannels]
80 Int_t fDDL; //current ddl number
14dceddf 81 UInt_t fICarlosWord[kCarlosWords]; // Carlos words
82 UInt_t fIFifoWord[kFifoWords]; // FIFO words
83 Int_t fICountFoot[kModulesPerDDL]; // counter for carlos footer words
14dceddf 84 Int_t fResetSkip; //if it is 0, the ResetSkip Funcion is called
70881050 85 ClassDef(AliITSRawStreamSDD, 10) // class for reading ITS SDD raw digits
2906f4c2 86};
87
88#endif