]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTAltroBunch.h
Added new files to build system
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTAltroBunch.h
CommitLineData
7a18a20c 1#ifndef ALIHLTALTROBUNCH_H
2#define ALIHLTALTROBUNCH_H
3
4
5#include "Rtypes.h"
6#include <iostream>
7
8using namespace std;
9
10
11class AliHLTAltroBunch
12{
13public:
14 AliHLTAltroBunch();
15 ~ AliHLTAltroBunch();
16 // unsigned int fData[1024];
17 // unsigned int fBunchSize;
18 // UInt_t fData[1024];
19 UInt_t *fData;
20 // UInt_t fBunchSize;
21 Int_t fBunchSize;
22
23 unsigned int fEndTimeBin;
24
25 private:
26 unsigned int fStartTimeBin;
27 // int fBunchPos;
28};
29
30
31
32
33#endif
34