GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComPrintDynList.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComPrintDynList.cxx 1036 2013-11-06 10:21:12Z 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 "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 {
29 }
30 
32 {
34  if (cli==0) {
35  TGo4Log::Debug(" !!! ''%s'': NO RECEIVER ERROR!!!",GetName());
36  return 1;
37  }
38 
40  if(ana) {
41  ana->PrintDynamicList();
42  cli->SendStatusMessage(1, kFALSE, TString::Format(
43  "Analysis %s prints out dynamic list status.",ana->GetName()));
44  } else {
45  cli->SendStatusMessage(3, kTRUE, TString::Format(
46  " %s ERROR no analysis ",GetName()));
47  } // if(ana)
48  return -1;
49 }
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
virtual const char * GetName() const
static TGo4Analysis * Instance()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270