GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4ComAddTreeHistogram.cxx
Go to the documentation of this file.
1 // $Id: TGo4ComAddTreeHistogram.cxx 1033 2013-11-05 15:30:01Z 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 
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 }
41 
43 {
44  GO4TRACE((12,"TGo4ComAddTreeHistogram::~TGo4ComAddTreeHistogram() dtor",__LINE__, __FILE__));
45 }
46 
48 {
49  if(remcom==0) return;
50  SetHistogramName(remcom->GetString(0));
51  SetTreeName(remcom->GetString(1));
52  SetVarexp(remcom->GetString(2));
53  SetCut(remcom->GetString(3));
54 }
55 
57 {
58  GO4TRACE((12,"TGo4ComAddTreeHistogram::ExeCom()",__LINE__, __FILE__));
59 
61  if(cli)
62  {
64 // TGo4Log::Debug(" !!! %s executing: adding tree histogram entry %s ",
65 // GetName(),fxHistoName.GetName());
66  if(ana)
67  {
68  TString histo = fxHistoName;
69  if (histo.Length()==0) histo = "hTreeDraw";
70  Bool_t result= ana->AddTreeHistogram(histo.Data(),
71  fxTreeName.Data(),
72  fxVarexp.Data(),
73  fxCut.Data());
74  if(result)
75  {
76  cli->SendStatusMessage(1,kTRUE,TString::Format(
77  "Added Dynamic histogram %s for tree %s.",
78  fxHistoName.Data(),fxTreeName.Data()));
79  }
80  else
81  {
82  cli->SendStatusMessage(2,kTRUE,TString::Format(
83  "Could not add Dynamic histogram %s for tree %s !!!",
84  fxHistoName.Data(),fxTreeName.Data()));
85  }
86  }// if ana
87  else
88  {
89  cli->SendStatusMessage(3, kTRUE,TString::Format(
90  " %s ERROR no analysis ",GetName()));
91 
92  }
93  } // if cli
94  else
95  {
96  GO4TRACE((11,"TGo4ComAddTreeHistogram::ExeCom() - no receiver specified ERROR!",__LINE__, __FILE__));
97  TGo4Log::Debug(" !!! ComAddTreeHistogram ''%s'': NO RECEIVER ERROR!!!",GetName());
98 
99  return 1;
100  }
101 
102  return -1;
103 }
Bool_t AddTreeHistogram(const char *hisname, const char *treename, const char *varexp, const char *cutexp)
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 SetCut(const char *cut)
void SetVarexp(const char *exp)
void SetTreeName(const char *name)
virtual void Set(TGo4RemoteCommand *remcon)
void SetProtection(Go4CommandMode_t m)
Definition: TGo4Command.h:105
const char * GetString(Int_t i) const
#define GO4TRACE(X)
Definition: TGo4Log.h:26
static TGo4Analysis * Instance()
void SetHistogramName(const char *name)
static void Debug(const char *text,...)
Definition: TGo4Log.cxx:270