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 | // Uncomment this two line if you want to use MHillasExt instead
|
---|
55 | // of MHillas
|
---|
56 | //
|
---|
57 | MHillasExt hext;
|
---|
58 | plist.AddToList(&hext);
|
---|
59 |
|
---|
60 | //
|
---|
61 | // The geometry container must be created by yourself to make sure
|
---|
62 | // that you don't choose a wrong geometry by mistake
|
---|
63 | //
|
---|
64 | MGeomCamMagic geomcam;
|
---|
65 | plist.AddToList(&geomcam);
|
---|
66 |
|
---|
67 | //
|
---|
68 | // Now setup the tasks and tasklist:
|
---|
69 | // ---------------------------------
|
---|
70 | //
|
---|
71 | MReadMarsFile read("Events");
|
---|
72 | read.DisableAutoScheme();
|
---|
73 |
|
---|
74 | // ------------- user change -----------------
|
---|
75 | read.AddFile("Pro*.root");
|
---|
76 | //read.AddFile("Gam*.root");
|
---|
77 |
|
---|
78 | MMcPedestalCopy pcopy;
|
---|
79 | MMcPedestalNSBAdd pnsb;
|
---|
80 | MCerPhotCalc ncalc;
|
---|
81 |
|
---|
82 | MBlindPixelCalc blind;
|
---|
83 | blind.SetUseInterpolation();
|
---|
84 |
|
---|
85 | MImgCleanStd clean;
|
---|
86 | MHillasCalc hcalc;
|
---|
87 | MHillasSrcCalc scalc; // !!Preliminary!! Will be removed later!
|
---|
88 |
|
---|
89 | // ------------- user change -----------------
|
---|
90 | MWriteRootFile write("data/star_protons.root");
|
---|
91 | write.AddContainer("MHillas", "Events");
|
---|
92 | write.AddContainer("MMcEvt", "Events");
|
---|
93 | write.AddContainer("MHillasSrc", "Events");
|
---|
94 | write.AddContainer("MRawRunHeader", "RunHeaders");
|
---|
95 | write.AddContainer("MMcRunHeader", "RunHeaders");
|
---|
96 | write.AddContainer("MSrcPosCam", "RunHeaders");
|
---|
97 |
|
---|
98 | tlist.AddToList(&read);
|
---|
99 | tlist.AddToList(&pcopy);
|
---|
100 | tlist.AddToList(&pnsb);
|
---|
101 | tlist.AddToList(&ncalc);
|
---|
102 | tlist.AddToList(&blind);
|
---|
103 | tlist.AddToList(&clean);
|
---|
104 | tlist.AddToList(&hcalc);
|
---|
105 | tlist.AddToList(&scalc);
|
---|
106 | tlist.AddToList(&write);
|
---|
107 |
|
---|
108 | //
|
---|
109 | // Create and set up the eventloop
|
---|
110 | //
|
---|
111 | MProgressBar bar;
|
---|
112 |
|
---|
113 | MEvtLoop evtloop;
|
---|
114 | evtloop.SetProgressBar(&bar);
|
---|
115 | evtloop.SetParList(&plist);
|
---|
116 |
|
---|
117 | //
|
---|
118 | // Execute your analysis
|
---|
119 | //
|
---|
120 | if (!evtloop.Eventloop())
|
---|
121 | return;
|
---|
122 |
|
---|
123 | tlist.PrintStatistics();
|
---|
124 | }
|
---|