ROOT  6.06/09
Reference Guide
BDTControlPlots.cxx
Go to the documentation of this file.
1 #include "TMVA/BDTControlPlots.h"
2 #include <vector>
3 #include <string>
4 
5 
6 #include "TH1.h"
7 #include "TGraph.h"
8 
9 // input: - Input file (result from TMVA),
10 // - use of TMVA plotting TStyle
11 
12 void TMVA::BDTControlPlots( TString fin , Bool_t useTMVAStyle )
13 {
14  // set style and remove existing canvas'
15  TMVAGlob::Initialize( useTMVAStyle );
16 
17  // checks if file with name "fin" is already open, and if not opens one
18  TFile* file;
19  file = TMVAGlob::OpenFile( fin );
20  if (file == NULL) {
21  cout << "Problems with input file, tried to open " << fin << " but somehow did not succeed .." << endl;
22  return;
23  }
24 
25  // get all titles of the method BDT
26  TList titles;
27  TString methodName = "Method_BDT";
28  UInt_t ninst = TMVAGlob::GetListOfTitles(methodName,titles);
29  if (ninst==0) {
30  cout << "Could not locate directory 'Method_BDT' in file " << fin << endl;
31  return;
32  }
33  // loop over all titles
34  TIter keyIter(&titles);
35  TDirectory *bdtdir;
36  TKey *key;
37  while ((key = TMVAGlob::NextKey(keyIter,"TDirectory"))) {
38  bdtdir = (TDirectory *)key->ReadObj();
39  bdtcontrolplots( bdtdir );
40  }
41 }
42 
44 
45  const Int_t nPlots = 6;
46 
47  Int_t width = 900;
48  Int_t height = 600;
49  char cn[100], cn2[100];
50  const TString titName = bdtdir->GetName();
51  sprintf( cn, "cv_%s", titName.Data() );
52  TCanvas *c = new TCanvas( cn, Form( "%s Control Plots", titName.Data() ),
53  width, height );
54  c->Divide(3,2);
55 
56 
57 
58 
59  TString hname[nPlots]={"BoostMonitor","BoostWeight","BoostWeightVsTree","ErrFractHist","NodesBeforePruning",titName+"_FOMvsIterFrame"};
60 
61  Bool_t BoostMonitorIsDone=kFALSE;
62 
63  for (Int_t i=0; i<nPlots; i++){
64  Int_t color = 4;
65  c->cd(i+1);
66  TH1 *h = (TH1*) bdtdir->Get(hname[i]);
67 
68  if (h){
69  h->SetMaximum(h->GetMaximum()*1.3);
70  h->SetMinimum( 0 );
71  h->SetMarkerColor(color);
72  h->SetMarkerSize( 0.7 );
73  h->SetMarkerStyle( 24 );
74  h->SetLineWidth(1);
75  h->SetLineColor(color);
76  if(hname[i]=="NodesBeforePruning")h->SetTitle("Nodes before/after pruning");
77  h->Draw();
78  if(hname[i]=="NodesBeforePruning"){
79  TH1 *h2 = (TH1*) bdtdir->Get("NodesAfterPruning");
80  h2->SetLineWidth(1);
81  h2->SetLineColor(2);
82  h2->Draw("same");
83  }
84  if(hname[i]=="BoostMonitor"){ // a plot only available in case DoBoostMontior option has bee set
85  TGraph *g = (TGraph*) bdtdir->Get("BoostMonitorGraph");
86  g->Draw("LP*");
87  BoostMonitorIsDone = kTRUE;
88  }
89  if(hname[i]==titName+"_FOMvsIterFrame"){ // a plot only available in case DoBoostMontior option has bee set
90  TGraph *g = (TGraph*) bdtdir->Get(titName+"_FOMvsIter");
91  g->Draw();
92  }
93  c->Update();
94  }
95  }
96 
97 
98  TCanvas *c2 = NULL;
99  if (BoostMonitorIsDone){
100  sprintf( cn2, "cv2_%s", titName.Data() );
101  c2 = new TCanvas( cn2, Form( "%s BoostWeights", titName.Data() ),
102  1200, 1200 );
103  c2->Divide(5,5);
104  Int_t ipad=1;
105 
106  TIter keys( bdtdir->GetListOfKeys() );
107  TKey *key;
108  // gDirectory->ls();
109  while ( (key = (TKey*)keys.Next()) && ipad < 26) {
110  TObject *obj=key->ReadObj();
111  if (obj->IsA()->InheritsFrom(TH1::Class())){
112  TH1F *hx = (TH1F*)obj;
113  TString hhname_(Form("%s",obj->GetTitle()));
114  if (hhname_.Contains("BoostWeightsInTreeB")){
115  c2->cd(ipad++);
116  hx->SetLineColor(4);
117  hx->Draw();
118  hhname_.ReplaceAll("TreeB","TreeS");
119  bdtdir->GetObject(hhname_.Data(),hx);
120  if (hx) {
121  hx->SetLineColor(2);
122  hx->Draw("same");
123  }
124  }
125  c2->Update();
126  }
127  }
128 
129  }
130 
131  // write to file
132  TString fname = Form( "plots/%s_ControlPlots", titName.Data() );
133  TMVAGlob::imgconv( c, fname );
134 
135  if (c2){
136  fname = Form( "plots/%s_ControlPlots2", titName.Data() );
137  TMVAGlob::imgconv( c2, fname );
138  }
139 
140  TCanvas *c3 = NULL;
141  if (BoostMonitorIsDone){
142  sprintf( cn2, "cv3_%s", titName.Data() );
143  c3 = new TCanvas( cn2, Form( "%s Variables", titName.Data() ),
144  1200, 1200 );
145  c3->Divide(5,5);
146  Int_t ipad=1;
147 
148  TIter keys( bdtdir->GetListOfKeys() );
149  TKey *key;
150  // gDirectory->ls();
151  while ( (key = (TKey*)keys.Next()) && ipad < 26) {
152  TObject *obj=key->ReadObj();
153  if (obj->IsA()->InheritsFrom(TH1::Class())){
154  TH1F *hx = (TH1F*)obj;
155  TString hname_(Form("%s",obj->GetTitle()));
156  if (hname_.Contains("SigVar0AtTree")){
157  c3->cd(ipad++);
158  hx->SetLineColor(4);
159  hx->Draw();
160  hname_.ReplaceAll("Sig","Bkg");
161  bdtdir->GetObject(hname_.Data(),hx);
162  if (hx) {
163  hx->SetLineColor(2);
164  hx->Draw("same");
165  }
166  }
167  c3->Update();
168  }
169  }
170 
171  }
172 
173 
174 }
175 
176 
virtual void SetLineWidth(Width_t lwidth)
Definition: TAttLine.h:57
void imgconv(TCanvas *c, const TString &fname)
Definition: tmvaglob.cxx:212
virtual void SetMaximum(Double_t maximum=-1111)
Definition: TH1.h:394
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
Definition: TObject.cxx:487
virtual TList * GetListOfKeys() const
Definition: TDirectory.h:155
virtual TObject * Get(const char *namecycle)
Return pointer to object identified by namecycle.
Definition: TDirectory.cxx:727
void GetObject(const char *namecycle, T *&ptr)
Definition: TDirectory.h:144
TString & ReplaceAll(const TString &s1, const TString &s2)
Definition: TString.h:635
TFile * OpenFile(const TString &fin)
Definition: tmvaglob.cxx:192
TH1 * h
Definition: legend2.C:5
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:45
virtual void SetMinimum(Double_t minimum=-1111)
Definition: TH1.h:395
Basic string class.
Definition: TString.h:137
1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:570
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
TKey * NextKey(TIter &keyIter, TString className)
Definition: tmvaglob.cxx:357
virtual void Draw(Option_t *chopt="")
Draw this graph with its current attributes.
Definition: TGraph.cxx:740
const char * Data() const
Definition: TString.h:349
void Class()
Definition: Class.C:29
virtual void SetMarkerColor(Color_t mcolor=1)
Definition: TAttMarker.h:51
Book space in a file, create I/O buffers, to fill them, (un)compress them.
Definition: TKey.h:30
void BDTControlPlots(TString fin="TMVA.root", Bool_t useTMVAStyle=kTRUE)
A doubly linked list.
Definition: TList.h:47
virtual void SetLineColor(Color_t lcolor)
Definition: TAttLine.h:54
void Initialize(Bool_t useTMVAStyle=kTRUE)
Definition: tmvaglob.cxx:176
virtual void Draw(Option_t *option="")
Draw this histogram with options.
Definition: TH1.cxx:2878
unsigned int UInt_t
Definition: RtypesCore.h:42
char * Form(const char *fmt,...)
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:51
virtual void SetMarkerStyle(Style_t mstyle=1)
Definition: TAttMarker.h:53
void bdtcontrolplots(TDirectory *)
virtual void SetMarkerSize(Size_t msize=1)
Definition: TAttMarker.h:54
The Canvas class.
Definition: TCanvas.h:48
return c2
Definition: legend2.C:14
Describe directory structure in memory.
Definition: TDirectory.h:41
The TH1 histogram class.
Definition: TH1.h:80
Mother of all ROOT objects.
Definition: TObject.h:58
virtual TObject * ReadObj()
To read a TObject* from the file.
Definition: TKey.cxx:727
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
Definition: TString.h:567
A Graph is a graphics object made of two arrays X and Y with npoints each.
Definition: TGraph.h:53
#define NULL
Definition: Rtypes.h:82
virtual void SetTitle(const char *title)
Change (i.e.
Definition: TH1.cxx:6268
const Bool_t kTRUE
Definition: Rtypes.h:91
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:7921
virtual const char * GetTitle() const
Returns title of object.
Definition: TObject.cxx:459
TObject * obj
return c3
Definition: legend3.C:15
UInt_t GetListOfTitles(TDirectory *rfdir, TList &titles)
Definition: tmvaglob.cxx:634