Parent Directory
|
Revision Log
Starting form this version: 1) includes are defined with relative (not absolute) path respect to the YODA aplication 2) RegistryEvent class is foreseen to contain post-unpack data.
| 1 | /** @file |
| 2 | * $Source: /home/cvsmanager/yoda/event/physics/tracker/TrackerEvent.h,v $ |
| 3 | * $Id: TrackerEvent.h,v 4.5 2005/08/29 08:27:52 kusanagi Exp $ |
| 4 | * $Author: kusanagi $ |
| 5 | * |
| 6 | * Header file for the raw tracker events |
| 7 | */ |
| 8 | #ifndef TRACKER_EVENT_H |
| 9 | #define TRACKER_EVENT_H |
| 10 | |
| 11 | #include "../../SubPacket.h" |
| 12 | #include <TArrayI.h> |
| 13 | |
| 14 | namespace pamela { |
| 15 | /** |
| 16 | * Namespace for the tracker specific code. |
| 17 | */ |
| 18 | namespace tracker { |
| 19 | class TrackerEvent: public pamela::SubPacket { |
| 20 | |
| 21 | private: |
| 22 | |
| 23 | public: |
| 24 | |
| 25 | TrackerEvent(void); |
| 26 | int good0; |
| 27 | int nev0; |
| 28 | int DAQmode[12]; |
| 29 | int DSPnumber[12]; |
| 30 | int DATAlength[12]; |
| 31 | int eventn[12]; |
| 32 | int nclust[12]; |
| 33 | int cutc[12]; |
| 34 | int cutcl[12]; |
| 35 | int addrcluster[12][3]; |
| 36 | int signcluster[12][3]; |
| 37 | int fc[12]; |
| 38 | int compressiontime[12]; |
| 39 | int fl5[12]; |
| 40 | int fl4[12]; |
| 41 | int fl3[12]; |
| 42 | int fl2[12]; |
| 43 | int fl1[12]; |
| 44 | int fl6[12]; |
| 45 | int checksum[12]; |
| 46 | int pnum[12]; |
| 47 | int cmdnum[12]; |
| 48 | int bid[12]; |
| 49 | int alarm[12]; |
| 50 | int aswr[12]; |
| 51 | int TOTDATAlength; |
| 52 | TArrayI TrackerData; |
| 53 | /* |
| 54 | * unpackError = |
| 55 | * |
| 56 | */ |
| 57 | unsigned short unpackError; |
| 58 | //int datatracker[49152]; |
| 59 | ClassDef(TrackerEvent, 2) |
| 60 | }; |
| 61 | } |
| 62 | } |
| 63 | #endif /* TRACKER_EVENT_H */ |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |