Parent Directory | Revision Log
*** empty log message ***
1 | /** @file |
2 | * $Source: /home/cvsmanager/yoda/event/physics/calorimeter/CalorimeterEvent.h,v $ |
3 | * $Id: CalorimeterEvent.h,v 2.2 2004/10/18 13:01:16 kusanagi Exp $ |
4 | * $Author: kusanagi $ |
5 | * |
6 | * Header file for the raw calorimeter events |
7 | */ |
8 | #ifndef TOF_EVENT_H |
9 | #define TOF_EVENT_H |
10 | |
11 | #include "event/SubPacket.h" |
12 | |
13 | namespace pamela { |
14 | /** |
15 | * Namespace |
16 | */ |
17 | namespace tof { |
18 | /** |
19 | * Techmodel tof data. |
20 | */ |
21 | class TofEvent: public pamela::SubPacket { |
22 | private: |
23 | |
24 | public: |
25 | TofEvent(void); |
26 | ~TofEvent(void); |
27 | int tdcid[12]; |
28 | int evcount[12]; |
29 | int tdcmask[12]; |
30 | int adc[4][12]; |
31 | int tdc[4][12]; |
32 | int temp1[12]; |
33 | int temp2[12]; |
34 | |
35 | ClassDef(TofEvent, 1) |
36 | }; |
37 | } |
38 | } |
39 | #endif /* TOF_EVENT_H */ |
ViewVC Help | |
Powered by ViewVC 1.1.23 |