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 TGO4COMLAUNCHCLIENT_H 00017 #define TGO4COMLAUNCHCLIENT_H 00018 00019 #include "Go4CommandsTaskHandler/TGo4TaskHandlerCommand.h" 00020 #include "TString.h" 00021 00025 class TGo4ComLaunchClient : public TGo4TaskHandlerCommand { 00026 public: 00027 00028 TGo4ComLaunchClient(); 00029 00030 virtual ~TGo4ComLaunchClient(); 00031 00033 void SetClientName(const char* name); 00034 00036 void SetClientHost(const char* name); 00037 00039 void SetClientDir(const char* name); 00040 00042 void SetClientExecutable(const char* name); 00043 00045 void SetClientMode(Int_t mode) { fiMode=mode; } 00046 00047 Int_t ExeCom(); 00048 00049 private: 00050 00052 TString fxClientName; 00053 00055 TString fxClientHost; 00056 00058 TString fxClientDir; 00059 00061 TString fxClientExecutable; 00062 00063 /* client start mode */ 00064 Int_t fiMode; 00065 00066 ClassDef(TGo4ComLaunchClient,1) 00067 }; 00068 00069 #endif //TGO4COMLAUNCHCLIENT_H 00070 00071 //----------------------------END OF GO4 SOURCE FILE ---------------------