Parent Directory | Revision Log
Starting form this version: 1) includes are defined with relative (not absolute) path respect to the YODA aplication 2) RegistryEvent class is foreseen to contain post-unpack data.
1 | kusanagi | 1.1 | |
2 | #ifndef NEUTRON_RECORD_H | ||
3 | #define NEUTRON_RECORD_H | ||
4 | |||
5 | kusanagi | 4.5 | #include "../../SubPacket.h" |
6 | kusanagi | 1.1 | |
7 | namespace pamela { | ||
8 | namespace neutron { | ||
9 | /** | ||
10 | * NeutronRecord data Wrapper | ||
11 | */ | ||
12 | class NeutronRecord: public TObject { | ||
13 | |||
14 | public: | ||
15 | kusanagi | 4.1 | |
16 | kusanagi | 1.1 | /** |
17 | kusanagi | 4.1 | * The number of neutrons counted during a physics event. |
18 | kusanagi | 1.1 | */ |
19 | kusanagi | 4.1 | UINT8 trigPhysics; |
20 | kusanagi | 1.1 | |
21 | kusanagi | 4.1 | /** |
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 | kusanagi | 1.1 | |
33 | NeutronRecord(void); | ||
34 | |||
35 | ClassDef(NeutronRecord, 1) | ||
36 | }; | ||
37 | } | ||
38 | } | ||
39 | #endif /* NEUTRON_RECORD_H */ | ||
40 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |