1 |
benhoob |
1.1 |
#include "tmvaglob.C"
|
2 |
|
|
#include "rulevisHists.C"
|
3 |
|
|
#include "rulevisCorr.C"
|
4 |
|
|
|
5 |
|
|
// This macro plots the distributions of the different input variables overlaid on
|
6 |
|
|
// the sum of importance per bin.
|
7 |
|
|
// The scale goes from violett (no importance) to red (high importance).
|
8 |
|
|
// Areas where many important rules are active, will thus be very red.
|
9 |
|
|
//
|
10 |
|
|
// input: - Input file (result from TMVA),
|
11 |
|
|
// - normal/decorrelated/PCA
|
12 |
|
|
// - use of TMVA plotting TStyle
|
13 |
|
|
void rulevis( TString fin = "TMVA.root", TMVAGlob::TypeOfPlot type = TMVAGlob::kNorm, bool useTMVAStyle=kTRUE )
|
14 |
|
|
{
|
15 |
|
|
//rulevisHists(fin,type,useTMVAStyle);
|
16 |
|
|
rulevisCorr(fin,type,useTMVAStyle);
|
17 |
|
|
}
|