4 #include "KVHistogram.h"
17 KVString exp, sel, weight, x, y, z, meanrms;
18 ParseHistoTitle(fHisto->GetTitle(), exp, sel, weight);
19 ParseExpressionString(exp, x, y, z);
20 fParams.SetValue(
"VARX", x);
21 fParams.SetValue(
"VARY", y);
22 fParams.SetValue(
"VARZ", z);
23 fParams.SetValue(
"SELECTION", sel);
24 fParams.SetValue(
"EXPRESSION", exp);
25 fParams.SetValue(
"WEIGHT", weight);
26 meanrms.Form(
"%f (%f)", fHisto->GetMean(), fHisto->GetRMS());
27 fParams.SetValue(
"MEANRMSX", meanrms);
28 meanrms.Form(
"%f (%f)", fHisto->GetMean(2), fHisto->GetRMS(2));
29 fParams.SetValue(
"MEANRMSY", meanrms);
39 return fCut->GetMean(axis);
56 SetName(h->GetName());
80 SetName(cut->GetName());
110 Int_t ss = tmp.Index(
"{");
112 Int_t se = tmp.Index(
"}");
113 sel = tmp(ss + 1, se - ss - 1);
114 sel.Remove(TString::kBoth,
' ');
116 exp.Remove(TString::kBoth,
' ');
120 exp.Remove(TString::kBoth,
' ');
127 weight = tmp1.
Next();
128 weight.Remove(TString::kBoth,
'[');
129 weight.Remove(TString::kBoth,
']');
144 tmp.Remove(TString::kBoth,
' ');
146 tmp.ReplaceAll(
"::",
"_scope_");
147 Int_t nvar = tmp.CountChar(
':');
149 varX = varY = varZ =
"";
152 varZ.ReplaceAll(
"_scope_",
"::");
156 varY.ReplaceAll(
"_scope_",
"::");
159 varX.ReplaceAll(
"_scope_",
"::");
241 TROOT::IndentLevel();
242 TROOT::IncreaseDirLevel();
243 std::cout <<
"KVHistogram::" << GetName() <<
" " <<
GetLabel();
255 else std::cout <<
" : " <<
GetCut()->GetName();
256 std::cout << std::endl;
257 TROOT::DecreaseDirLevel();
void SetLabel(const Char_t *lab)
const Char_t * GetLabel() const
virtual void SetType(const Char_t *str)
Wrapper for histograms and graphical cuts used by KVTreeAnalyzer.
const Char_t * GetHistoTitle() const
const Char_t * GetVarZ() const
static void ParseExpressionString(const Char_t *exp, KVString &varX, KVString &varY, KVString &varZ)
Parse expression strings "VARZ:VARY:VARX" or "VARY:VARX" or "VARX".
static void ParseHistoTitle(const Char_t *title, KVString &exp, KVString &sel, KVString &weight)
void SetWeight(const Char_t *)
Set weighting factor used to fill histogram.
const Char_t * GetVarY() const
const Char_t * GetMeanRMSY() const
const Char_t * GetExpression() const
KVHistogram(TH1 *h=nullptr)
Default constructor.
Double_t GetMean(Int_t axis=1) const
TH1 * fHisto
pointer to histogram
void ls(Option_t *option="") const
const Char_t * GetSelection() const
TObject * GetObject() const
In order to have context menu access to the contained histogram or cut.
const Char_t * GetWeight() const
Return weighting used for filling histogram.
const Char_t * GetMeanRMSX() const
const Char_t * GetVarX() const
virtual ~KVHistogram()
Destructor.
KVNameValueList fParams
histogram parameters
void ParseExpressionAndSelection()
TCutG * fCut
pointer to cut
void SetValue(const Char_t *name, value_type value)
const Char_t * GetStringValue(const Char_t *name) const
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
void Begin(TString delim) const
KVString Next(Bool_t strip_whitespace=kFALSE) const