1 |
#ifndef TABDUMP_EVENT_H |
#ifndef TABDUMP_EVENT_H |
2 |
#define TABDUMP_EVENT_H |
#define TABDUMP_EVENT_H |
3 |
|
|
|
#include "event/SubPacket.h" |
|
4 |
#include "event/tabDump/TabDumpRecord.h" |
#include "event/tabDump/TabDumpRecord.h" |
5 |
#include <TClonesArray.h> |
#include <TClonesArray.h> |
6 |
|
|
8 |
|
|
9 |
namespace pamela { |
namespace pamela { |
10 |
/** |
/** |
11 |
* TabDumpEvent data Wrapper |
* TabDumpEvent data Wrapper. |
12 |
|
* |
13 |
|
* The pamela::TabDumpEvent represents the TabDump packet generated by the PAMELA CPU software. |
14 |
|
* It contains the values of the PAMELA CPU software's vectors written in Mass Memory between |
15 |
|
* two storing operations. |
16 |
*/ |
*/ |
17 |
class TabDumpEvent: public pamela::SubPacket { |
class TabDumpEvent: public pamela::SubPacket { |
18 |
private: |
private: |
19 |
static TClonesArray *fgRecords; |
static TClonesArray *fgRecords; |
20 |
public: |
public: |
21 |
|
|
22 |
/** |
/** |
23 |
* Get the run name according to a certain run number. |
* Contain multiple instances of pamela::TabDumpRecord type. |
|
* @param run Run number. |
|
|
* @return a string with the run name. |
|
24 |
*/ |
*/ |
25 |
TClonesArray* Records; |
TClonesArray* Records; |
26 |
|
|
27 |
|
/** |
28 |
|
* The Compilation Timestamp of the PAMELA CPU software. |
29 |
|
*/ |
30 |
|
UINT32 PARAMETER_STAMP; |
31 |
|
|
32 |
TabDumpEvent(void); |
TabDumpEvent(void); |
33 |
~TabDumpEvent(void); |
~TabDumpEvent(void); |
34 |
|
|