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 | kusanagi | 1.1 | /** @file |
2 | kusanagi | 2.0 | * $Source: /home/cvsmanager/yoda/event/mcmd/McmdEvent.h,v $ |
3 | kusanagi | 5.0 | * $Id: McmdEvent.h,v 4.5 2005/08/29 08:27:32 kusanagi Exp $ |
4 | kusanagi | 2.0 | * $Author: kusanagi $ |
5 | kusanagi | 1.1 | * |
6 | * Header file for the McmdEvent class. | ||
7 | */ | ||
8 | #ifndef MCMD_EVENT_H | ||
9 | #define MCMD_EVENT_H | ||
10 | |||
11 | kusanagi | 4.5 | #include "../SubPacket.h" |
12 | #include "McmdRecord.h" | ||
13 | kusanagi | 1.1 | #include <TClonesArray.h> |
14 | |||
15 | namespace pamela { | ||
16 | /** | ||
17 | * McmdEvent data Wrapper | ||
18 | kusanagi | 4.1 | * |
19 | * The McmdEvent represents the "McmdEvent" packet generated by the PAMELA CPU software. | ||
20 | * Is the results of several read of the PAMELA TMTC board. | ||
21 | kusanagi | 1.1 | */ |
22 | class McmdEvent: public pamela::SubPacket { | ||
23 | private: | ||
24 | static TClonesArray *fgRecords; | ||
25 | |||
26 | public: | ||
27 | kusanagi | 4.1 | /** |
28 | * Contain multiple instances of pamela::McmdRecord type. | ||
29 | */ | ||
30 | kusanagi | 1.1 | TClonesArray *Records; |
31 | kusanagi | 4.1 | |
32 | kusanagi | 1.1 | int Mcmd_crc_ok; |
33 | |||
34 | McmdEvent(void); | ||
35 | ~McmdEvent(void); | ||
36 | |||
37 | ClassDef(McmdEvent, 1) | ||
38 | }; | ||
39 | } | ||
40 | |||
41 | #endif /* MCMD_EVENT_H */ | ||
42 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |