GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TGo4ComPrintHistograms.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 "TGo4ComPrintHistograms.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisClientImp.h"
18 #include "TGo4AnalysisImp.h"
19 
21 :TGo4AnalysisCommand("ANPrhis","Printout of Histogram statistics")
22 {
23  GO4TRACE((12,"TGo4ComPrintHistograms::TGo4ComPrintHistograms() ctor",__LINE__, __FILE__));
24  SetReceiverName("AnalysisClient"); // this command needs client as receiver
25  // override default receiver
26 }
27 
29 {
30  GO4TRACE((12,"TGo4ComPrintHistograms::ExeCom() dtor",__LINE__, __FILE__));
31 
33  if (cli) {
34  GO4TRACE((11,"TGo4ComPrintHistograms::ExeCom() - found valid receiver",__LINE__, __FILE__));
36  if(ana)
37  {
38  ana->PrintHistograms();
39  cli->SendStatusMessage(1, kFALSE, TString::Format(
40  "Analysis %s prints out histogram statistics.",ana->GetName()));
41  }
42  else
43  {
44  cli->SendStatusMessage(3, kTRUE, TString::Format(
45  " %s ERROR no analysis ",GetName()));
46  } // if(ana)
47 
48 
49 
50  }
51  else
52  {
53  GO4TRACE((11,"TGo4ComPrintHistograms::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
54  TGo4Log::Debug(" !!! ''%s'': NO RECEIVER ERROR!!!",GetName());
55  return 1;
56  }
57 
58  return -1;
59 }
60 
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
void PrintHistograms(const char *expression=nullptr)
static void Debug(const char *text,...) GO4_PRINTF_ARGS
Definition: TGo4Log.cxx:281
#define GO4TRACE(X)
Definition: TGo4Log.h:25
static TGo4Analysis * Instance()