]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTAltroData.h
Changed the data format to pass to the Make methods
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTAltroData.h
1 #ifndef ALIHLTALTRODATA_H
2 #define ALIHLTALTRODATA_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 #include "Rtypes.h"
7 #include "AliHLTAltroBunch.h"
8
9 class AliHLTAltroData
10 {
11 public:
12   AliHLTAltroData();
13   ~ AliHLTAltroData();
14   bool NextBunch(AliHLTAltroBunch *altrobunch);
15
16   int GetChannel();
17   int GetChip();
18   int GetCard();
19   int GetBranch();
20   void Reset();
21
22   UInt_t *fData;
23   UInt_t *fBunchData;
24   int fDataSize;
25   int fWc;
26   int fHadd;
27   int fBunchCounter;
28   bool fIsComplete;
29
30 };
31
32
33 #endif
34