1 |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/event/tmtc/TmtcRecord.h,v $ |
3 |
* $Id: TmtcRecord.h,v 3.0 2005/03/04 15:54:11 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
5 |
* |
6 |
* Header file for the TmtcRecord class. |
7 |
*/ |
8 |
#ifndef TMTC_RECORD_H |
9 |
#define TMTC_RECORD_H |
10 |
|
11 |
#include "event/SubPacket.h" |
12 |
|
13 |
namespace pamela { |
14 |
/** |
15 |
* TmtcBlock data Wrapper |
16 |
*/ |
17 |
class TmtcRecord: public TObject { |
18 |
private: |
19 |
|
20 |
public: |
21 |
/** |
22 |
* Get the run name according to a certain run number. |
23 |
* @param run Run number. |
24 |
* @return a string with the run name. |
25 |
*/ |
26 |
//long Record_OBT; |
27 |
UINT32 TM_RECORD_OBT; |
28 |
UINT16 TM_DIAG_AND_BILEVEL_ACQ; |
29 |
UINT16 TM_TH_ANA[12]; |
30 |
UINT8 TM_DEA_ANA[6]; |
31 |
|
32 |
//float TM_DEA_ANA_P[16]; //! |
33 |
//float TM_TH_ANA_P[16]; //! |
34 |
|
35 |
TmtcRecord(void); |
36 |
~TmtcRecord(void){}; |
37 |
ClassDef(TmtcRecord, 1) |
38 |
}; |
39 |
} |
40 |
|
41 |
#endif /* TMTC_RECORD_H */ |
42 |
|