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 | /** @file |
2 | * $Source: /home/cvsmanager/yoda/event/physics/tracker/TrackerEvent.h,v $ |
3 | * $Id: TrackerEvent.h,v 2.5 2005/01/29 00:26:49 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 "event/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 |