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 | /** @file |
2 | * $Source: /home/cvsmanager/yoda/event/physics/S4/S4Event.h,v $ | ||
3 | kusanagi | 3.0 | * $Id: S4Event.h,v 1.5 2005/01/17 08:58:44 kusanagi Exp $ |
4 | kusanagi | 1.1 | * $Author: kusanagi $ |
5 | * | ||
6 | * Header file for the raw anticoincidence events | ||
7 | */ | ||
8 | #ifndef S4_EVENT_H | ||
9 | #define S4_EVENT_H | ||
10 | |||
11 | #include "event/SubPacket.h" | ||
12 | |||
13 | namespace pamela { | ||
14 | /** | ||
15 | * Namespace for all code related to the anticoincidence unit. | ||
16 | */ | ||
17 | namespace S4 { | ||
18 | /** | ||
19 | * Techmodel S4 subpacket | ||
20 | */ | ||
21 | class S4Event: public pamela::SubPacket { | ||
22 | private: | ||
23 | |||
24 | public: | ||
25 | |||
26 | kusanagi | 1.3 | UINT8 S4_REG_STATUS; |
27 | UINT16 S4_DATA; | ||
28 | UINT8 S4_CMD_NUM; | ||
29 | UINT16 S4_RESP_LENGHT; | ||
30 | UINT8 S4_OVERALL_CHKCODE; | ||
31 | kusanagi | 1.4 | UINT8 unpackError; |
32 | kusanagi | 1.1 | |
33 | S4Event(void); | ||
34 | ~S4Event(void); | ||
35 | |||
36 | kusanagi | 1.5 | ClassDef(S4Event, 2) |
37 | kusanagi | 1.1 | }; |
38 | } | ||
39 | } | ||
40 | #endif /* S4_EVENT_H */ |
ViewVC Help | |
Powered by ViewVC 1.1.23 |