1 |
mocchiut |
1.1 |
/** @file |
2 |
|
|
* $Source: /repository/event/tsbb/TsbBRecord.h,v $ |
3 |
|
|
* $Id: TsbBRecord.h,v 1.1 2008-01-11 17:14:22 messineo Exp $ |
4 |
|
|
* $Author: messineo $ |
5 |
|
|
* |
6 |
|
|
* Header file for the TsbBRecord class. |
7 |
|
|
*/ |
8 |
|
|
#ifndef TsbB_RECORD_H |
9 |
|
|
#define TsbB_RECORD_H |
10 |
|
|
#include "../SubPacket.h" |
11 |
|
|
namespace pamela { |
12 |
|
|
/** |
13 |
|
|
* TsbBBlock data Wrapper |
14 |
|
|
*/ |
15 |
|
|
class TsbBRecord: public TObject { |
16 |
|
|
private: |
17 |
|
|
|
18 |
|
|
public: |
19 |
|
|
/** |
20 |
|
|
* Get the run name according to a certain run number. |
21 |
|
|
*/ |
22 |
|
|
UINT32 RECORD_OBT; |
23 |
|
|
UINT8 STATUS_CODE; |
24 |
|
|
UINT16 B_FIELD[7]; |
25 |
|
|
|
26 |
|
|
TsbBRecord(void); |
27 |
|
|
~TsbBRecord(void){}; |
28 |
|
|
ClassDef(TsbBRecord, 1) |
29 |
|
|
}; |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
#endif /* TSBB_RECORD_H */ |
33 |
|
|
|