ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/benhoob/HWW/rulevis.C
Revision: 1.1
Committed: Mon Feb 14 12:39:14 2011 UTC (14 years, 3 months ago) by benhoob
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
Initial commit

File Contents

# User Rev Content
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     }