/[PAMELA software]/yoda/event/tabDump/TabDumpEvent.h
ViewVC logotype

Contents of /yoda/event/tabDump/TabDumpEvent.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.4 - (show annotations) (download)
Sat May 28 10:44:10 2005 UTC (19 years, 6 months ago) by kusanagi
Branch: MAIN
Changes since 4.1: +0 -0 lines
File MIME type: text/plain
Main features of this release are:
- updated classes documentations;
- major changes on the calibration fortran routine for the calorimeter
- update on the TMTC thermistors
- removed old classes as CalibTrkBoth and CalibTrd

1 #ifndef TABDUMP_EVENT_H
2 #define TABDUMP_EVENT_H
3
4 #include "event/tabDump/TabDumpRecord.h"
5 #include <TClonesArray.h>
6
7 using namespace std;
8
9 namespace pamela {
10 /**
11 * 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 {
18 private:
19 static TClonesArray *fgRecords;
20 public:
21
22 /**
23 * Contain multiple instances of pamela::TabDumpRecord type.
24 */
25 TClonesArray* Records;
26
27 /**
28 * The Compilation Timestamp of the PAMELA CPU software.
29 */
30 UINT32 PARAMETER_STAMP;
31
32 TabDumpEvent(void);
33 ~TabDumpEvent(void);
34
35 ClassDef(TabDumpEvent, 1)
36 };
37 }
38
39 #endif /* TABDUMP_EVENT_H */
40

  ViewVC Help
Powered by ViewVC 1.1.23