GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComGetAnalysisStatus.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComGetAnalysisStatus.cxx 1033 2013-11-05 15:30:01Z 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 
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisClientImp.h"
18 #include "TGo4AnalysisStatus.h"
19 #include "TGo4AnalysisImp.h"
20 
22  TGo4AnalysisCommand("ANGetStatus","Requests Analysis Status object")
23 {
24  GO4TRACE((12,"TGo4ComGetAnalysisStatus::TGo4ComGetAnalysisStatus() ctor",__LINE__, __FILE__));
25  SetReceiverName("AnalysisClient"); // this command needs client as receiver
26  // override default receiver
27 }
28 
30 {
31  GO4TRACE((12,"TGo4ComGetAnalysisStatus::~TGo4ComGetAnalysisStatus() dtor",__LINE__, __FILE__));
32 }
33 
34 
36 {
37  GO4TRACE((12,"TGo4ComGetAnalysisStatus::ExeCom()",__LINE__, __FILE__));
38 
40  if(cli == 0) {
41  GO4TRACE((11,"TGo4ComGetAnalysisStatus::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
42  TGo4Log::Debug(" !!! ComGetAnalysisStatus ''%s'': NO RECEIVER ERROR!!!",GetName());
43  return 1;
44  }
45  cli->SendStatusMessage(1,kFALSE,"Analysis status was requested from client...");
46  //cli->SendAnalysisStatus(); // we avoid using analysisclient method
47  // just use analysis and taskhandler classes
49  if (ana) {
50  TGo4AnalysisStatus* state = ana->CreateStatus();
51  cli->SendStatus(state, GetTaskName());
52  delete state;
53  }
54 
55  return -1;
56 }
void SetReceiverName(const char *)
Definition: TGo4Command.cxx:92
virtual void SendStatusMessage(Int_t level, Bool_t printout, const TString &text)
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:117
const char * GetTaskName() const
Definition: TGo4Command.cxx:98
#define GO4TRACE(X)
Definition: TGo4Log.h:26
void SendStatus(TGo4Status *stat, const char *receiver=0)
Definition: TGo4Slave.cxx:126
TGo4AnalysisStatus * CreateStatus()
static TGo4Analysis * Instance()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270