GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TGo4ComAddTreeHistogram.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 
15 
16 #include "TGo4Log.h"
17 #include "TGo4AnalysisClientImp.h"
18 #include "TGo4AnalysisImp.h"
19 #include "TGo4RemoteCommand.h"
20 
22  TGo4AnalysisCommand("ANAddTreeHis","Add a tree histogram to dynamic list")
23 {
24  GO4TRACE((12,"TGo4ComAddTreeHistogram::TGo4ComAddTreeHistogram() ctor",__LINE__, __FILE__));
26 }
27 
28 TGo4ComAddTreeHistogram::TGo4ComAddTreeHistogram(const char *histogramname, const char *treename, const char *varexp, const char *cut) :
29  TGo4AnalysisCommand("ANAddTreeHis","Add a tree histogram to dynamic list")
30 {
31  GO4TRACE((12,"TGo4ComAddTreeHistogram::TGo4ComAddTreeHistogram() ctor",__LINE__, __FILE__));
32  SetReceiverName("AnalysisClient"); // this command needs client as receiver
33  // to send back status message
35  SetHistogramName(histogramname);
36  SetTreeName(treename);
37  SetVarexp(varexp);
38  SetCut(cut);
39 }
40 
42 {
43  if (!remcom)
44  return;
45  SetHistogramName(remcom->GetString(0));
46  SetTreeName(remcom->GetString(1));
47  SetVarexp(remcom->GetString(2));
48  SetCut(remcom->GetString(3));
49 }
50 
52 {
53  GO4TRACE((12,"TGo4ComAddTreeHistogram::ExeCom()",__LINE__, __FILE__));
54 
56  if (cli) {
58  if (ana) {
59  TString histo = fxHistoName;
60  if (histo.IsNull())
61  histo = "hTreeDraw";
62  Bool_t result = ana->AddTreeHistogram(histo.Data(), fxTreeName.Data(), fxVarexp.Data(), fxCut.Data());
63  if (result) {
64  cli->SendStatusMessage(
65  1, kTRUE,
66  TString::Format("Added Dynamic histogram %s for tree %s.", fxHistoName.Data(), fxTreeName.Data()));
67  } else {
68  cli->SendStatusMessage(2, kTRUE,
69  TString::Format("Could not add Dynamic histogram %s for tree %s !!!",
70  fxHistoName.Data(), fxTreeName.Data()));
71  }
72  } else {
73  cli->SendStatusMessage(3, kTRUE, TString::Format(" %s ERROR no analysis ", GetName()));
74  }
75  } else {
76  GO4TRACE((11, "TGo4ComAddTreeHistogram::ExeCom() - no receiver specified ERROR!", __LINE__, __FILE__));
77  TGo4Log::Debug(" !!! ComAddTreeHistogram ''%s'': NO RECEIVER ERROR!!!", GetName());
78 
79  return 1;
80  }
81 
82  return -1;
83 }
Bool_t AddTreeHistogram(const char *hisname, const char *treename, const char *varexp, const char *cutexp)
const char * GetString(Int_t i) const
void SetReceiverName(const char *)
Definition: TGo4Command.cxx:93
TGo4CommandReceiver * fxReceiverBase
Definition: TGo4Command.h:116
void SetCut(const char *cut)
void SetVarexp(const char *exp)
void SendStatusMessage(Int_t level, Bool_t printout, const TString &text) override
void SetTreeName(const char *name)
static void Debug(const char *text,...) GO4_PRINTF_ARGS
Definition: TGo4Log.cxx:281
void SetProtection(Go4CommandMode_t m)
Definition: TGo4Command.h:104
void Set(TGo4RemoteCommand *remcon) override
#define GO4TRACE(X)
Definition: TGo4Log.h:25
static TGo4Analysis * Instance()
void SetHistogramName(const char *name)