Parent Directory | Revision Log
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/tsbt/TsbTEvent.h,v $ |
3 | * $Id: TsbTEvent.h,v 4.0 2005/03/06 04:33:01 kusanagi Exp $ |
4 | * $Author: kusanagi $ |
5 | * |
6 | * Header file for the TsbTEvent class. |
7 | */ |
8 | #ifndef TSBT_EVENT_H |
9 | #define TSBT_EVENT_H |
10 | |
11 | #include <vector> |
12 | #include "event/SubPacket.h" |
13 | #include "event/tsbt/TsbTRecord.h" |
14 | #include <TClonesArray.h> |
15 | |
16 | using namespace std; |
17 | |
18 | namespace pamela { |
19 | /** |
20 | * TsbTEvent data Wrapper |
21 | */ |
22 | class TsbTEvent: public pamela::SubPacket { |
23 | private: |
24 | static TClonesArray *fgRecords; |
25 | public: |
26 | |
27 | TClonesArray* Records; |
28 | |
29 | TsbTEvent(void); |
30 | ~TsbTEvent(void); |
31 | |
32 | ClassDef(TsbTEvent, 1) |
33 | }; |
34 | } |
35 | |
36 | #endif /* TSBT_EVENT_H */ |
37 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |