00001 #ifndef EVENTQUALITY_H
00002 #define EVENTQUALITY_H
00003
00004
00005 #include "TObject.h"
00006
00007
00008 #include <vector>
00009
00010
00011
00012
00013 class EventQuality : public TObject
00014
00015 {
00016
00017 public:
00018
00019 EventQuality();
00020 virtual ~EventQuality();
00021
00022 void Reset();
00023
00024
00025 bool IsQuality();
00026
00027
00028
00029
00030 int single_view_long_muon;
00031 int single_view_primary_shower;
00032
00033 int foundlongmuon;
00034 int foundprimaryshower;
00035
00036 private:
00037 ClassDef(EventQuality,1)
00038
00039
00040 };
00041
00042 #endif
00043