1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/event/mcmd/McmdRecord.h,v $ |
* $Source: /home/cvsmanager/yoda/event/mcmd/McmdRecord.h,v $ |
3 |
* $Id: McmdRecord.h,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $ |
* $Id: McmdRecord.h,v 5.1 2005/08/29 13:02:32 Maurizio Nagni Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: Maurizio Nagni $ |
5 |
* |
* |
6 |
* Header file for the McmdRecord class. |
* Header file for the McmdRecord class. |
7 |
*/ |
*/ |
8 |
#ifndef MCMD_RECORD_H |
#ifndef MCMD_RECORD_H |
9 |
#define MCMD_RECORD_H |
#define MCMD_RECORD_H |
10 |
|
|
|
#define UINT32 unsigned int |
|
|
#define UINT16 unsigned short |
|
|
#define BYTE unsigned char |
|
|
|
|
|
#include <TObject.h> |
|
11 |
#include <TArrayC.h> |
#include <TArrayC.h> |
12 |
|
#include "../SubPacket.h" |
|
|
|
13 |
namespace pamela { |
namespace pamela { |
14 |
/** |
/** |
15 |
* McmdRecord data Wrapper |
* McmdRecord data Wrapper |
16 |
|
* |
17 |
|
* |
18 |
|
* PAMELA CPU software collect several pamela::McmdRecord(s) writing |
19 |
|
* them on the MassMemory as a unique packet. |
20 |
*/ |
*/ |
21 |
class McmdRecord: public TObject { |
class McmdRecord: public TObject { |
22 |
|
|
23 |
public: |
public: |
24 |
/** |
/** |
25 |
* Get the run name according to a certain run number. |
* The On-Board-Time of the Record. |
|
* @param run Run number. |
|
|
* @return a string with the run name. |
|
26 |
*/ |
*/ |
27 |
UINT32 MCMD_RECORD_OBT; |
UINT32 MCMD_RECORD_OBT; |
|
int Mcmd_Block_crc_ok; |
|
28 |
|
|
29 |
|
/** |
30 |
|
* The Mcmd crc result. |
31 |
|
* |
32 |
|
* It specifies if the Mcmd was transmitted correctly: <br> |
33 |
|
* 0 = Mcmd correctly transmitted <br> |
34 |
|
* 1 = Mcmd not correctly transmitted |
35 |
|
*/ |
36 |
|
int Mcmd_Block_crc_ok; |
37 |
|
|
38 |
|
/** |
39 |
|
* The Sequential ID of the MCMD. |
40 |
|
*/ |
41 |
UINT16 SeqID; |
UINT16 SeqID; |
42 |
BYTE Tbit; |
|
43 |
BYTE ID1; |
/** |
44 |
|
* Identify if the Mcmd is a Tagged one or not. |
45 |
|
*/ |
46 |
|
UINT8 Tbit; |
47 |
|
|
48 |
|
/** |
49 |
|
* The MCMD identifier. |
50 |
|
*/ |
51 |
|
UINT8 ID1; |
52 |
|
|
53 |
|
/** |
54 |
|
* The Mcmd length. |
55 |
|
*/ |
56 |
UINT16 McmdLength; |
UINT16 McmdLength; |
57 |
|
|
58 |
|
/** |
59 |
|
* The On-Board-Time for start the Mcmd if it is TimeTagged. |
60 |
|
*/ |
61 |
UINT32 TimeTag; |
UINT32 TimeTag; |
62 |
|
|
63 |
|
/** |
64 |
|
* An array of chars containing the Mcmd data area. |
65 |
|
*/ |
66 |
TArrayC *McmdData; |
TArrayC *McmdData; |
67 |
BYTE endID; |
|
68 |
|
/** |
69 |
|
* Modulo 256 sum of all bytes except the endID |
70 |
|
*/ |
71 |
|
UINT8 endID; |
72 |
|
|
73 |
|
|
74 |
McmdRecord(void); |
McmdRecord(void); |