source: trunk/MagicSoft/Mars/macros/status.C@ 2318

Last change on this file since 2318 was 2274, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 6.8 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, 4/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2003
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26//
27// Status - Example how to use the MStatusDisplay
28//
29// Use a camera file as input
30//
31/////////////////////////////////////////////////////////////////////////////
32
33void status(const char *fname="*1947*cosmic*.root")
34{
35 //
36 // Update frequency by default = 1Hz
37 //
38 MStatusDisplay *d = new MStatusDisplay;
39
40 // Set update time to 5s
41 // d->SetUpdateTime(5000);
42
43 // Disable online update
44 // d->SetUpdateTime(-1);
45
46 d->SetLogStream(&gLog, kTRUE); // Disables output to stdout
47 gLog.SetOutputFile("status.log", kTRUE); // Enable output to file
48 //gLog.EnableOutputDevice(MLog::eStdout); // Enable output to stdout again
49
50 //
51 // Create a empty Parameter List and an empty Task List
52 // The tasklist is identified in the eventloop by its name
53 //
54 MParList plist;
55
56 MTaskList tlist;
57 plist.AddToList(&tlist);
58
59 //
60 // The geometry container must be created by yourself to make sure
61 // that you don't choose a wrong geometry by mistake
62 //
63 MGeomCamMagic geomcam;
64 plist.AddToList(&geomcam);
65
66 /*
67 MSrcPosCam src;
68 src.SetXY(1./geomcam.GetConvMm2Deg(), 0);
69 plist.AddToList(&src);
70 */
71
72 //
73 // Now setup the tasks and tasklist:
74 // ---------------------------------
75 //
76 MReadMarsFile read("Events");
77 read.DisableAutoScheme();
78
79 // ------------- user change -----------------
80 read.AddFile(fname);
81
82 MMcPedestalCopy pcopy;
83 MMcPedestalNSBAdd pnsb;
84 MCerPhotCalc ncalc;
85
86 TArrayS blinds(2);
87 blinds[0] = 271;
88 blinds[1] = 291;
89
90 MBlindPixelCalc blind;
91 //blind.SetPixelIndices(blinds);
92 blind.SetUseInterpolation();
93
94 MSigmabarCalc sgcal;
95 MImgCleanStd clean;
96 MHillasCalc hcalc;
97 MHillasSrcCalc scalc; // !!Preliminary!! Will be removed later!
98 MCT1SupercutsCalc calc1;
99
100 MHCamEvent hist("PedestalRms");
101 hist.SetType(1);
102 plist.AddToList(&hist);
103
104 // -------------------------------------------
105 MFillH hfill0("Uncleaned [MHCamEvent]", "MCerPhotEvt");
106 MFillH hfill1("Pedestals [MHCamEvent]", "MPedestalCam");
107 MFillH hfill2("PedestalRms", "MPedestalCam");
108 MFillH hfill3("MHHillas", "MHillas");
109 MFillH hfill4("MHHillasExt");
110 MFillH hfill5("MHHillasExtSrc [MHHillasExt]", "MHillasSrc");
111 MFillH hfill6("MHHillasSrc","MHillasSrc");
112 MFillH hfill7("MHNewImagePar","MNewImagePar");
113 MFillH hfill8("MHStarMap", "MHillas");
114 MFillH hfill9("Cleaned [MHCamEvent]", "MCerPhotEvt");
115 MFillH hfill10("MHHadronness", "MHadronness");
116 MFillH hfill11("MHSigmaTheta");
117
118 tlist.AddToList(&read);
119 tlist.AddToList(&pcopy);
120 tlist.AddToList(&pnsb);
121 tlist.AddToList(&ncalc);
122 tlist.AddToList(&blind);
123 tlist.AddToList(&hfill0);
124 //tlist.AddToList(&sgcal);
125 tlist.AddToList(&clean);
126 tlist.AddToList(&hcalc);
127 tlist.AddToList(&scalc);
128 //tlist.AddToList(&calc1);
129 tlist.AddToList(&hfill1);
130 tlist.AddToList(&hfill2);
131 tlist.AddToList(&hfill3);
132 tlist.AddToList(&hfill4);
133 tlist.AddToList(&hfill5);
134 tlist.AddToList(&hfill6);
135 tlist.AddToList(&hfill7);
136 tlist.AddToList(&hfill8);
137 tlist.AddToList(&hfill9);
138 //tlist.AddToList(&hfill10);
139
140 MEvtLoop evtloop;
141 evtloop.SetParList(&plist);
142 evtloop.SetDisplay(d);
143
144 //
145 // Execute your analysis
146 //
147 if (!evtloop.Eventloop())
148 return;
149
150 tlist.PrintStatistics();
151
152 MHCamera &uncl = *((MHCamEvent*)plist.FindObject("Uncleaned"))->GetHistByName();
153 MHCamera &hped = *((MHCamEvent*)plist.FindObject("Pedestals"))->GetHistByName();
154 MHCamera &hrms = *((MHCamEvent*)plist.FindObject("PedestalRms"))->GetHistByName();
155
156 for (int i=0; i<577; i++)
157 {
158 if (uncl.IsUsed(i))
159 {
160 if (uncl[i+1]>uncl.GetMean()+3*uncl.GetRMS())
161 cout << "Mean Charge of Pixel-Index #" << i << ": " << uncl[i+1] << " > 3*rms" << endl;
162 if (uncl[i+1]==0)
163 cout << "Mean Charge of Pixel-Index #" << i << ": " << uncl[i+1] << " <= 0" << endl;
164 if (uncl[i+1]<uncl.GetMean()-3*uncl.GetRMS())
165 cout << "Mean Charge of Pixel-Index #" << i << ": " << uncl[i+1] << " < 3*rms" << endl;
166 }
167 if (hped.IsUsed(i))
168 {
169 if (hped[i+1]>hped.GetMean()+1.5*hped.GetRMS())
170 cout << "Mean Pedestal of Pixel-Index #" << i << ": " << hped[i+1] << " > 1.5*rms" << endl;
171 if (hped[i+1]==0)
172 cout << "Mean Pedestal of Pixel-Index #" << i << ": " << hped[i+1] << " <= 0" << endl;
173 if (hped[i+1]<hped.GetMean()-1.5*hped.GetRMS())
174 cout << "Mean Pedestal of Pixel-Index #" << i << ": " << hped[i+1] << " < 1.5*rms" << endl;
175 }
176 if (hrms.IsUsed(i))
177 {
178 if (hrms[i+1]>hrms.GetMean()+4*hrms.GetRMS())
179 cout << "Mean PedestalRMS of Pixel-Index #" << i << ": " << hrms[i+1] << " > 4*rms" << endl;
180 if (hrms[i+1]==0)
181 cout << "Mean PedestalRMS of Pixel-Index #" << i << ": " << hrms[i+1] << " <= 0" << endl;
182 if (hrms[i+1]<hrms.GetMean()-4*hrms.GetRMS())
183 cout << "Mean PedestalRMS of Pixel-Index #" << i << ": " << hrms[i+1] << " < 4*rms" << endl;
184 }
185 }
186
187 //
188 // Make sure the display hasn't been deleted by the user while the
189 // eventloop was running.
190 //
191 if ((d = evtloop.GetDisplay()))
192 {
193 // Save data in a postscriptfile (status.ps)
194 //d->SaveAsPS();
195 /*
196 * ----------- Write status to a root file ------------
197 *
198 TFile file("status.root", "RECREATE");
199 d->Write();
200 file.Close();
201 delete d;
202 */
203 }
204 /*
205 * ----------- Read status from a root file ------------
206 *
207 TFile file2("status.root", "READ");
208 MStatusDisplay *d2 = new MStatusDisplay;
209 d2->Read();
210 */
211}
Note: See TracBrowser for help on using the repository browser.