00001 #ifndef TGEM2PROC_H 00002 #define TGEM2PROC_H 00003 00004 #include "TGem2Event.h" 00005 #include "TGem2Param.h" 00006 00007 #include "TGo4Picture.h" 00008 #include "TH1.h" 00009 #include "TH2.h" 00010 #include "TLatex.h" 00011 #include "TLine.h" 00012 #include "TGo4WinCond.h" 00013 #include "TCBMBeamtimeProc.h" 00014 00015 #include "TRocProc.h" 00016 00017 class TGem2Proc : public TCBMBeamtimeProc { 00018 public: 00019 00020 TGem2Proc(const char* name = 0); 00021 virtual ~TGem2Proc(); 00022 00023 virtual void InitEvent(TGo4EventElement*); 00024 00025 /* this is the main processing function here*/ 00026 virtual void FinalizeEvent(); 00027 00028 protected: 00029 00030 TRocEvent* fRocInputEvent; 00031 TGem2Event* fOutputEvent; 00032 TGem2Param* fPar; 00033 00034 protected: 00035 00036 ClassDef(TGem2Proc,1) 00037 }; 00038 00039 #endif //TUNPACKPROCESSOR_H 00040