/[PAMELA software]/yoda/event/varDump/VarDumpEvent.h
ViewVC logotype

Contents of /yoda/event/varDump/VarDumpEvent.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5.0 - (show annotations) (download)
Mon Aug 29 09:46:13 2005 UTC (19 years, 3 months ago) by kusanagi
Branch: MAIN
CVS Tags: YODA5_0/00, YODA5_0/01, YODA5_0/02
Changes since 4.5: +0 -0 lines
File MIME type: text/plain
Starting form this version:
1) includes are defined with relative (not absolute) path respect to the YODA aplication
2) RegistryEvent class is foreseen to contain post-unpack data.

1 #ifndef VARDUMP_EVENT_H
2 #define VARDUMP_EVENT_H
3
4 #include "VarDumpRecord.h"
5 #include <TClonesArray.h>
6
7 namespace pamela {
8 /**
9 * VarDumpEvent data Wrapper.
10 *
11 * The pamela::VarDumpEvent represents the VarDump packet generated by the PAMELA CPU software.
12 * It contains the values of the PAMELA CPU software's vectors written in Mass Memory between
13 * two storing operations.
14 */
15 class VarDumpEvent: public pamela::SubPacket {
16 private:
17 static TClonesArray *fgRecords;
18 public:
19
20 /**
21 * Contain multiple instances of pamela::VarDumpRecord type.
22 */
23 TClonesArray* Records;
24
25 /**
26 * The Compilation Timestamp of the PAMELA CPU software.
27 */
28 UINT32 PARAMETER_STAMP;
29
30 VarDumpEvent(void);
31 ~VarDumpEvent(void);
32
33 ClassDef(VarDumpEvent, 1)
34 };
35 }
36
37 #endif /* VARDUMP_EVENT_H */
38

  ViewVC Help
Powered by ViewVC 1.1.23