]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSRawStreamSDDv3.h
AliIT
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSDDv3.h
1 #ifndef ALIITSRAWSTREAMSDDV3_H
2 #define ALIITSRAWSTREAMSDDV3_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 ///
10 /// This class provides access to ITS SDD digits in test beam raw data.
11 ///
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "AliITSRawStreamSDD.h"
15
16 class AliRawReader;
17
18
19 class AliITSRawStreamSDDv3: public AliITSRawStreamSDD {
20   public :
21     AliITSRawStreamSDDv3(AliRawReader* rawReader);
22     virtual ~AliITSRawStreamSDDv3() {};
23
24     virtual Bool_t   Next();
25     virtual Int_t    GetJitter();
26   private :
27
28
29     ClassDef(AliITSRawStreamSDDv3, 1) // class for reading ITS SDD raw digits
30 };
31
32 #endif