00001 #ifndef _TFaspANALYSIS_H_ 00002 #define _TFaspANALYSIS_H_ 00003 00004 #include "TGo4Analysis.h" 00005 00006 class TGo4MbsEvent; 00007 class TFaspEvent; 00008 00009 class TFaspAnalysis : public TGo4Analysis 00010 { 00011 public: 00012 TFaspAnalysis (); 00013 TFaspAnalysis (int argc, char** argv); 00014 virtual ~TFaspAnalysis () ; 00015 00016 virtual Int_t UserPreLoop (); 00017 virtual Int_t UserEventFunc (); 00018 virtual Int_t UserPostLoop (); 00019 00020 private: 00021 TGo4MbsEvent *fRawEvent; 00022 TFaspEvent *fUnpackEvent; 00023 Int_t fEvents; 00024 00025 ClassDef(TFaspAnalysis,1) 00026 }; 00027 00028 #endif // _TFaspANALYSIS_H_