00001
00002
00003
00004 #include <TRint.h>
00005
00006 #include "TFndMonitorGUI.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 TFndMonitorGUI *mon_gui = new TFndMonitorGUI();
00013 mon_gui->BuildMainGUI();
00014 theApp->Run();
00015 theApp->Terminate(0);
00016 delete theApp;
00017 return(0);
00018 }
00019
00020