source: trunk/MagicSoft/Mars/macros/star.C@ 2578

Last change on this file since 2578 was 2470, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 3.7 KB
Line 
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
34void 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 //
50 // Now setup the tasks and tasklist:
51 // ---------------------------------
52 //
53 MReadMarsFile read("Events");
54 read.DisableAutoScheme();
55
56 // ------------- user change -----------------
57 read.AddFile("~/MC/test_sample/Gamma_zbin0_0_*.root");
58
59 MGeomApply apply;
60 MMcPedestalCopy pcopy;
61 MMcPedestalNSBAdd pnsb;
62 MCerPhotCalc ncalc;
63
64 MBlindPixelCalc blind;
65 blind.SetUseInterpolation();
66
67 MSigmabarCalc sgcal;
68 MImgCleanStd clean;
69 MHillasCalc hcalc;
70 MHillasSrcCalc scalc; // !!Preliminary!! Will be removed later!
71
72 // ------------- user change -----------------
73 MWriteRootFile write("starfile.root");
74
75 tlist.AddToList(&read);
76 tlist.AddToList(&apply);
77 tlist.AddToList(&pcopy);
78 tlist.AddToList(&pnsb);
79 tlist.AddToList(&ncalc);
80 tlist.AddToList(&blind);
81 tlist.AddToList(&sgcal);
82 tlist.AddToList(&clean);
83 tlist.AddToList(&hcalc);
84 tlist.AddToList(&scalc);
85 tlist.AddToList(&write);
86
87 // ------------- user change -----------------
88 // You may use the "UPDATE" option in the constructor
89 // of MWriteRootFile to update an existing file.
90 //
91 // tlist.SetSerialNumber(1); // Serial number of telescope
92
93 write.AddContainer(write.AddSerialNumber("MMcEvt"), "Events");
94 write.AddContainer(write.AddSerialNumber("MSigmabar"), "Events");
95 write.AddContainer(write.AddSerialNumber("MHillas"), "Events");
96 write.AddContainer(write.AddSerialNumber("MHillasExt"), "Events");
97 write.AddContainer(write.AddSerialNumber("MHillasSrc"), "Events");
98 write.AddContainer(write.AddSerialNumber("MNewImagePar"), "Events");
99 write.AddContainer(write.AddSerialNumber("MSrcPosCam"), "RunHeaders");
100 write.AddContainer("MRawRunHeader", "RunHeaders");
101 write.AddContainer("MMcRunHeader", "RunHeaders");
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}
Note: See TracBrowser for help on using the repository browser.