ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/jbabb/ScriptsAndMacros/plotall.C
Revision: 1.1
Committed: Sat Sep 3 21:22:39 2011 UTC (13 years, 8 months ago) by jbabb
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
*** empty log message ***

File Contents

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