GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4ComGetAnalysisStatus.cxx
Go to the documentation of this file.
1// $Id$
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 fuer 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"
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
29
31{
32 GO4TRACE((12,"TGo4ComGetAnalysisStatus::ExeCom()",__LINE__, __FILE__));
33
35 if(!cli) {
36 GO4TRACE((11,"TGo4ComGetAnalysisStatus::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
37 TGo4Log::Debug(" !!! ComGetAnalysisStatus ''%s'': NO RECEIVER ERROR!!!",GetName());
38 return 1;
39 }
40 cli->SendStatusMessage(1,kFALSE,"Analysis status was requested from client...");
41 //cli->SendAnalysisStatus(); // we avoid using analysisclient method
42 // just use analysis and taskhandler classes
44 if (ana) {
45 TGo4AnalysisStatus *state = ana->CreateStatus();
46 cli->SendStatus(state, GetTaskName());
47 delete state;
48 }
49
50 return -1;
51}
#define GO4TRACE(X)
Definition TGo4Log.h:25
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
Send message to gui.
Status of the analysis instance.
The mother of all go4 analysis.
static TGo4Analysis * Instance()
return analysis instance
TGo4AnalysisStatus * CreateStatus()
Create a copy of the analysis internal state.
Int_t ExeCom() override
Do the command action.
TGo4CommandReceiver * fxReceiverBase
void SetReceiverName(const char *)
const char * GetTaskName() const
static void Debug(const char *text,...) GO4_PRINTF_ARGS
User shortcut for message with prio 0.
Definition TGo4Log.cxx:281
void SendStatus(TGo4Status *stat, const char *receiver=nullptr)
Send status object via status channel to the server.