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/physics/trigger/TriggerEvent.h,v $ |
| 3 | * $Id: TriggerEvent.h,v 4.0 2005/03/06 04:33:01 kusanagi Exp $ |
| 4 | * $Author: kusanagi $ |
| 5 | * |
| 6 | * Header file for the raw calorimeter events |
| 7 | */ |
| 8 | #ifndef TRIGGER_EVENT_H |
| 9 | #define TRIGGER_EVENT_H |
| 10 | |
| 11 | #include <exception> |
| 12 | |
| 13 | #include <TObject.h> |
| 14 | |
| 15 | #include "event/SubPacket.h" |
| 16 | |
| 17 | namespace pamela { |
| 18 | /** |
| 19 | * Namespace |
| 20 | */ |
| 21 | namespace trigger { |
| 22 | /** |
| 23 | * Techmodel trigger data. |
| 24 | */ |
| 25 | class TriggerEvent: public pamela::SubPacket { |
| 26 | private: |
| 27 | |
| 28 | public: |
| 29 | TriggerEvent(void); |
| 30 | ~TriggerEvent(void); |
| 31 | int evcount; |
| 32 | int pmtpl[3]; |
| 33 | int trigrate[6]; |
| 34 | int dltime[2]; |
| 35 | int s4calcount[2]; |
| 36 | int pmtcount1[24]; |
| 37 | int pmtcount2[24]; |
| 38 | int patternbusy[3]; |
| 39 | int patterntrig[6]; |
| 40 | int trigconf; |
| 41 | ClassDef(TriggerEvent, 1) |
| 42 | }; |
| 43 | } |
| 44 | } |
| 45 | #endif /* TRIGGER_EVENT_H */ |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |