Line data Source code
1 : #ifndef ALIITSRAWSTREAMSSDV1_H
2 : #define ALIITSRAWSTREAMSSDV1_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 SSD digits in raw data.
11 : ///
12 : ///////////////////////////////////////////////////////////////////////////////
13 :
14 : #include "AliITSRawStreamSSD.h"
15 :
16 : class AliRawReader;
17 :
18 :
19 0 : class AliITSRawStreamSSDv1: public AliITSRawStreamSSD {
20 : public :
21 : AliITSRawStreamSSDv1(AliRawReader* rawReader);
22 0 : virtual ~AliITSRawStreamSSDv1() {};
23 :
24 : virtual Bool_t Next();
25 :
26 0 : Int_t GetADC() const {return fADC;}
27 0 : Int_t GetADModule() const {return fADModule;}
28 :
29 : protected :
30 :
31 : Int_t fADModule; // FEROM module
32 : Int_t fADC; // ADC within the ADModule
33 :
34 :
35 118 : ClassDef(AliITSRawStreamSSDv1, 0) // class for reading beam test ITS digits
36 : };
37 :
38 : #endif
39 :
|