1 |
kusanagi |
1.1 |
/** @file |
2 |
|
|
* $Source: /home/cvspamela/yoda/event/physics/tracker/TrackerEvent.h,v $ |
3 |
|
|
* $Id: TrackerEvent.h,v 1.6 2004/03/16 10:18:28 nagni Exp $ |
4 |
|
|
* $Author: nagni $ |
5 |
|
|
* |
6 |
|
|
* Header file for the raw tracker events |
7 |
|
|
*/ |
8 |
|
|
#ifndef TRACKER_EVENT_H |
9 |
|
|
#define TRACKER_EVENT_H |
10 |
|
|
|
11 |
|
|
#include <exception> |
12 |
|
|
|
13 |
|
|
#include <TObject.h> |
14 |
|
|
|
15 |
|
|
#include "event/SubPacket.h" |
16 |
|
|
|
17 |
|
|
|
18 |
|
|
namespace pamela { |
19 |
|
|
/** |
20 |
|
|
* Namespace for the tracker specific code. |
21 |
|
|
*/ |
22 |
|
|
namespace tracker { |
23 |
|
|
class TrackerEvent: public pamela::SubPacket { |
24 |
|
|
private: |
25 |
|
|
|
26 |
|
|
public: |
27 |
|
|
TrackerEvent(void); |
28 |
|
|
|
29 |
|
|
int DAQmode[12]; |
30 |
|
|
int DSPnumber[12]; |
31 |
|
|
int DATAlength[12]; |
32 |
|
|
int eventn[12]; |
33 |
|
|
int nclust[12]; |
34 |
|
|
int cutc[12]; |
35 |
|
|
int cutcl[12]; |
36 |
|
|
int addrcluster[12][3]; |
37 |
|
|
int signcluster[12][3]; |
38 |
|
|
int fc[12]; |
39 |
|
|
int compressiontime[12]; |
40 |
|
|
int fl5[12]; |
41 |
|
|
int fl4[12]; |
42 |
|
|
int fl3[12]; |
43 |
|
|
int fl2[12]; |
44 |
|
|
int fl1[12]; |
45 |
|
|
int fl6[12]; |
46 |
|
|
int checksum[12]; |
47 |
|
|
int pnum[12]; |
48 |
|
|
int cmdnum[12]; |
49 |
|
|
int bid[12]; |
50 |
|
|
int alarm[12]; |
51 |
|
|
int aswr[12]; |
52 |
|
|
|
53 |
|
|
|
54 |
|
|
ClassDef(TrackerEvent, 1) |
55 |
|
|
}; |
56 |
|
|
} |
57 |
|
|
} |
58 |
|
|
#endif /* TRACKER_EVENT_H */ |