/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz 4/2003 ! ! Copyright: MAGIC Software Development, 2000-2003 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // Status - Example how to use the MStatusDisplay // // Use a camera file as input // ///////////////////////////////////////////////////////////////////////////// void status() { // // Update frequency by default = 1Hz // MStatusDisplay *d = new MStatusDisplay; // Set update time to 5s // d->SetUpdateTime(5000); // Disable online update // d->SetUpdateTime(-1); d->SetLogStream(&gLog); // Disables output to stdout gLog.SetOutputFile("status.log", kTRUE); // Enable output to file //gLog.EnableOutputDevice(MLog::eStdout); // Enable output to stdout again // // Create a empty Parameter List and an empty Task List // The tasklist is identified in the eventloop by its name // MParList plist; MTaskList tlist; plist.AddToList(&tlist); MSrcPosCam src; src.SetReadyToSave(); plist.AddToList(&src); // Use MHillasExt instead of MHillas MHillasExt hext; plist.AddToList(&hext); // // The geometry container must be created by yourself to make sure // that you don't choose a wrong geometry by mistake // MGeomCamMagic geomcam; plist.AddToList(&geomcam); // // Now setup the tasks and tasklist: // --------------------------------- // MReadMarsFile read("Events"); read.DisableAutoScheme(); // ------------- user change ----------------- read.AddFile("data/Pro*.root"); read.AddFile("data/Gam*.root"); MMcPedestalCopy pcopy; MMcPedestalNSBAdd pnsb; MCerPhotCalc ncalc; MBlindPixelCalc blind; blind.SetUseInterpolation(); MImgCleanStd clean; MHillasCalc hcalc; MHillasSrcCalc scalc; // !!Preliminary!! Will be removed later! MNewImageParCalc icalc; MCT1SupercutsCalc calc1; // ------------------------------------------- MFillH hfill1("MHHillas", "MHillas"); MFillH hfill2("MHHillasExt [MHHillasExt]"); MFillH hfill3("MHHillasExtSrc [MHHillasExt]"); MFillH hfill4("MHHillasSrc","MHillasSrc"); MFillH hfill4("MHNewImagePar","MNewImagePar"); MFillH hfill5("MHStarMap", "MHillas"); MFillH hfill6("MHCerPhotEvt", "MCerPhotEvt"); MFillH hfill7("MHHadronness", "MHadronness"); tlist.AddToList(&read); tlist.AddToList(&pcopy); tlist.AddToList(&pnsb); tlist.AddToList(&ncalc); tlist.AddToList(&blind); tlist.AddToList(&clean); tlist.AddToList(&hcalc); tlist.AddToList(&scalc); tlist.AddToList(&icalc); tlist.AddToList(&calc1); tlist.AddToList(&hfill7); tlist.AddToList(&hfill1); tlist.AddToList(&hfill2); tlist.AddToList(&hfill3); tlist.AddToList(&hfill4); tlist.AddToList(&hfill5); tlist.AddToList(&hfill6); MEvtLoop evtloop; evtloop.SetParList(&plist); evtloop.SetDisplay(d); // // Execute your analysis // if (!evtloop.Eventloop()) return; tlist.PrintStatistics(); // // Make sure the display hasn't been deleted by the user while the // eventloop was running. // if ((d = evtloop.GetDisplay())) { // Save data in a postscriptfile (status.ps) // d->SaveAsPS(); /* * ----------- Write status to a root file ------------ * TFile file("status.root", "RECREATE"); d->Write(); file.Close(); delete d; */ } /* * ----------- Read status from a root file ------------ * TFile file2("status.root", "READ"); MStatusDisplay *d2 = new MStatusDisplay; d2->Read(); */ }