]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliITSRawStreamSSD.h
Classes for reading raw data moved to the RAW module. New on-line MONITORING module...
[u/mrichter/AliRoot.git] / RAW / AliITSRawStreamSSD.h
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"
7 #include "AliRawReader.h"
8
9
10 class AliITSRawStreamSSD: public AliITSRawStream {
11   public :
12     AliITSRawStreamSSD(AliRawReader* rawReader);
13
14     virtual Bool_t   Next();
15
16     inline Int_t     GetSideFlag() const {return fCoord1;};
17     inline Int_t     GetStrip() const {return fCoord2;};
18
19     static const Int_t kDDLsNumber = 16;      // number of DDLs in SSD
20     static const Int_t kModulesPerDDL = 109;  // number of modules in each DDL 
21     static const Int_t kDDLModuleMap[kDDLsNumber][kModulesPerDDL];
22
23   private :
24     UInt_t           fData;         // data read for file
25
26     ClassDef(AliITSRawStreamSSD, 0) // class for reading ITS SSD raw digits
27 };
28
29 #endif