1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvspamela/yoda/event/physics/calorimeter/CalorimeterEvent.h,v $ |
* $Source: /home/cvsmanager/yoda/event/physics/calorimeter/CalorimeterEvent.h,v $ |
3 |
* $Id: CalorimeterEvent.h,v 1.6 2004/03/16 10:18:28 nagni Exp $ |
* $Id: CalorimeterEvent.h,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $ |
4 |
* $Author: nagni $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Header file for the raw calorimeter events |
* Header file for the raw calorimeter events |
7 |
*/ |
*/ |
24 |
*/ |
*/ |
25 |
class CalorimeterEvent: public pamela::SubPacket { |
class CalorimeterEvent: public pamela::SubPacket { |
26 |
private: |
private: |
27 |
Short_t SelfTrig[6]; |
|
|
Short_t Coincidence; |
|
|
Int_t NValue; |
|
|
Short_t* Value; //[NValue] |
|
28 |
public: |
public: |
29 |
CalorimeterEvent(void); |
CalorimeterEvent(void); |
30 |
~CalorimeterEvent(void); |
~CalorimeterEvent(void); |
31 |
const short* GetSelfTrig(void) const { return SelfTrig; } |
int IEV2; |
32 |
short GetCoincidence(void) const { return Coincidence; } |
int dexy[96][22][2]; |
33 |
int GetNValue(void) const { return NValue; } |
int dexyc[96][22][2]; |
34 |
const short* GetValue(void) const { return Value; } |
int base[96][22][2]; |
35 |
void Set(int nvalue, short* value); |
int calselftrig[7][4]; |
36 |
// ... and the setters ... |
int calIItrig[4]; |
37 |
|
int calstripshift[4]; |
38 |
|
int calDSPtaberr[4]; |
39 |
|
int calevnum[4]; |
40 |
|
|
41 |
ClassDef(CalorimeterEvent, 1) |
ClassDef(CalorimeterEvent, 1) |
42 |
}; |
}; |
43 |
} |
} |