00001
00002 #include "TROOT.h"
00003 #include "TRint.h"
00004
00005 #include "bfemDisplay/EDControl.h"
00006
00007 TRint *theApp;
00008
00009 extern void InitGui();
00010 VoidFuncPtr_t initfuncs[] = { InitGui, 0 };
00011
00012 int main( int argc, char **argv )
00013
00014 {
00015
00016 TROOT root( "EventDisplay", "EventDisplay", initfuncs );
00017
00018 EDControl *evtCtrl;
00019
00020 Int_t p = 1;
00021 Char_t *a[ 10 ];
00022
00023 theApp = new TRint( "App", &p, a );
00024
00025 evtCtrl = new EDControl();
00026
00027 theApp->Run();
00028
00029 theApp->Terminate( 0 );
00030
00031
00032 }