GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComStop.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComStop.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 "TGo4ComStop.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4Task.h"
18 
21 {
22  fbIsSynchron=kFALSE;
23  SetName("THStop");
24  SetDescription("stops example client's main loop");
25 }
26 
28 {
29 }
30 
32 {
33  TGo4Task* cli=dynamic_cast<TGo4Task*> (fxReceiverBase);
34  if(cli)
35  {
36  cli->SendStatusMessage(1,kFALSE,TString::Format("Client %s working function is stopped...",cli->GetName()));
37  cli->Stop();
38  }
39  else
40  {
41  TGo4Log::Debug(" !!! ComStop ''%s'': NO RECEIVER ERROR!!!",GetName());
42  return 1;
43  }
44  return -1;
45 
46 }
virtual void Stop()
Definition: TGo4Task.cxx:110
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:117
Int_t ExeCom()
Definition: TGo4ComStop.cxx:31
virtual ~TGo4ComStop()
Definition: TGo4ComStop.cxx:27
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 *)
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270