GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComPrintHistograms.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComPrintHistograms.cxx 1001 2013-07-25 15:10:31Z 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 "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::~TGo4ComPrintHistograms() dtor",__LINE__, __FILE__));
31 }
32 
34 {
35  GO4TRACE((12,"TGo4ComPrintHistograms::ExeCom() dtor",__LINE__, __FILE__));
36 
38  if (cli!=0)
39  {
40  GO4TRACE((11,"TGo4ComPrintHistograms::ExeCom() - found valid receiver",__LINE__, __FILE__));
42  if(ana)
43  {
44  ana->PrintHistograms();
45  cli->SendStatusMessage(1, kFALSE, TString::Format(
46  "Analysis %s prints out histogram statistics.",ana->GetName()));
47  }
48  else
49  {
50  cli->SendStatusMessage(3, kTRUE, TString::Format(
51  " %s ERROR no analysis ",GetName()));
52  } // if(ana)
53 
54 
55 
56  }
57  else
58  {
59  GO4TRACE((11,"TGo4ComPrintHistograms::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
60  TGo4Log::Debug(" !!! ''%s'': NO RECEIVER ERROR!!!",GetName());
61  return 1;
62  }
63 
64  return -1;
65 }
66 
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
void PrintHistograms(const char *expression=0)
virtual const char * GetName() const
#define GO4TRACE(X)
Definition: TGo4Log.h:26
static TGo4Analysis * Instance()
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270