Parent Directory | Revision Log
Imported sources, 23/09/2008
1 | mocchiut | 1.1 | /** @file |
2 | * $Source: /repository/event/physics/tracker/TrackerEvent.h,v $ | ||
3 | * $Id: TrackerEvent.h,v 1.1 2008-01-11 17:14:22 messineo Exp $ | ||
4 | * $Author: messineo $ | ||
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 DAQmode[12]; | ||
28 | int DSPnumber[12]; | ||
29 | int DATAlength[12]; | ||
30 | int eventn[12]; | ||
31 | int nclust[12]; | ||
32 | int cutc[12]; | ||
33 | int cutcl[12]; | ||
34 | int addrcluster[12][3]; | ||
35 | int signcluster[12][3]; | ||
36 | int fc[12]; | ||
37 | int compressiontime[12]; | ||
38 | int fl5[12]; | ||
39 | int fl4[12]; | ||
40 | int fl3[12]; | ||
41 | int fl2[12]; | ||
42 | int fl1[12]; | ||
43 | int fl6[12]; | ||
44 | int checksum[12]; | ||
45 | int crc[12]; | ||
46 | int TOTDATAlength; | ||
47 | TArrayI TrackerData; | ||
48 | int pnum[12]; | ||
49 | int cmdnum[12]; | ||
50 | int bid[12]; | ||
51 | int alarm[12]; | ||
52 | int aswr[12]; | ||
53 | /* | ||
54 | * unpackError = | ||
55 | * | ||
56 | */ | ||
57 | unsigned short unpackError; | ||
58 | ClassDef(TrackerEvent, 3) | ||
59 | }; | ||
60 | } | ||
61 | } | ||
62 | #endif /* TRACKER_EVENT_H */ |
ViewVC Help | |
Powered by ViewVC 1.1.23 |