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