Logo ROOT   6.14/05
Reference Guide
likelihoodrefs.cxx
Go to the documentation of this file.
1 #include "TMVA/likelihoodrefs.h"
2 #include <vector>
3 #include <string>
4 
5 
6 
7 // this macro plots the reference distribuions for the Likelihood
8 // methods for the various input variables used in TMVA (e.g. running
9 // TMVAnalysis.C). Signal and Background are plotted separately
10 
11 // input: - Input file (result from TMVA),
12 // - use of TMVA plotting TStyle
13 
14 
15 void TMVA::likelihoodrefs(TString dataset, TDirectory *lhdir ) {
16  Bool_t newCanvas = kTRUE;
17 
18  const UInt_t maxCanvas = 200;
19  TCanvas** c = new TCanvas*[maxCanvas];
20  Int_t width = 670;
21  Int_t height = 380;
22 
23  // avoid duplicated printing
24  std::vector<std::string> hasBeenUsed;
25  const TString titName = lhdir->GetName();
26  UInt_t ic = -1;
27 
28  TIter next(lhdir->GetListOfKeys());
29  TKey *key;
30  while ((key = TMVAGlob::NextKey(next,"TH1"))) { // loop over all TH1
31  TH1 *h = (TH1*)key->ReadObj();
32  TH1F *b( 0 );
33  TString hname( h->GetName() );
34 
35  // avoid duplicated plotting
36  Bool_t found = kFALSE;
37  for (UInt_t j = 0; j < hasBeenUsed.size(); j++) {
38  if (hasBeenUsed[j] == hname.Data()) found = kTRUE;
39  }
40  if (!found) {
41 
42  // draw original plots
43  if (hname.EndsWith("_sig_nice")) {
44 
45  if (newCanvas) {
46  char cn[20];
47  sprintf( cn, "cv%d_%s", ic+1, titName.Data() );
48  ++ic;
49  TString n = hname;
50  c[ic] = new TCanvas( cn, Form( "%s reference for variable: %s",
51  titName.Data(),(n.ReplaceAll("_sig","")).Data() ),
52  ic*50+50, ic*20, width, height );
53  c[ic]->Divide(2,1);
54  newCanvas = kFALSE;
55  }
56 
57  // signal
58  Int_t color = 4;
59  TPad * cPad = (TPad*)c[ic]->cd(1);
60  TString plotname = hname;
61 
62  h->SetMaximum(h->GetMaximum()*1.3);
63  h->SetMinimum( 0 );
64  h->SetMarkerColor(color);
65  h->SetMarkerSize( 0.7 );
66  h->SetMarkerStyle( 24 );
67  h->SetLineWidth(1);
68  h->SetLineColor(color);
69  color++;
70  h->Draw("e1");
71  Double_t hSscale = 1.0/(h->GetSumOfWeights()*h->GetBinWidth(1));
72 
73  TLegend *legS= new TLegend( cPad->GetLeftMargin(),
74  1-cPad->GetTopMargin()-.14,
75  cPad->GetLeftMargin()+.77,
76  1-cPad->GetTopMargin() );
77  legS->SetBorderSize(1);
78  legS->AddEntry(h,"Input data (signal)","p");
79 
80  // background
81  TString bname( hname );
82  b = (TH1F*)lhdir->Get( bname.ReplaceAll("_sig","_bgd") );
83  cPad = (TPad*)c[ic]->cd(2);
84  color = 2;
85  b->SetMaximum(b->GetMaximum()*1.3);
86  b->SetMinimum( 0 );
87  b->SetLineWidth(1);
88  b->SetLineColor(color);
89  b->SetMarkerColor(color);
90  b->SetMarkerSize( 0.7 );
91  b->SetMarkerStyle( 24 );
92  b->Draw("e1");
93  Double_t hBscale = 1.0/(b->GetSumOfWeights()*b->GetBinWidth(1));
94  TLegend *legB= new TLegend( cPad->GetLeftMargin(),
95  1-cPad->GetTopMargin()-.14,
96  cPad->GetLeftMargin()+.77,
97  1-cPad->GetTopMargin() );
98  legB->SetBorderSize(1);
99  legB->AddEntry(b,"Input data (backgr.)","p");
100 
101  // register
102  hasBeenUsed.push_back( bname.Data() );
103 
104  // the PDFs --------------
105 
106  // check for splines
107  h = 0;
108  b = 0;
109  TString pname = hname; pname.ReplaceAll("_nice","");
110  for (int i=0; i<= 5; i++) {
111  TString hspline = pname + Form( "_smoothed_hist_from_spline%i", i );
112  h = (TH1F*)lhdir->Get( hspline );
113  if (h) {
114  b = (TH1F*)lhdir->Get( hspline.ReplaceAll("_sig","_bgd") );
115  break;
116  }
117  }
118 
119  // check for KDE
120  if (h == 0 && b == 0) {
121  TString hspline = pname +"_smoothed_hist_from_KDE";
122  h = (TH1F*)lhdir->Get( hspline );
123  if (h) {
124  b = (TH1F*)lhdir->Get( hspline.ReplaceAll("_sig","_bgd") );
125  }
126  }
127 
128  // found something ?
129  if (h == 0 || b == 0) {
130  cout << "--- likelihoodrefs.C: did not find spline for histogram: " << pname.Data() << endl;
131  }
132  else {
133 
134  Double_t pSscale = 1.0/(h->GetSumOfWeights()*h->GetBinWidth(1));
135  h->Scale( pSscale/hSscale );
136  color = 4;
137  c[ic]->cd(1);
138  h->SetLineWidth(2);
139  h->SetLineColor(color);
140  legS->AddEntry(h,"Estimated PDF (norm. signal)","l");
141  h->Draw("histsame");
142  legS->Draw();
143 
144  Double_t pBscale = 1.0/(b->GetSumOfWeights()*b->GetBinWidth(1));
145  b->Scale( pBscale/hBscale );
146  color = 2;
147  c[ic]->cd(2);
148  b->SetLineColor(color);
149  b->SetLineWidth(2);
150  legB->AddEntry(b,"Estimated PDF (norm. backgr.)","l");
151  b->Draw("histsame");
152 
153  // draw the legends
154  legB->Draw();
155 
156  hasBeenUsed.push_back( pname.Data() );
157  }
158  c[ic]->Update();
159 
160  // write to file
161  TString fname = Form( "%s/plots/%s_refs_c%i",dataset.Data(), titName.Data(), ic+1 );
162  TMVAGlob::imgconv( c[ic], fname );
163  //c[ic]->Update();
164 
165  newCanvas = kTRUE;
166  hasBeenUsed.push_back( hname.Data() );
167  }
168  }
169  }
170 }
171 
172 void TMVA::likelihoodrefs(TString dataset, TString fin , Bool_t useTMVAStyle )
173 {
174  // set style and remove existing canvas'
175  TMVAGlob::Initialize( useTMVAStyle );
176 
177  // checks if file with name "fin" is already open, and if not opens one
178  TFile *file=TMVAGlob::OpenFile( fin );
179 
180  // get all titles of the method likelihood
181  TList titles;
182  TString metlike="Method_Likelihood";
183  UInt_t ninst = TMVAGlob::GetListOfTitles(metlike,titles,file->GetDirectory(dataset.Data()));
184  if (ninst==0) {
185  cout << "Could not locate directory 'Method_Likelihood' in file " << fin << endl;
186  return;
187  }
188  // loop over all titles
189  TIter keyIter(&titles);
190  TDirectory *lhdir;
191  TKey *key;
192  while ((key = TMVAGlob::NextKey(keyIter,"TDirectory"))) {
193  lhdir = (TDirectory *)key->ReadObj();
194  likelihoodrefs(dataset, lhdir );
195  }
196 }
197 
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:47
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
Definition: TAttLine.h:43
virtual void Scale(Double_t c1=1, Option_t *option="")
Multiply this histogram by a constant c1.
Definition: TH1.cxx:6101
virtual Double_t GetMaximum(Double_t maxval=FLT_MAX) const
Return maximum value smaller than maxval of bins in the range, unless the value has been overridden b...
Definition: TH1.cxx:7844
void imgconv(TCanvas *c, const TString &fname)
Definition: tmvaglob.cxx:212
Float_t GetLeftMargin() const
Definition: TAttPad.h:44
virtual TList * GetListOfKeys() const
Definition: TDirectory.h:150
virtual void SetMaximum(Double_t maximum=-1111)
Definition: TH1.h:390
This class displays a legend box (TPaveText) containing several legend entries.
Definition: TLegend.h:23
virtual TObject * Get(const char *namecycle)
Return pointer to object identified by namecycle.
Definition: TDirectory.cxx:805
image html pict1_TGaxis_012 png width
Define new text attributes for the label number "labNum".
Definition: TGaxis.cxx:2551
TString & ReplaceAll(const TString &s1, const TString &s2)
Definition: TString.h:687
TFile * OpenFile(const TString &fin)
Definition: tmvaglob.cxx:192
virtual void Draw(Option_t *option="")
Draw this legend with its current attributes.
Definition: TLegend.cxx:423
void likelihoodrefs(TString dataset, TDirectory *lhdir)
virtual Double_t GetSumOfWeights() const
Return the sum of weights excluding under/overflows.
Definition: TH1.cxx:7269
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:47
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
Definition: TCanvas.cxx:688
virtual void SetMinimum(Double_t minimum=-1111)
Definition: TH1.h:391
Basic string class.
Definition: TString.h:131
1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:567
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
TKey * NextKey(TIter &keyIter, TString className)
Definition: tmvaglob.cxx:357
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
Definition: TAttMarker.h:38
Book space in a file, create I/O buffers, to fill them, (un)compress them.
Definition: TKey.h:24
A doubly linked list.
Definition: TList.h:44
virtual void SetLineColor(Color_t lcolor)
Set the line color.
Definition: TAttLine.h:40
void Initialize(Bool_t useTMVAStyle=kTRUE)
Definition: tmvaglob.cxx:176
virtual void Draw(Option_t *option="")
Draw this histogram with options.
Definition: TH1.cxx:2974
unsigned int UInt_t
Definition: RtypesCore.h:42
The most important graphics class in the ROOT system.
Definition: TPad.h:29
char * Form(const char *fmt,...)
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
Definition: TAttMarker.h:40
virtual TDirectory * GetDirectory(const char *apath, Bool_t printError=false, const char *funcname="GetDirectory")
Find a directory named "apath".
virtual void SetMarkerSize(Size_t msize=1)
Set the marker size.
Definition: TAttMarker.h:41
#define h(i)
Definition: RSha256.hxx:106
const Bool_t kFALSE
Definition: RtypesCore.h:88
The Canvas class.
Definition: TCanvas.h:31
virtual Double_t GetBinWidth(Int_t bin) const
Return bin width for 1D histogram.
Definition: TH1.cxx:8456
double Double_t
Definition: RtypesCore.h:55
TLegendEntry * AddEntry(const TObject *obj, const char *label="", Option_t *option="lpf")
Add a new entry to this legend.
Definition: TLegend.cxx:330
Describe directory structure in memory.
Definition: TDirectory.h:34
The TH1 histogram class.
Definition: TH1.h:56
virtual TObject * ReadObj()
To read a TObject* from the file.
Definition: TKey.cxx:722
Float_t GetTopMargin() const
Definition: TAttPad.h:46
virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
Automatic pad generation by division.
Definition: TPad.cxx:1162
Definition: file.py:1
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
#define c(i)
Definition: RSha256.hxx:101
virtual void Update()
Update canvas pad buffers.
Definition: TCanvas.cxx:2248
const Bool_t kTRUE
Definition: RtypesCore.h:87
const Int_t n
Definition: legend1.C:16
virtual void SetBorderSize(Int_t bordersize=4)
Definition: TPave.h:70
const char * Data() const
Definition: TString.h:364
UInt_t GetListOfTitles(TDirectory *rfdir, TList &titles)
Definition: tmvaglob.cxx:636