00001 #ifndef TGEM1PROC_H 00002 #define TGEM1PROC_H 00003 00004 #include "TGem1Event.h" 00005 #include "TGem1Param.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 TGem1Proc : public TCBMBeamtimeProc { 00018 public: 00019 00020 TGem1Proc(const char* name = 0); 00021 virtual ~TGem1Proc(); 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 TGem1Event * fOutputEvent; 00032 TGem1Param* fPar; 00033 00034 TH2* fMappingGSI_GEM1; 00035 TH2* fMappingGSI_GEM2; 00036 TH2* fMappingGSI_GEM3; 00037 00038 protected: 00039 00040 ClassDef(TGem1Proc,1) 00041 }; 00042 00043 #endif //TUNPACKPROCESSOR_H 00044