Logo ROOT  
Reference Guide
TMVAGui.h
Go to the documentation of this file.
1#ifndef TMVAGui__HH
2#define TMVAGui__HH
3
4
5#include "TList.h"
6#include "TKey.h"
7#include "TString.h"
8#include "TControlBar.h"
9
10#include "tmvaglob.h"
11
12namespace TMVA{
13
14
16
17 // utility function
19 const TString& title, const TString& macro, const TString& comment,
20 const TString& buttonType, TString requiredKey = "");
21
22 // main GUI
23 void TMVAGui( const char* fName = "TMVA.root",TString dataset = "");
24
25 struct TMVAGUI {
26 TMVAGUI(TString name = "TMVA.root", TString dataset="") {
27 TMVA::TMVAGui(name.Data(),dataset);
28 }
29 };
30
31}
32
33
34#endif
char name[80]
Definition: TGX11.cxx:109
A Control Bar is a fully user configurable tool which provides fast access to frequently used operati...
Definition: TControlBar.h:22
A doubly linked list.
Definition: TList.h:44
Basic string class.
Definition: TString.h:131
static const std::string pattern("pattern")
static const std::string comment("comment")
create variable transformations
void ActionButton(TControlBar *cbar, const TString &title, const TString &macro, const TString &comment, const TString &buttonType, TString requiredKey="")
TList * GetKeyList(const TString &pattern)
void TMVAGui(const char *fName="TMVA.root", TString dataset="")
TMVAGUI(TString name="TMVA.root", TString dataset="")
Definition: TMVAGui.h:26