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-2003
|
---|
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("magictest/test/Gamma_z*.root");
|
---|
69 |
|
---|
70 | MMcPedestalCopy pcopy;
|
---|
71 | MMcPedestalNSBAdd pnsb;
|
---|
72 | MCerPhotCalc ncalc;
|
---|
73 |
|
---|
74 | MBlindPixelCalc blind;
|
---|
75 | blind.SetUseInterpolation();
|
---|
76 |
|
---|
77 | MSigmabarCalc sgcal;
|
---|
78 | MImgCleanStd clean;
|
---|
79 | MHillasCalc hcalc;
|
---|
80 | MHillasSrcCalc scalc; // !!Preliminary!! Will be removed later!
|
---|
81 |
|
---|
82 | // ------------- user change -----------------
|
---|
83 | MWriteRootFile write("starfile.root");
|
---|
84 | write.AddContainer("MMcEvt", "Events");
|
---|
85 | write.AddContainer("MSigmabar", "Events");
|
---|
86 | write.AddContainer("MHillas", "Events");
|
---|
87 | write.AddContainer("MHillasExt", "Events");
|
---|
88 | write.AddContainer("MHillasSrc", "Events");
|
---|
89 | write.AddContainer("MNewImagePar", "Events");
|
---|
90 | write.AddContainer("MRawRunHeader", "RunHeaders");
|
---|
91 | write.AddContainer("MMcRunHeader", "RunHeaders");
|
---|
92 | write.AddContainer("MSrcPosCam", "RunHeaders");
|
---|
93 |
|
---|
94 | tlist.AddToList(&read);
|
---|
95 | tlist.AddToList(&pcopy);
|
---|
96 | tlist.AddToList(&pnsb);
|
---|
97 | tlist.AddToList(&ncalc);
|
---|
98 | tlist.AddToList(&blind);
|
---|
99 | tlist.AddToList(&sgcal);
|
---|
100 | tlist.AddToList(&clean);
|
---|
101 | tlist.AddToList(&hcalc);
|
---|
102 | tlist.AddToList(&scalc);
|
---|
103 | tlist.AddToList(&write);
|
---|
104 |
|
---|
105 | //
|
---|
106 | // Create and set up the eventloop
|
---|
107 | //
|
---|
108 | MProgressBar bar;
|
---|
109 |
|
---|
110 | MEvtLoop evtloop;
|
---|
111 | evtloop.SetProgressBar(&bar);
|
---|
112 | evtloop.SetParList(&plist);
|
---|
113 |
|
---|
114 | //
|
---|
115 | // Execute your analysis
|
---|
116 | //
|
---|
117 | if (!evtloop.Eventloop())
|
---|
118 | return;
|
---|
119 |
|
---|
120 | tlist.PrintStatistics();
|
---|
121 | }
|
---|