Parent Directory | Revision Log
Error proof version. Implemented all detectors packets plus all the main telemetries packets. Missing all the Init and Alarm packets. Disabled CRC control on VarDump, ArrDump, TabDump for CPU debugging needs (the data formats seems correct even if CRC get wrong)
1 | kusanagi | 1.1 | #ifndef EVENTTRK_EVENT_H |
2 | #define EVENTTRK_EVENT_H | ||
3 | |||
4 | #include "SubPacket.h" | ||
5 | kusanagi | 2.1 | #include <TArrayI.h> |
6 | kusanagi | 1.1 | 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 | kusanagi | 2.1 | 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 | kusanagi | 2.2 | UINT8 unpackError; |
45 | kusanagi | 1.1 | ClassDef(EventTrkEvent, 1) |
46 | }; | ||
47 | } | ||
48 | |||
49 | #endif /* EVENTTRK_EVENT_H */ | ||
50 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |