]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSRawStreamSPD.h
Changed arrays
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSPD.h
1 #ifndef ALIITSRAWSTREAMSPD_H
2 #define ALIITSRAWSTREAMSPD_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 AliITSRawStreamSPD: public AliITSRawStream {
11   public :
12     AliITSRawStreamSPD();
13
14     virtual Bool_t   Next();
15
16     inline Int_t     GetRow() const {return fCoord1;};
17     inline Int_t     GetColumn() const {return fCoord2;};
18
19   private :
20     AliRawReader     fRawReader;    // object for reading the raw data file
21     UShort_t         fData;         // data read for file
22     UInt_t           fOffset;       // offset for cell column
23     UInt_t           fHitCount;     // counter of hits
24
25     ClassDef(AliITSRawStreamSPD, 0) // class for reading ITS SPD raw digits
26 };
27
28 #endif