/** @file * $Source: /home/cvsmanager/yoda/event/physics/S4/S4Event.h,v $ * $Id: S4Event.h,v 1.4 2005/01/13 14:46:05 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the raw anticoincidence events */ #ifndef S4_EVENT_H #define S4_EVENT_H #include "event/SubPacket.h" namespace pamela { /** * Namespace for all code related to the anticoincidence unit. */ namespace S4 { /** * Techmodel S4 subpacket */ class S4Event: public pamela::SubPacket { private: public: UINT8 S4_REG_STATUS; UINT16 S4_DATA; UINT8 S4_CMD_NUM; UINT16 S4_RESP_LENGHT; UINT8 S4_OVERALL_CHKCODE; UINT8 unpackError; S4Event(void); ~S4Event(void); ClassDef(S4Event, 2) }; } } #endif /* S4_EVENT_H */