#include #include #include #include #include #include "MCosy.h" #include "MTime.h" #include "MLogManip.h" #include "MStarguider.h" #define EXPERT #define clog(txt) \ { \ const Bool_t is = lout.IsOutputDeviceEnabled(MLog::eStdout); \ lout << edev(MLog::eStdout) << txt << endl; \ if (is) \ lout.EnableOutputDevice(MLog::eStdout); \ } /* ---------------------------------------------------------------------- */ int main(int argc, char **argv) { gLog << "==================================================" << endl; gLog << " Cosy V0.1 " << endl; gLog << " Magic Drive Control System Software " << endl; gLog << " Compiled on <" << __DATE__ << ">" << endl; gLog << " Using ROOT v" << ROOTVER << endl; gLog << "==================================================" << endl; gLog << endl; Int_t channel = 0; for (int i=0; iStart(); MStarguider *client=0; if (channel>=0) { clog("- Starting Camera."); client=new MStarguider(MObservatory::kMagic1, channel); cosy->SetStarguider(client); client->SetCosy(cosy); } clog("- Starting mainloop."); #ifndef EXPERT lout.DisableOutputDevice(MLog::eStdout); #endif app->Run(kTRUE); if (channel>=0) { client->SetCosy(NULL); cosy->SetStarguider(NULL); clog("- Stopping starg."); delete client; } clog("- Stopping cosy."); cosy->Stop(); now.Now(); clog(now << ": MCosy stopped."); delete cosy; now.Now(); clog("Terminating cosy at " << now); delete l; cout << "The End." << endl; }