Parent Directory
|
Revision Log
Imported sources, 23/09/2008
| 1 | /** @file |
| 2 | * $Source: /repository/event/tmtc/TmtcEvent.h,v $ |
| 3 | * $Id: TmtcEvent.h,v 1.1 2008-01-11 17:14:19 messineo Exp $ |
| 4 | * $Author: messineo $ |
| 5 | * |
| 6 | * Header file for the TmtcEvent class. |
| 7 | */ |
| 8 | #ifndef TMTC_EVENT_H |
| 9 | #define TMTC_EVENT_H |
| 10 | |
| 11 | |
| 12 | #include "TmtcRecord.h" |
| 13 | #include <TClonesArray.h> |
| 14 | |
| 15 | using namespace std; |
| 16 | |
| 17 | namespace pamela { |
| 18 | /** |
| 19 | * TmtcEvent data Wrapper. |
| 20 | * |
| 21 | * The TmtcEvent represents the "TmtcEvent" packet generated by the PAMELA CPU software |
| 22 | * and is a collection of several requests to the PAMELA TMTC board. |
| 23 | */ |
| 24 | class TmtcEvent: public pamela::SubPacket { |
| 25 | private: |
| 26 | static TClonesArray *fgRecords; |
| 27 | public: |
| 28 | |
| 29 | TClonesArray* Records; |
| 30 | |
| 31 | TmtcEvent(void); |
| 32 | ~TmtcEvent(void); |
| 33 | |
| 34 | ClassDef(TmtcEvent, 1) |
| 35 | }; |
| 36 | } |
| 37 | |
| 38 | #endif /* TMTC_EVENT_H */ |
| 39 |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |