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 "variables.C" |
2 | #include "correlations.C" | ||
3 | #include "efficiencies.C" | ||
4 | #include "mvas.C" | ||
5 | #include "mutransform.C" | ||
6 | |||
7 | void plotall( TString fin = "TMVA.root" ) | ||
8 | { | ||
9 | cout << "=== execute: variables()" << endl; | ||
10 | variables( fin ); | ||
11 | |||
12 | cout << "=== execute: correlations()" << endl; | ||
13 | correlations( fin ); | ||
14 | |||
15 | cout << "=== execute: mvas()" << endl; | ||
16 | mvas( fin ); | ||
17 | |||
18 | cout << "=== execute: efficiencies()" << endl; | ||
19 | efficiencies( fin ); | ||
20 | |||
21 | cout << "=== execute: ztransform()" << endl; | ||
22 | mutransform( fin ); | ||
23 | } |