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