Parent Directory | Revision Log
Starting form this version: 1) includes are defined with relative (not absolute) path respect to the YODA aplication 2) RegistryEvent class is foreseen to contain post-unpack data.
1 | #ifndef EVENTTRK_EVENT_H |
2 | #define EVENTTRK_EVENT_H |
3 | |
4 | #include "SubPacket.h" |
5 | #include <TArrayI.h> |
6 | namespace pamela { |
7 | /** |
8 | * Information events about the EventTrk. |
9 | */ |
10 | class EventTrkEvent: public pamela::SubPacket { |
11 | private: |
12 | |
13 | public: |
14 | EventTrkEvent(void); |
15 | |
16 | int good0; |
17 | int nev0; |
18 | int DAQmode[12]; |
19 | 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, 1) |
46 | }; |
47 | } |
48 | |
49 | #endif /* EVENTTRK_EVENT_H */ |
50 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |