GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComPrintConditions.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComPrintConditions.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 "TGo4ComPrintConditions.h"
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisClientImp.h"
18 #include "TGo4AnalysisImp.h"
19 
21  TGo4AnalysisCommand("ANPrcon","Printout of condition counters")
22 {
23  GO4TRACE((12,"TGo4ComPrintConditions::TGo4ComPrintConditions() ctor",__LINE__, __FILE__));
24  SetReceiverName("AnalysisClient"); // this command needs client as receiver
25  // override default receiver
26 }
27 
29 {
30  GO4TRACE((12,"TGo4ComPrintConditions::~TGo4ComPrintConditions() dtor",__LINE__, __FILE__));
31 }
32 
34 {
35  GO4TRACE((12,"TGo4ComPrintConditions::ExeCom() dtor",__LINE__, __FILE__));
36 
38  if (cli==0) {
39  GO4TRACE((11,"TGo4ComPrintConditions::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
40  TGo4Log::Debug(" !!! ''%s'': NO RECEIVER ERROR!!!",GetName());
41  return 1;
42  }
43 
44  GO4TRACE((11,"TGo4ComPrintConditions::ExeCom() - found valid receiver",__LINE__, __FILE__));
46  if(ana) {
47  ana->PrintConditions();
48  cli->SendStatusMessage(1, kFALSE,TString::Format(
49  "Analysis %s prints out condition counters",ana->GetName()));
50  } else {
51  cli->SendStatusMessage(3, kTRUE,TString::Format(
52  " %s ERROR no analysis ",GetName()));
53  } // if(ana)
54 
55  return -1;
56 }
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
#define GO4TRACE(X)
Definition: TGo4Log.h:26
static TGo4Analysis * Instance()
void PrintConditions(const char *expression=0)
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270