Parent Directory | Revision Log
Fixed bug in tracker level2 rootple booking
1 | mocchiut | 1.1 | #include <TObject.h> |
2 | #include <TSystem.h> | ||
3 | |||
4 | class AnticounterLevel1 : public TObject { | ||
5 | public: | ||
6 | AnticounterLevel1(); | ||
7 | UShort_t status[2]; | ||
8 | UShort_t hitmap[2]; | ||
9 | UShort_t hitstatus[2]; | ||
10 | UShort_t trigger[2]; | ||
11 | Float_t obt; | ||
12 | Float_t evfile; | ||
13 | Float_t headc; | ||
14 | mocchiut | 1.2 | ClassDef(AnticounterLevel1,0) |
15 | mocchiut | 1.1 | }; |
16 | |||
17 | AnticounterLevel1::AnticounterLevel1() { | ||
18 | for (Int_t i=0; i<2;i++){ | ||
19 | status[i] = 0; | ||
20 | hitmap[i] = 0; | ||
21 | hitstatus[i] = 0; | ||
22 | trigger[i] = 0; | ||
23 | }; | ||
24 | obt = 0.; | ||
25 | evfile = 0.; | ||
26 | headc = 0.; | ||
27 | } | ||
28 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |