GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4ComPrintDynList.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
14#include "TGo4ComPrintDynList.h"
15
16#include "TGo4Log.h"
18#include "TGo4AnalysisImp.h"
19
21 TGo4AnalysisCommand("ANPrdyn","Printout of dynamic list")
22{
23 SetReceiverName("AnalysisClient"); // this command needs client as receiver
24 // override default receiver
25}
26
28{
30 if (!cli) {
31 TGo4Log::Debug(" !!! ''%s'': NO RECEIVER ERROR!!!",GetName());
32 return 1;
33 }
34
36 if(ana) {
37 ana->PrintDynamicList();
38 cli->SendStatusMessage(1, kFALSE, TString::Format(
39 "Analysis %s prints out dynamic list status.",ana->GetName()));
40 } else {
41 cli->SendStatusMessage(3, kTRUE, TString::Format(
42 " %s ERROR no analysis ",GetName()));
43 } // if(ana)
44 return -1;
45}
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
Send message to gui.
The mother of all go4 analysis.
static TGo4Analysis * Instance()
return analysis instance
void PrintDynamicList()
Print entries of current dynamic list.
const char * GetName() const override
Return analysis name.
Int_t ExeCom() override
Do the command action.
TGo4CommandReceiver * fxReceiverBase
void SetReceiverName(const char *)
static void Debug(const char *text,...) GO4_PRINTF_ARGS
User shortcut for message with prio 0.
Definition TGo4Log.cxx:281