00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #ifndef TGo4TestThreadManager_h 00017 #define TGo4TestThreadManager_h 00018 00019 #include "TGo4ThreadManager.h" 00020 #include "TGo4TestRunnable.h" 00021 #include "TPad.h" 00022 #include "TCanvas.h" 00023 00036 class TGo4TestThreadManager : public TGo4ThreadManager 00037 { 00038 00039 public: 00040 TGo4TestThreadManager(const TGo4TestThreadManager &right); 00041 00042 TGo4TestThreadManager (const char* name); 00043 00044 virtual ~TGo4TestThreadManager(); 00045 00050 virtual Int_t TestAction (); 00051 00052 00053 TCanvas* GetCanvas (); 00054 00055 TPad* GetPad1 (); 00056 00057 TPad* GetPad2 (); 00058 00059 00060 protected: 00061 // Data Members for Associations 00062 00063 TGo4TestRunnable *fxControlRunnable; 00064 00065 private: 00066 //## Constructors (generated) 00067 TGo4TestThreadManager(); 00068 00069 TCanvas *fxCanvas; 00070 TPad *fxPad1; 00071 TPad *fxPad2; 00072 00073 ClassDef(TGo4TestThreadManager,0) 00074 }; 00075 00076 00077 00078 #endif 00079 00080 00081 00082 00083 //----------------------------END OF GO4 SOURCE FILE ---------------------