GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
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"
17 #include "TGo4AnalysisClientImp.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 SetReceiverName(const char *)
Definition: TGo4Command.cxx:93
const char * GetName() const override
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:116
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
static void Debug(const char *text,...) GO4_PRINTF_ARGS
Definition: TGo4Log.cxx:281
static TGo4Analysis * Instance()