#include #include "MAGIC.h" #include "MLog.h" #include "MLogManip.h" #include "MCameraDisplay.h" #include "MArgs.h" #include "MArray.h" #include "MParContainer.h" #ifdef HAVE_XPM #include "MLogo.h" #endif using namespace std; // ********************************************************************** // // 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 static void StartUpMessage() { gLog << all << endl; // 1 2 3 4 5 // 12345678901234567890123456789012345678901234567890 gLog << "==================================================" << endl; gLog << " MARS V" << MARSVER << endl; gLog << " Magic Analysis and Reconstruction Software" << endl; gLog << " Compiled with ROOT v" << ROOTVER << " on <" << __DATE__ ">" << endl; gLog << "==================================================" << endl; gLog << endl; } static void Usage() { gLog << all << endl; gLog << "Sorry the usage is:" << endl; gLog << " mars [options]" << endl << endl; gLog << " Options:" << endl; gLog.Usage(); gLog << " -?/-h: This help" << endl << endl; } int main(int argc, char **argv) { // // Evaluate arguments // MArgs arg(argc, argv, kTRUE); gLog.Setup(arg); StartUpMessage(); if (arg.HasOption("-?") || arg.HasOption("-h")) { Usage(); return 2; } #ifdef HAVE_XPM MLogo logo; logo.Popup(); #endif // // initialise ROOT // TApplication app("mars", &argc, argv); if (gROOT->IsBatch() || !gClient) { gLog << "Bombing... maybe your DISPLAY variable is not set correctly!" << endl; return 1; } // // Swtich of TObjectStreamer in our base classes derived from TObject // MArray::Class()->IgnoreTObjectStreamer(); MParContainer::Class()->IgnoreTObjectStreamer(); /* TGApplication app("Mars", &argc, argv); #if ROOT_VERSION_CODE < ROOT_VERSION(3,10,02) InitGuiFactory(); #endif */ #ifdef HAVE_XPM logo.Popdown(); #endif // // start the main window // new MCameraDisplay; // // run the application // app.Run(); gLog << all << endl; return 0; }