/[PAMELA software]/yoda/event/log/LogEvent.h
ViewVC logotype

Contents of /yoda/event/log/LogEvent.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.4 - (show annotations) (download)
Sat May 28 10:44:09 2005 UTC (19 years, 6 months ago) by kusanagi
Branch: MAIN
Changes since 4.1: +1 -1 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 /** @file
2 * $Source: /home/cvsmanager/yoda/event/log/LogEvent.h,v $
3 * $Id: LogEvent.h,v 4.1 2005/05/07 08:48:49 kusanagi Exp $
4 * $Author: kusanagi $
5 *
6 * Header file for the LogEvent class.
7 */
8 #ifndef LOG_EVENT_H
9 #define LOG_EVENT_H
10
11 #include <vector>
12 #include "event/SubPacket.h"
13 #include "event/log/LogRecord.h"
14 #include <TClonesArray.h>
15
16 using namespace std;
17
18 namespace pamela {
19 /**
20 * LogEvent data Wrapper.
21 *
22 * The LogEvent represents the "LogEvent" packet generated by the PAMELA CPU software
23 * and is a collection of several logs generated during PAMELA operations
24 * and recorded in the CPU RAM between two storing operations.
25 */
26 class LogEvent: public pamela::SubPacket {
27 private:
28
29 static TClonesArray *fgRecords;
30 public:
31 /**
32 * The Compilation Timestamp of the PAMELA CPU software.
33 */
34 UINT32 COMPILATION_TIMESTAMP;
35
36 /**
37 * Contain multiple instances of pamela::LogRecord type.
38 */
39 TClonesArray* Records;
40
41 LogEvent(void);
42 ~LogEvent(void);
43
44 ClassDef(LogEvent, 1)
45 };
46 }
47
48 #endif /* LOG_EVENT_H */
49

  ViewVC Help
Powered by ViewVC 1.1.23