00001
00002
00003
00004 #include <TRint.h>
00005
00006 #include "TFndPreanGUI.h"
00007
00008 int main(int argc, char **argv) {
00009 TRint *theApp = new TRint("prean",&argc,argv,NULL,0,1);
00010 theApp->ProcessFile("$FROOTSYS/preanalysis/preanlogon.C");
00011 theApp->SetPrompt("# preanalysis > ");
00012
00013
00014 TFndPreanGUI *PreanShowGui = new TFndPreanGUI();
00015 PreanShowGui->SetDebugLevel(0);
00016
00017 PreanShowGui->BuildGUI();
00018 PreanShowGui->CustomizeGUI();
00019
00020 PreanShowGui->MakeConnections();
00021 PreanShowGui->MapGUI();
00022
00023 PreanShowGui->FillCombos();
00024
00025
00026
00027
00028 theApp->Run();
00029 theApp->Terminate(0);
00030 delete theApp;
00031 return(0);
00032 }
00033
00034