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 | #ifndef RUNHEADER_EVENT_H |
2 | #define RUNHEADER_EVENT_H |
3 | |
4 | #include "SubPacket.h" |
5 | |
6 | namespace pamela { |
7 | /** |
8 | * Information events about the RunHeader. |
9 | */ |
10 | class RunHeaderEvent: public pamela::SubPacket { |
11 | private: |
12 | |
13 | public: |
14 | RunHeaderEvent(void); |
15 | |
16 | UINT32 COMPILATIONTIMESTAMP; |
17 | UINT8 RM_ACQ_SETTING_MODE; |
18 | UINT32 OBT_TIME_SYNC; |
19 | UINT32 LAST_TYME_SYNC_INFO; |
20 | UINT8 FAVOURITE_WORKING_SCHEDULE; |
21 | UINT8 EFFECTIVE_WORKING_SCHEDULE; |
22 | UINT32 PRH_VAR_TRIGGER_MODE_A; |
23 | UINT32 PRH_VAR_TRIGGER_MODE_B; |
24 | UINT8 RM_ACQ_AFTER_CALIB; |
25 | UINT32 TRK_CALIB_USED; |
26 | UINT32 ACQ_BUILD_INFO; |
27 | UINT8 ACQ_VAR_INFO; |
28 | UINT8 CAL_DSP_MASK; |
29 | ClassDef(RunHeaderEvent, 1) |
30 | }; |
31 | } |
32 | |
33 | #endif /* RUNHEADER_EVENT_H */ |
34 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |