| 1 |
mocchiut |
1.1 |
|
| 2 |
|
|
#ifndef NEUTRON_RECORD_H |
| 3 |
|
|
#define NEUTRON_RECORD_H |
| 4 |
|
|
|
| 5 |
|
|
#include "../../SubPacket.h" |
| 6 |
|
|
|
| 7 |
|
|
namespace pamela { |
| 8 |
|
|
namespace neutron { |
| 9 |
|
|
/** |
| 10 |
|
|
* NeutronRecord data Wrapper |
| 11 |
|
|
*/ |
| 12 |
|
|
class NeutronRecord: public TObject { |
| 13 |
|
|
|
| 14 |
|
|
public: |
| 15 |
|
|
|
| 16 |
|
|
/** |
| 17 |
|
|
* The number of neutrons counted during a physics event. |
| 18 |
|
|
*/ |
| 19 |
|
|
UINT8 trigPhysics; |
| 20 |
|
|
|
| 21 |
|
|
/** |
| 22 |
|
|
* The number of neutrons ("background neutrons") counted between two physics events on the higher plane of the Neutron Detector; |
| 23 |
|
|
* the counter cannot count more than 16. |
| 24 |
|
|
*/ |
| 25 |
|
|
UINT8 upperBack; |
| 26 |
|
|
|
| 27 |
|
|
/** |
| 28 |
|
|
* The number of neutrons ("background neutrons") counted between two physics events on the lower plane of the Neutron Detector. |
| 29 |
|
|
* the counter cannot count more than 16. |
| 30 |
|
|
*/ |
| 31 |
|
|
UINT8 bottomBack; |
| 32 |
|
|
|
| 33 |
|
|
NeutronRecord(void); |
| 34 |
|
|
|
| 35 |
|
|
ClassDef(NeutronRecord, 1) |
| 36 |
|
|
}; |
| 37 |
|
|
} |
| 38 |
|
|
} |
| 39 |
|
|
#endif /* NEUTRON_RECORD_H */ |
| 40 |
|
|
|