#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "TROOT.h"
#include "TApplication.h"
#include "TRint.h"
#include "TEnv.h"
#include "TVirtualX.h"
#include "XANADOO/XANADisplay/interface/XANAMainFrame.h"
Include dependency graph for xanaDisplay.cpp:
Go to the source code of this file.
Functions | |
void | InitGui () |
TROOT | root ("XANAMainFrame","XANADisplay", initfuncs) |
int | main (int argc, char **argv) |
Variables | |
VoidFuncPtr_t | initfuncs [] = { InitGui, 0 } |
|
|
|
Definition at line 17 of file xanaDisplay.cpp.
00018 { 00019 TString *fname=0; 00020 if(argc>1) 00021 fname = new TString(argv[1]); 00022 00023 TRint theApp("App", &argc, argv); 00024 new XANAMainFrame(gClient->GetRoot(), 450, 650,fname); 00025 theApp.Run(); 00026 return 0; 00027 } |
|
|
|
Definition at line 13 of file xanaDisplay.cpp. |