GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComQuit.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComQuit.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 "TGo4ComQuit.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4Task.h"
18 
20  TGo4TaskHandlerCommand("THQuit","tells client taskhandler application to quit")
21 {
22  fbIsSynchron=kFALSE;
23 }
24 
26 {
27 }
28 
29 
31 {
32  TGo4Task* cli = dynamic_cast<TGo4Task*> (fxReceiverBase);
33  if(cli!=0) {
34  TGo4Log::Info("Quit command executes on receiver: %s", ((TGo4Task*) fxReceiverBase)->GetName());
35 // cli->SendStatusMessage(2,kFALSE,TString::Format("Quit command executes on client %s ...",cli->GetName()));
36  cli->Quit();
37  return 0;
38  }
39 
40  TGo4Log::Debug(" !!! ComQuit ''%s'': NO RECEIVER ERROR!!!",GetName());
41  return 1;
42 }
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:117
virtual ~TGo4ComQuit()
Definition: TGo4ComQuit.cxx:25
Int_t ExeCom()
Definition: TGo4ComQuit.cxx:30
Bool_t fbIsSynchron
Definition: TGo4Command.h:93
virtual void Quit()
Definition: TGo4Task.cxx:115
static void Info(const char *text,...)
Definition: TGo4Log.cxx:283
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270