swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: b09d279a7caa57d7edcdf27e43631419b84ac278 authored by Unknown Author on 06 June 2007, 10:03:49 UTC
This commit was manufactured by cvs2svn to create tag 'v5-15-08-caf'.
Tip revision: b09d279
plotall.C
#include "variables.C"
#include "correlations.C"
#include "efficiencies.C"
#include "mvas.C"
#include "mutransform.C"

void plotall( TString fin = "TMVA.root" )
{
  cout << "=== execute: variables()" << endl;
  variables( fin );

  cout << "=== execute: correlations()" << endl;
  correlations( fin );

  cout << "=== execute: mvas()" << endl;
  mvas( fin );

  cout << "=== execute: efficiencies()" << endl;
  efficiencies( fin );

  cout << "=== execute: ztransform()" << endl;
  mutransform( fin );
}
back to top