2 |
#define EVENTTRK_EVENT_H |
#define EVENTTRK_EVENT_H |
3 |
|
|
4 |
#include "SubPacket.h" |
#include "SubPacket.h" |
5 |
|
#include <TArrayI.h> |
6 |
namespace pamela { |
namespace pamela { |
7 |
/** |
/** |
8 |
* Information events about the EventTrk. |
* Information events about the EventTrk. |
13 |
public: |
public: |
14 |
EventTrkEvent(void); |
EventTrkEvent(void); |
15 |
|
|
16 |
/* to be defined */ |
int good0; |
17 |
|
int nev0; |
18 |
|
int DAQmode[12]; |
19 |
ClassDef(EventTrkEvent, 1) |
int DSPnumber[12]; |
20 |
|
int DATAlength[12]; |
21 |
|
int eventn[12]; |
22 |
|
int nclust[12]; |
23 |
|
int cutc[12]; |
24 |
|
int cutcl[12]; |
25 |
|
int addrcluster[12][3]; |
26 |
|
int signcluster[12][3]; |
27 |
|
int fc[12]; |
28 |
|
int compressiontime[12]; |
29 |
|
int fl5[12]; |
30 |
|
int fl4[12]; |
31 |
|
int fl3[12]; |
32 |
|
int fl2[12]; |
33 |
|
int fl1[12]; |
34 |
|
int fl6[12]; |
35 |
|
int checksum[12]; |
36 |
|
int pnum[12]; |
37 |
|
int cmdnum[12]; |
38 |
|
int bid[12]; |
39 |
|
int alarm[12]; |
40 |
|
int aswr[12]; |
41 |
|
int TOTDATAlength; |
42 |
|
TArrayI *TrackerData; |
43 |
|
//int datatracker[49152]; |
44 |
|
UINT8 unpackError; |
45 |
|
ClassDef(EventTrkEvent, 2) |
46 |
}; |
}; |
47 |
} |
} |
48 |
|
|