source: trunk/MagicSoft/Simulation/Corsika/GuiSimone/simone.cxx@ 427

Last change on this file since 427 was 413, checked in by harald, 24 years ago
Import to start CVS control
File size: 460 bytes
Line 
1//
2//
3//
4//
5//
6//
7#include <stdlib.h>
8#include "TROOT.h"
9#include "TApplication.h"
10#include <TVirtualX.h>
11
12#include <TGClient.h>
13
14#include "MainFrameSimone.hxx"
15
16int main(int argc, char **argv)
17{
18 // initialise ROOT
19
20 TROOT simple("simple", "SIMONE - statistic of MonteCarlo");
21
22 TApplication theApp("App", &argc, argv);
23
24 MainFrameSimone mainWin(gClient->GetRoot(), 600, 500);
25
26
27 theApp.Run();
28
29
30 return 0;
31}
32
33
Note: See TracBrowser for help on using the repository browser.