--- yoda/event/physics/neutronDetector/NeutronEvent.h 2004/08/19 15:24:33 1.1 +++ yoda/event/physics/neutronDetector/NeutronEvent.h 2005/05/07 08:49:04 4.1 @@ -2,7 +2,6 @@ #ifndef NEUTRON_EVENT_H #define NEUTRON_EVENT_H -#include #include "event/SubPacket.h" #include "event/physics/neutronDetector/NeutronRecord.h" #include @@ -17,12 +16,24 @@ static TClonesArray *fgRecords; public: - TClonesArray *Records; + /** + * Contain multiple instances of pamela::neutron::NeutronRecord type. + */ + TClonesArray *Records; + + /** + * The data validity flag. + * + * Description:
+ * 1: neutron data NOT found.
+ * 0: neutron data ok.
+ */ + unsigned short unpackError; NeutronEvent(void); ~NeutronEvent(void); - ClassDef(NeutronEvent, 1) + ClassDef(NeutronEvent, 2) }; } }