source: trunk/MagicSoft/MarsOctober/mars.cc@ 716

Last change on this file since 716 was 452, checked in by harald, 24 years ago
Further improvements in the layout of some guiclasses. Know the fundament for calculating the pedestals is created with the first implementation of the classes MPixPedest and MPedest. A first task for calculating the pedestals is set up (MCalcPed1).
File size: 1.2 KB
Line 
1#include <stdlib.h>
2//#include <iostream.h>
3
4#include <TROOT.h>
5#include <TApplication.h>
6#include <TVirtualX.h>
7#include <TGClient.h>
8
9#include "MGOctMain.h"
10
11// **********************************************************************
12//
13// main program for the october test.
14//
15// The only job of the main program is the initialisation of ROOT and
16// the start of the guiinterface for the october test
17//
18// h. kornmayer 25.oct.2000
19
20
21
22int main(int argc, char **argv )
23{
24 // cout << "==================================================" << endl ;
25 // cout << " MARS v0.2" << endl;
26 // cout << " MAGIC Analysis and Reconstruction Software" << endl ;
27 // cout << " Compiled on <" << __DATE__ << ">" << endl ;
28 // cout << "==================================================" << endl ;
29 // cout << endl;
30 // cout << endl;
31
32 //
33 // initialize ROOT (this is obligatory here)
34 //
35 // initialise ROOT
36
37 TROOT simple("simple", "SIMONE - statistic of MonteCarlo");
38
39 TApplication theApp("App", &argc, argv);
40
41 MGOctMain mainWin(gClient->GetRoot(), 1, 1);
42
43 theApp.Run();
44
45
46 return 0;
47}
48
49
Note: See TracBrowser for help on using the repository browser.