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 |
|
|
}
|