]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliITSRawStreamSPD.h
return type of GetDebugLevel set to Int_t
[u/mrichter/AliRoot.git] / RAW / AliITSRawStreamSPD.h
CommitLineData
c391f9d9 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"
c391f9d9 7
8
9class AliITSRawStreamSPD: public AliITSRawStream {
10 public :
7941072e 11 AliITSRawStreamSPD(AliRawReader* rawReader);
42d20574 12 virtual ~AliITSRawStreamSPD() {};
c391f9d9 13
14 virtual Bool_t Next();
15
42d20574 16 Int_t GetRow() const {return fCoord1;};
17 Int_t GetColumn() const {return fCoord2;};
c391f9d9 18
19 private :
c391f9d9 20 UShort_t fData; // data read for file
21 UInt_t fOffset; // offset for cell column
22 UInt_t fHitCount; // counter of hits
23
24 ClassDef(AliITSRawStreamSPD, 0) // class for reading ITS SPD raw digits
25};
26
27#endif