Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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
15 TList* GetKeyList( const TString& pattern );
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:110
A Control Bar is a fully user configurable tool which provides fast access to frequently used operati...
Definition TControlBar.h:26
A doubly linked list.
Definition TList.h:38
Basic string class.
Definition TString.h:139
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