]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/Aliengui/aliengui_main/aliengui_main.cxx
Temporary fix to compile if Root is compiled without XML support. More general soluti...
[u/mrichter/AliRoot.git] / ANALYSIS / Aliengui / aliengui_main / aliengui_main.cxx
CommitLineData
6ef7eb2f 1#include <TSystem.h>
2#include <TApplication.h>
64cfc561 3#ifdef WITHXML
6ef7eb2f 4#include <Aliengui/AliAnalysisGUI.h>
64cfc561 5#else
6#include <Aliengui/AliAnalysisGUIdummy.h>
7#endif
6ef7eb2f 8int main(int argc, char **argv) {
9 // main
10
11 TApplication theApp("App",&argc,argv);
12 new AliAnalysisGUI(gClient->GetRoot(),600,600);
13
14 theApp.Run();
15
16 return 0;
17}