1 |
mocchiut |
1.1 |
/** @file |
2 |
|
|
* $Source: /repository/event/physics/calorimeter/CalorimeterEvent.h,v $ |
3 |
|
|
* $Id: CalorimeterEvent.h,v 1.1 2008-01-11 17:14:22 messineo Exp $ |
4 |
|
|
* $Author: messineo $ |
5 |
|
|
* |
6 |
|
|
* Header file for the raw calorimeter events |
7 |
|
|
*/ |
8 |
|
|
#ifndef CALORIMETER_EVENT_H |
9 |
|
|
#define CALORIMETER_EVENT_H |
10 |
|
|
|
11 |
|
|
#include "../../SubPacket.h" |
12 |
|
|
|
13 |
|
|
namespace pamela { |
14 |
|
|
/** |
15 |
|
|
* Namespace for all calorimeter related code. |
16 |
|
|
*/ |
17 |
|
|
namespace calorimeter { |
18 |
|
|
/** |
19 |
|
|
* Techmodel calorimeter data. |
20 |
|
|
*/ |
21 |
|
|
class CalorimeterEvent: public pamela::SubPacket { |
22 |
|
|
private: |
23 |
|
|
|
24 |
|
|
public: |
25 |
|
|
CalorimeterEvent(void); |
26 |
|
|
~CalorimeterEvent(void); |
27 |
|
|
int iev; |
28 |
|
|
int stwerr[4]; |
29 |
|
|
float perror[4]; |
30 |
|
|
float dexy[2][22][96]; |
31 |
|
|
float dexyc[2][22][96]; |
32 |
|
|
float base[2][22][6]; |
33 |
|
|
float calselftrig[4][7]; |
34 |
|
|
float calIItrig[4]; |
35 |
|
|
float calstriphit[4]; |
36 |
|
|
float calDSPtaberr[4]; |
37 |
|
|
float calevnum[4]; |
38 |
|
|
|
39 |
|
|
/** |
40 |
|
|
* The data validity (to be defined). |
41 |
|
|
* |
42 |
|
|
* Description: <BR> |
43 |
|
|
*/ |
44 |
|
|
UINT8 unpackError; |
45 |
|
|
ClassDef(CalorimeterEvent, 2) |
46 |
|
|
}; |
47 |
|
|
} |
48 |
|
|
} |
49 |
|
|
#endif /* CALORIMETER_EVENT_H */ |