| 1 |
/** @file |
| 2 |
* $Source: /home/cvsmanager/yoda/event/physics/anticounter/AnticounterEvent.h,v $ |
| 3 |
* $Id: AnticounterEvent.h,v 2.3 2004/12/20 14:15:10 kusanagi Exp $ |
| 4 |
* $Author: kusanagi $ |
| 5 |
* |
| 6 |
* Header file for the raw anticoincidence events |
| 7 |
*/ |
| 8 |
#ifndef ANTICOUNTER_EVENT_H |
| 9 |
#define ANTICOUNTER_EVENT_H |
| 10 |
|
| 11 |
#include "event/SubPacket.h" |
| 12 |
namespace pamela { |
| 13 |
/** |
| 14 |
* Namespace for all code related to the anticoincidence unit. |
| 15 |
*/ |
| 16 |
namespace anticounter { |
| 17 |
/** |
| 18 |
* Techmodel anticounter subpacket |
| 19 |
*/ |
| 20 |
class AnticounterEvent: public pamela::SubPacket { |
| 21 |
private: |
| 22 |
|
| 23 |
public: |
| 24 |
|
| 25 |
UINT16 header[2][2]; |
| 26 |
UINT16 status[2]; |
| 27 |
UINT16 hitmap[2]; |
| 28 |
UINT16 regist[2][6]; |
| 29 |
UINT16 shift[2][16]; |
| 30 |
UINT16 counters[2][16]; |
| 31 |
UINT16 coinc[2][8]; |
| 32 |
UINT16 trigg[2]; |
| 33 |
UINT16 clock[2][2]; |
| 34 |
UINT16 temp[2][2]; |
| 35 |
UINT16 DAC[2][8]; |
| 36 |
UINT16 CRC[2]; |
| 37 |
UINT8 unpackError; |
| 38 |
|
| 39 |
AnticounterEvent(void); |
| 40 |
~AnticounterEvent(void); |
| 41 |
|
| 42 |
ClassDef(AnticounterEvent, 1) |
| 43 |
}; |
| 44 |
} |
| 45 |
} |
| 46 |
#endif /* ANTICOUNTER_EVENT_H */ |