Parent Directory | Revision Log
Error proof version. Implemented all detectors packets plus all the main telemetries packets. Missing all the Init and Alarm packets. Disabled CRC control on VarDump, ArrDump, TabDump for CPU debugging needs (the data formats seems correct even if CRC get wrong)
1 | kusanagi | 1.1 | /** @file |
2 | kusanagi | 3.0 | * $Source: /home/cvsmanager/yoda/event/tsbb/TsbBEvent.h,v $ |
3 | * $Id: TsbBEvent.h,v 1.1 2005/03/03 12:35:06 kusanagi Exp $ | ||
4 | kusanagi | 1.1 | * $Author: kusanagi $ |
5 | * | ||
6 | * Header file for the TsbBEvent class. | ||
7 | */ | ||
8 | #ifndef TSBB_EVENT_H | ||
9 | #define TSBB_EVENT_H | ||
10 | |||
11 | #include <vector> | ||
12 | #include "event/SubPacket.h" | ||
13 | #include "event/tsbb/TsbBRecord.h" | ||
14 | #include <TClonesArray.h> | ||
15 | |||
16 | using namespace std; | ||
17 | |||
18 | namespace pamela { | ||
19 | /** | ||
20 | * TstbEvent data Wrapper | ||
21 | */ | ||
22 | class TsbBEvent: public pamela::SubPacket { | ||
23 | private: | ||
24 | static TClonesArray *fgRecords; | ||
25 | public: | ||
26 | |||
27 | TClonesArray* Records; | ||
28 | |||
29 | TsbBEvent(void); | ||
30 | ~TsbBEvent(void); | ||
31 | |||
32 | ClassDef(TsbBEvent, 1) | ||
33 | }; | ||
34 | } | ||
35 | |||
36 | #endif /* TSBB_EVENT_H */ | ||
37 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |