1 |
kusanagi |
1.1 |
/** @file |
2 |
kusanagi |
1.2 |
* $Source: /home/cvsmanager/yoda/event/physics/calorimeter/CalorimeterEvent.h,v $ |
3 |
kusanagi |
2.0 |
* $Id: CalorimeterEvent.h,v 1.3 2004/08/19 15:24:26 kusanagi Exp $ |
4 |
kusanagi |
1.2 |
* $Author: kusanagi $ |
5 |
kusanagi |
1.1 |
* |
6 |
|
|
* Header file for the raw calorimeter events |
7 |
|
|
*/ |
8 |
|
|
#ifndef CALORIMETER_EVENT_H |
9 |
|
|
#define CALORIMETER_EVENT_H |
10 |
|
|
|
11 |
|
|
#include <exception> |
12 |
|
|
|
13 |
|
|
#include <TObject.h> |
14 |
|
|
|
15 |
|
|
#include "event/SubPacket.h" |
16 |
|
|
|
17 |
|
|
namespace pamela { |
18 |
|
|
/** |
19 |
|
|
* Namespace for all calorimeter related code. |
20 |
|
|
*/ |
21 |
|
|
namespace calorimeter { |
22 |
|
|
/** |
23 |
kusanagi |
1.3 |
* Techmodel calorimeter data. |
24 |
kusanagi |
1.1 |
*/ |
25 |
|
|
class CalorimeterEvent: public pamela::SubPacket { |
26 |
|
|
private: |
27 |
kusanagi |
1.2 |
|
28 |
kusanagi |
1.1 |
public: |
29 |
|
|
CalorimeterEvent(void); |
30 |
|
|
~CalorimeterEvent(void); |
31 |
kusanagi |
1.2 |
int IEV2; |
32 |
kusanagi |
1.3 |
int stwerr; |
33 |
|
|
int perror; |
34 |
|
|
int dexy[2][22][96]; |
35 |
|
|
int dexyc[2][22][96]; |
36 |
|
|
int base[2][22][96]; |
37 |
|
|
int calselftrig[4][7]; |
38 |
kusanagi |
1.2 |
int calIItrig[4]; |
39 |
|
|
int calstripshift[4]; |
40 |
|
|
int calDSPtaberr[4]; |
41 |
|
|
int calevnum[4]; |
42 |
|
|
|
43 |
kusanagi |
1.1 |
ClassDef(CalorimeterEvent, 1) |
44 |
|
|
}; |
45 |
|
|
} |
46 |
|
|
} |
47 |
|
|
#endif /* CALORIMETER_EVENT_H */ |