GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComStart.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComStart.cxx 1001 2013-07-25 15:10:31Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #include "TGo4ComStart.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4Task.h"
18 
20 {
21  fbIsSynchron=kFALSE;
22  SetName("THStart");
23  SetDescription("starts example client's main loop");
24 }
25 
27 {
28 }
29 
31 {
32  TGo4Task* cli=dynamic_cast<TGo4Task*> (fxReceiverBase);
33  if(cli)
34  {
35  cli->SendStatusMessage(1,kFALSE,TString::Format("Client %s working function is started...",cli->GetName()));
36  cli->Start();
37  return 0;
38  }
39  else
40  {
41  TGo4Log::Debug(" !!! ComStart ''%s'': NO RECEIVER ERROR!!!",GetName());
42  return 1;
43  }
44  return -1;
45 }
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:117
virtual ~TGo4ComStart()
Bool_t fbIsSynchron
Definition: TGo4Command.h:93
void SendStatusMessage(Int_t level, Bool_t printout, const char *text,...)
Definition: TGo4Task.cxx:303
void SetDescription(const char *)
virtual void Start()
Definition: TGo4Task.cxx:105
Int_t ExeCom()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270