00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE 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 1 00018 00019 #include "Go4ThreadManager/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 (Text_t* name); 00043 00044 virtual ~TGo4TestThreadManager(); 00045 00046 TGo4TestThreadManager & operator=(const TGo4TestThreadManager &right); 00047 00048 00053 virtual Int_t TestAction (); 00054 00055 00056 TCanvas* GetCanvas (); 00057 00058 TPad* GetPad1 (); 00059 00060 TPad* GetPad2 (); 00061 00062 00063 protected: 00064 // Data Members for Associations 00065 00066 TGo4TestRunnable *fxControlRunnable; 00067 00068 private: 00069 //## Constructors (generated) 00070 TGo4TestThreadManager(); 00071 00072 TCanvas *fxCanvas; 00073 TPad *fxPad1; 00074 TPad *fxPad2; 00075 00076 ClassDef(TGo4TestThreadManager,0) 00077 }; 00078 00079 00080 00081 #endif 00082 00083 00084 00085 00086 //----------------------------END OF GO4 SOURCE FILE ---------------------