| 1 | /* ======================================================================== *\
|
|---|
| 2 | !
|
|---|
| 3 | ! *
|
|---|
| 4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
|---|
| 5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
|---|
| 6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
|---|
| 7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
|---|
| 8 | ! *
|
|---|
| 9 | ! * Permission to use, copy, modify and distribute this software and its
|
|---|
| 10 | ! * documentation for any purpose is hereby granted without fee,
|
|---|
| 11 | ! * provided that the above copyright notice appear in all copies and
|
|---|
| 12 | ! * that both that copyright notice and this permission notice appear
|
|---|
| 13 | ! * in supporting documentation. It is provided "as is" without express
|
|---|
| 14 | ! * or implied warranty.
|
|---|
| 15 | ! *
|
|---|
| 16 | !
|
|---|
| 17 | !
|
|---|
| 18 | ! Author(s): Thomas Bretz 5/2002 <mailto:tbretz@astro.uni-wuerzburg.de>
|
|---|
| 19 | !
|
|---|
| 20 | ! Copyright: MAGIC Software Development, 2000-2002
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 26 | //
|
|---|
| 27 | // STAR - STandard Analysis and Reconstruction
|
|---|
| 28 | //
|
|---|
| 29 | // This macro is the standard converter to convert raw data into image
|
|---|
| 30 | // parameters
|
|---|
| 31 | //
|
|---|
| 32 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 33 |
|
|---|
| 34 | void star()
|
|---|
| 35 | {
|
|---|
| 36 | //
|
|---|
| 37 | // This is a demonstration program which calculates the image
|
|---|
| 38 | // parameters from a Magic raw data root file.
|
|---|
| 39 |
|
|---|
| 40 | //
|
|---|
| 41 | // Create a empty Parameter List and an empty Task List
|
|---|
| 42 | // The tasklist is identified in the eventloop by its name
|
|---|
| 43 | //
|
|---|
| 44 | MParList plist;
|
|---|
| 45 |
|
|---|
| 46 | MTaskList tlist;
|
|---|
| 47 | plist.AddToList(&tlist);
|
|---|
| 48 |
|
|---|
| 49 | MSrcPosCam src;
|
|---|
| 50 | src.SetReadyToSave();
|
|---|
| 51 | plist.AddToList(&src);
|
|---|
| 52 |
|
|---|
| 53 | //
|
|---|
| 54 | // The geometry container must be created by yourself to make sure
|
|---|
| 55 | // that you don't choose a wrong geometry by mistake
|
|---|
| 56 | //
|
|---|
| 57 | MGeomCamMagic geomcam;
|
|---|
| 58 | plist.AddToList(&geomcam);
|
|---|
| 59 |
|
|---|
| 60 | //
|
|---|
| 61 | // Now setup the tasks and tasklist:
|
|---|
| 62 | // ---------------------------------
|
|---|
| 63 | //
|
|---|
| 64 | MReadMarsFile read("Events");
|
|---|
| 65 | read.DisableAutoScheme();
|
|---|
| 66 |
|
|---|
| 67 | // ------------- user change -----------------
|
|---|
| 68 | read.AddFile("data/Gamma_z*.root");
|
|---|
| 69 | //read.AddFile("Gam*.root");
|
|---|
| 70 |
|
|---|
| 71 | MMcPedestalCopy pcopy;
|
|---|
| 72 | MMcPedestalNSBAdd pnsb;
|
|---|
| 73 | MCerPhotCalc ncalc;
|
|---|
| 74 |
|
|---|
| 75 | MBlindPixelCalc blind;
|
|---|
| 76 | blind.SetUseInterpolation();
|
|---|
| 77 |
|
|---|
| 78 | MImgCleanStd clean;
|
|---|
| 79 | MHillasCalc hcalc;
|
|---|
| 80 | MHillasSrcCalc scalc; // !!Preliminary!! Will be removed later!
|
|---|
| 81 |
|
|---|
| 82 | // ------------- user change -----------------
|
|---|
| 83 | MWriteRootFile write("data/star_protons.root");
|
|---|
| 84 | write.AddContainer("MHillas", "Events");
|
|---|
| 85 | write.AddContainer("MHillasExt", "Events");
|
|---|
| 86 | write.AddContainer("MNewImagePar", "Events");
|
|---|
| 87 | write.AddContainer("MMcEvt", "Events");
|
|---|
| 88 | write.AddContainer("MHillasSrc", "Events");
|
|---|
| 89 | write.AddContainer("MRawRunHeader", "RunHeaders");
|
|---|
| 90 | write.AddContainer("MMcRunHeader", "RunHeaders");
|
|---|
| 91 | write.AddContainer("MSrcPosCam", "RunHeaders");
|
|---|
| 92 |
|
|---|
| 93 | tlist.AddToList(&read);
|
|---|
| 94 | tlist.AddToList(&pcopy);
|
|---|
| 95 | tlist.AddToList(&pnsb);
|
|---|
| 96 | tlist.AddToList(&ncalc);
|
|---|
| 97 | tlist.AddToList(&blind);
|
|---|
| 98 | tlist.AddToList(&clean);
|
|---|
| 99 | tlist.AddToList(&hcalc);
|
|---|
| 100 | tlist.AddToList(&scalc);
|
|---|
| 101 | tlist.AddToList(&write);
|
|---|
| 102 |
|
|---|
| 103 | //
|
|---|
| 104 | // Create and set up the eventloop
|
|---|
| 105 | //
|
|---|
| 106 | MProgressBar bar;
|
|---|
| 107 |
|
|---|
| 108 | MEvtLoop evtloop;
|
|---|
| 109 | evtloop.SetProgressBar(&bar);
|
|---|
| 110 | evtloop.SetParList(&plist);
|
|---|
| 111 |
|
|---|
| 112 | //
|
|---|
| 113 | // Execute your analysis
|
|---|
| 114 | //
|
|---|
| 115 | if (!evtloop.Eventloop())
|
|---|
| 116 | return;
|
|---|
| 117 |
|
|---|
| 118 | tlist.PrintStatistics();
|
|---|
| 119 | }
|
|---|