#include #include #include "MMars.h" // ********************************************************************** // // MARS main program // // The only job of the main program is the initialisation of ROOT and // the start of the guiinterface for the mars program // // started by h. kornmayer january, 3rd 2001 int main(int argc, char **argv ) { // // initialise ROOT // TROOT simple("Mars", "MARS - MAGIC analysis and reconstruction software"); TApplication app("MarsApp", &argc, argv); // // start the main window // new MMars; // // run the application // app.Run(); return 0; }