00001
00002
00003
00004
00005
00006
00008
00009 #ifndef NTPTHEVENT_H
00010 #define NTPTHEVENT_H
00011
00012 #include "TObject.h"
00013
00014 class NtpTHEvent;
00015 std::ostream &operator << (std::ostream& os, const NtpTHEvent& thevt);
00016
00017 class NtpTHEvent : public TObject {
00018
00019 public:
00020
00021 NtpTHEvent();
00022 virtual ~NtpTHEvent() {}
00023
00024
00025 virtual std::ostream& Print(std::ostream& os) const;
00026 virtual void Print(const Option_t* option = "") const;
00027
00028 public:
00029
00030
00031
00032
00033 UShort_t index;
00034 Short_t neumc;
00035 Int_t neustdhep;
00036 Float_t purity;
00037 Float_t completeall;
00038
00039 Float_t completeslc;
00040
00041 Float_t completeallnopecut;
00042
00043 Float_t completeslcnopecut;
00044
00045
00046 ClassDef(NtpTHEvent,3)
00047 };
00048
00049 #endif // NTPTHEVENT_H