File indexing completed on 2025-01-18 10:11:11
0001 #ifndef TMVAGui__HH
0002 #define TMVAGui__HH
0003
0004
0005 #include "TList.h"
0006 #include "TKey.h"
0007 #include "TString.h"
0008 #include "TControlBar.h"
0009
0010 #include "tmvaglob.h"
0011
0012 namespace TMVA{
0013
0014
0015 TList* GetKeyList( const TString& pattern );
0016
0017
0018 void ActionButton( TControlBar* cbar,
0019 const TString& title, const TString& macro, const TString& comment,
0020 const TString& buttonType, TString requiredKey = "");
0021
0022
0023 void TMVAGui( const char* fName = "TMVA.root",TString dataset = "");
0024
0025 struct TMVAGUI {
0026 TMVAGUI(TString name = "TMVA.root", TString dataset="") {
0027 TMVA::TMVAGui(name.Data(),dataset);
0028 }
0029 };
0030
0031 }
0032
0033
0034 #endif