Revision: | 1.1 |
Committed: | Thu Nov 20 22:34:50 2008 UTC (16 years, 5 months ago) by kukartse |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | V00-03-01, ZMorph_BASE_20100408, gak040610_morphing, V00-02-02, gak011410, gak010310, ejterm2010_25nov2009, V00-02-01, V00-02-00, gak112409, CMSSW_22X_branch_base, segala101609, V00-01-15, V00-01-14, V00-01-13, V00-01-12, V00-01-11, V00-01-10, gak031009, gak030509, gak022309, gak021209, gak040209, gak012809, V00-01-09, V00-01-08, V00-01-07, V00-01-06, V00-01-05, V00-01-04, V00-00-07, V00-00-06, V00-00-05, V00-00-04, V00-01-03, V00-00-02, V00-00-01, HEAD |
Branch point for: | ZMorph-V00-03-01, CMSSW_22X_branch |
Log Message: | created /macros with TMVA scripts in it |
# | User | Rev | Content |
---|---|---|---|
1 | kukartse | 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::kNormal, bool useTMVAStyle=kTRUE ) | ||
14 | { | ||
15 | rulevisHists(fin,type,useTMVAStyle); | ||
16 | rulevisCorr(fin,type,useTMVAStyle); | ||
17 | } |