]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliITSRawStreamSSD.h
access to equipment header data, reading of DATE files, support of DATE events withou...
[u/mrichter/AliRoot.git] / RAW / AliITSRawStreamSSD.h
CommitLineData
c391f9d9 1#ifndef ALIITSRAWSTREAMSSD_H
2#define ALIITSRAWSTREAMSSD_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6#include "AliITSRawStream.h"
42d20574 7
8class AliRawReader;
c391f9d9 9
10
11class AliITSRawStreamSSD: public AliITSRawStream {
12 public :
7941072e 13 AliITSRawStreamSSD(AliRawReader* rawReader);
42d20574 14 virtual ~AliITSRawStreamSSD() {};
c391f9d9 15
16 virtual Bool_t Next();
17
42d20574 18 Int_t GetSideFlag() const {return fCoord1;};
19 Int_t GetStrip() const {return fCoord2;};
c391f9d9 20
21 private :
42d20574 22 static const Int_t fgkDDLsNumber = 16; // number of DDLs in SSD
23 static const Int_t fgkModulesPerDDL = 109; // number of modules in each DDL
24 static const Int_t fgkDDLModuleMap[fgkDDLsNumber][fgkModulesPerDDL]; // mapping DDL/module -> module number
25
c391f9d9 26 UInt_t fData; // data read for file
27
28 ClassDef(AliITSRawStreamSSD, 0) // class for reading ITS SSD raw digits
29};
30
31#endif