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, 07/2005 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2007
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | /////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MPointingDevCalc
|
---|
28 | //
|
---|
29 | // Calculates the pointing deviation from the starguider information.
|
---|
30 | //
|
---|
31 | // There are some quality parameters to steer which are the valid
|
---|
32 | // starguider data points:
|
---|
33 | //
|
---|
34 | // * MPointingDevCalc.NumMinStars: 8
|
---|
35 | // Minimum number of identified stars required to accep the data
|
---|
36 | //
|
---|
37 | // * MPointingDevCalc.NsbLevel: 3.0
|
---|
38 | // Minimum deviation (in rms) from the the mean allowed for the
|
---|
39 | // measured NSB (noise in the ccd camera)
|
---|
40 | //
|
---|
41 | // * MPointingDevCalc.NsbMin: 30
|
---|
42 | // - minimum NSB to be used in mean/rms calculation
|
---|
43 | //
|
---|
44 | // * MPointingDevCalc.NsbMax: 60
|
---|
45 | // - maximum NSB to be used in mean/rms calculation
|
---|
46 | //
|
---|
47 | // * MPointingDevCalc.MaxAbsDev: 15
|
---|
48 | // - Maximum absolute deviation which is consideres as valid (arcmin)
|
---|
49 | //
|
---|
50 | // Starguider data which doens't fullfill this requirements is ignored.
|
---|
51 | // If the measures NSB==0 (file too old, starguider didn't write down
|
---|
52 | // these values) the checks based on NSB and NumMinStar are skipped.
|
---|
53 | //
|
---|
54 | // The calculation of NSB mean and rms is reset for each file (ReInit)
|
---|
55 | //
|
---|
56 | // If your starguider data doesn't fullfill this requirement the latest
|
---|
57 | // value which could be correctly calculated is used instead. If the time
|
---|
58 | // for which no valid value can be calculated exceeds one minute
|
---|
59 | // the return value is reset to 0/0. The maximum time allowed without
|
---|
60 | // a valid value can be setup using:
|
---|
61 | //
|
---|
62 | // * MPointingDevCalc.MaxAge: 1
|
---|
63 | // Maximum time before the starguider is reset to 0/0 in minutes
|
---|
64 | //
|
---|
65 | // Note, that the starguider itself is not well calibrated. Therefore
|
---|
66 | // it is necessary to do a starguider calibration in our software.
|
---|
67 | //
|
---|
68 | // There are two options:
|
---|
69 | //
|
---|
70 | // * Simple starguider calibration using offsets in the camera plane
|
---|
71 | //
|
---|
72 | // The starguider is calibrated by taking its values (dZd/dAz)
|
---|
73 | // adding them to the source position, calculating the source position
|
---|
74 | // in the camera plane and adding the offsets. To switch off the
|
---|
75 | // full starguider calibration do:
|
---|
76 | //
|
---|
77 | // * MPointingDevCalc.PointingModels:
|
---|
78 | //
|
---|
79 | // To set the offsets (in units of degree) use
|
---|
80 | //
|
---|
81 | // * MPointingDevCalc.Dx: -0.001
|
---|
82 | // * MPointingDevCalc.Dy: -0.004
|
---|
83 | //
|
---|
84 | // * A starguider calibration using a pointing model calculated
|
---|
85 | // from calibration data, so called TPoints
|
---|
86 | //
|
---|
87 | // Because the pointing model can change from time to time
|
---|
88 | // you can give the run-number from which on a new pointing
|
---|
89 | // model is valid. The run itself is included, e.g.:
|
---|
90 | //
|
---|
91 | // * MPointingDevCalc.PointingModels: 85240 89180
|
---|
92 | // * MPointingDevCalc.FilePrefix: resources/starguider
|
---|
93 | //
|
---|
94 | // mean that for all runs<85240 the simple offset correction is used.
|
---|
95 | // For runs >=85240 and <89180 the file resources/starguider0085240.txt
|
---|
96 | // and for runs >=89180 the file resources/starguider0089180.txt is
|
---|
97 | // used. To setup a default file for all runs before 85240 setup
|
---|
98 | // a low number (eg. 0 or 1)
|
---|
99 | //
|
---|
100 | // In the case a pointing model is used additional offsets in
|
---|
101 | // the x/y-camera plane (in units of deg) can be set using the DX
|
---|
102 | // and DY parameters of the pointing model. The fDx and fDy data
|
---|
103 | // members of this class are ignored. To overwrite the starguider
|
---|
104 | // calibrated offset in either Az or Zd with a constant, you
|
---|
105 | // can use the PX/PY directive in the pointing model. (To enable
|
---|
106 | // the overwrite set the third column, the error, to a value
|
---|
107 | // greater than zero)
|
---|
108 | //
|
---|
109 | //
|
---|
110 | // At the PostProcessing step a table with statistics is print if the
|
---|
111 | // debug level is greater or equal 3 (in most applications it is switched
|
---|
112 | // on by -v3)
|
---|
113 | //
|
---|
114 | //
|
---|
115 | // Pointing Models:
|
---|
116 | // ----------------
|
---|
117 | //
|
---|
118 | // What we know so far about (maybe) important changes in cosy:
|
---|
119 | //
|
---|
120 | // 18.03.2006: The camera holding has been repaired and the camera got
|
---|
121 | // shifted a little bit.
|
---|
122 | //
|
---|
123 | // 16.04.2006: Around this date a roque lamp focussing hass been done
|
---|
124 | //
|
---|
125 | // 25.04.2006: A missalignment intrduced with the roque adjust has been
|
---|
126 | // corrected
|
---|
127 | //
|
---|
128 | // The starguider pointing model for the time before 18.3.2006 and after
|
---|
129 | // April 2006 (in fact there are no TPoints until 07/2006 to check it)
|
---|
130 | // and for the period 07/2006 to (at least) 06/2007 are very similar.
|
---|
131 | //
|
---|
132 | // The pointing model for the time between 18.3.2006 and 04/2006 is
|
---|
133 | // clearly different, mainly giving different Azimuth values between
|
---|
134 | // Zenith and roughly ~25deg, and a slight offset on both axes.
|
---|
135 | //
|
---|
136 | // 10.5.2006: pos1 -= pos0 commented (What was the mentioned fix?)
|
---|
137 | // 29.6.2006: repaired
|
---|
138 | //
|
---|
139 | // 23.3.2006: new starguider algorithm
|
---|
140 | //
|
---|
141 | // 17.3.2005: Fixed units of "nompos" in MDriveCom
|
---|
142 | //
|
---|
143 | //
|
---|
144 | // New pointing models have been installed (if the pointing model
|
---|
145 | // is different, than the previous one it might mean, that also
|
---|
146 | // the starguider calibration is different.) The date only means
|
---|
147 | // day-time (noon) at which the model has been changed.
|
---|
148 | //
|
---|
149 | // 29. Apr. 2004 ~25800
|
---|
150 | // 5. Aug. 2004 ~32000
|
---|
151 | // 19. Aug. 2004 ~33530
|
---|
152 | // 7. Jun. 2005 ~57650
|
---|
153 | // 8. Jun. 2005
|
---|
154 | // 9. Jun. 2005 ~57860
|
---|
155 | // 12. Sep. 2005 ~68338
|
---|
156 | // 24. Nov. 2005 ~75562
|
---|
157 | // 17. Oct. 2006 ~103130
|
---|
158 | // 17. Jun. 2007 ~248193
|
---|
159 | // 18. Oct. 2007 ~291039(?)
|
---|
160 | // 14. Jan. 2008
|
---|
161 | //
|
---|
162 | // From 2.2.2006 beginnig of the night (21:05h, run >=81855) to 24.2.2006
|
---|
163 | // beginning of the the night (20:34h, run<83722) the LEDs did not work.
|
---|
164 | // In the time after this incident the shift crew often forgot to switch on
|
---|
165 | // the LEDs at the beginning of the night!
|
---|
166 | //
|
---|
167 | // [2006-03-07 00:10:58] In the daytime, we raised the position of the
|
---|
168 | // 9 o'clock LED by one screw hole to make it visible when the TPoint
|
---|
169 | // Lid is closed. (< run 84980)
|
---|
170 | //
|
---|
171 | // Mirror refocussing around 23.Apr.2006, from the Runbook.
|
---|
172 | //
|
---|
173 | // 25./26.4.2006: Run 89180
|
---|
174 | //
|
---|
175 | // (Note: The year here is not a typo!)
|
---|
176 | // [2007-04-25 23:50:39]
|
---|
177 | // Markus is performing AMC focussing.
|
---|
178 | //
|
---|
179 | // Mirror refocussing around 4.Aug.2007, from the Runbook:
|
---|
180 | //
|
---|
181 | // [2007-08-04 04:46:47]
|
---|
182 | // We finished with the focussing with Polaris. The images need to be
|
---|
183 | // analysed and new LUTs generated.
|
---|
184 | //
|
---|
185 | // [2007-08-04 23:47:30]
|
---|
186 | // Actually we see that the mispointing is always large; probably since
|
---|
187 | // the LUT tables have not yet been adjusted to the new focussing.
|
---|
188 | //
|
---|
189 | // [2007-08-03 23:07:58]
|
---|
190 | // Data taking stopped. Mirror focussing.
|
---|
191 | //
|
---|
192 | // [2007-08-05 00:09:16]
|
---|
193 | // We take some pictures on stars nearby Cyg X3 with the sbig camera;
|
---|
194 | // actually the spot doesn't look very nice... The pictures have been
|
---|
195 | // saved with name Deneb- and Sadr- Polaris seems a bit better. Should we
|
---|
196 | // have new LUT tables after the focussing?
|
---|
197 | //
|
---|
198 | // [2007-08-10 20:18:48]
|
---|
199 | // Tonight we take first images of Polaris with a new LUT file generated
|
---|
200 | // based on the recent focussing. The image will be analysed tomorrow and
|
---|
201 | // than new LUTs will be generated. For tonight the focussing is still not
|
---|
202 | // changed.
|
---|
203 | //
|
---|
204 | // [2007-08-14 20:57:59]
|
---|
205 | // The weather is fine. There is a group of hobby astronomers at the
|
---|
206 | // helicopter parking. Before data taking, we tried to check the new LUTs.
|
---|
207 | // However, because of technical problems with the new LUTs we had to
|
---|
208 | // postpone the measurements. We lost some 10 min of data taking because
|
---|
209 | // of this.
|
---|
210 | //
|
---|
211 | // [2007-08-14 22:29:37]
|
---|
212 | // Before continuing the observation we perform a focussing test with the
|
---|
213 | // new LUTs from recent Polaris focussing. Note: Data on Her X-1 was taken
|
---|
214 | // with old focussing. We performed PSF measurements on Kornephorus (Zd
|
---|
215 | // 31.77, Az 264,67) first with old LUTs and then with new LUTs. We took
|
---|
216 | // T-points with both focussing. The first T-Point corresponds to the
|
---|
217 | // previous focussing and the second with the improved. Please check both
|
---|
218 | // T-points for eventual misspointing. We found big improvement of the PSF
|
---|
219 | // with the new LUTs and will therefore continue from now on with the new
|
---|
220 | // focussing. Having a first look at the SBIG pictures we see a slightly
|
---|
221 | // misspointing of ~0.1 deg with the new LUTs.
|
---|
222 | //
|
---|
223 | // [2007-08-14 22:46:10]
|
---|
224 | // Comparing the trigger rate with yesterday night we do not see an
|
---|
225 | // improvement with the new focussing.
|
---|
226 | //
|
---|
227 | // [2007-10-27 email]
|
---|
228 | // [...]
|
---|
229 | // When removing the cover of the motor all 4 nuts which fix the gear of
|
---|
230 | // the motor to the structure fell out. The motor was completely loose.
|
---|
231 | // [...]
|
---|
232 | // We checked also the second azimuth motor and .. the same situation.
|
---|
233 | // [...]
|
---|
234 | // Peter Sawallisch opened and fixed all 3 motors of MAGIC-I. We checked
|
---|
235 | // all critical screws that came to our minds and fixed them as much as
|
---|
236 | // possible with loctite and counter nuts. No damage whatsoever has been
|
---|
237 | // found.
|
---|
238 | //
|
---|
239 | //
|
---|
240 | // ToDo:
|
---|
241 | // -----
|
---|
242 | //
|
---|
243 | // * Is 0/0 the best assumption if the starguider partly fails?
|
---|
244 | //
|
---|
245 | //
|
---|
246 | // Input Container:
|
---|
247 | // MRawRunHeader
|
---|
248 | // MReportStarguider
|
---|
249 | //
|
---|
250 | // Output Container:
|
---|
251 | // MPointingDev
|
---|
252 | //
|
---|
253 | /////////////////////////////////////////////////////////////////////////////
|
---|
254 | #include "MPointingDevCalc.h"
|
---|
255 |
|
---|
256 | #include "MLog.h"
|
---|
257 | #include "MLogManip.h"
|
---|
258 |
|
---|
259 | #include "MParList.h"
|
---|
260 |
|
---|
261 | #include "MAstro.h"
|
---|
262 | #include "MPointing.h"
|
---|
263 | #include "MPointingDev.h"
|
---|
264 | #include "MRawRunHeader.h"
|
---|
265 | #include "MReportStarguider.h"
|
---|
266 |
|
---|
267 | ClassImp(MPointingDevCalc);
|
---|
268 |
|
---|
269 | using namespace std;
|
---|
270 |
|
---|
271 | const TString MPointingDevCalc::fgFilePrefix="resources/starguider";
|
---|
272 |
|
---|
273 | // --------------------------------------------------------------------------
|
---|
274 | //
|
---|
275 | // Destructor. Call Clear() and delete fPointingModels if any.
|
---|
276 | //
|
---|
277 | MPointingDevCalc::~MPointingDevCalc()
|
---|
278 | {
|
---|
279 | Clear();
|
---|
280 | }
|
---|
281 |
|
---|
282 | // --------------------------------------------------------------------------
|
---|
283 | //
|
---|
284 | // Delete fPointing and set pointing to NULL
|
---|
285 | //
|
---|
286 | void MPointingDevCalc::Clear(Option_t *o)
|
---|
287 | {
|
---|
288 | if (fPointing)
|
---|
289 | delete fPointing;
|
---|
290 |
|
---|
291 | fPointing = NULL;
|
---|
292 | }
|
---|
293 |
|
---|
294 | // --------------------------------------------------------------------------
|
---|
295 | //
|
---|
296 | // Sort the entries in fPoinitngModels
|
---|
297 | //
|
---|
298 | void MPointingDevCalc::SortPointingModels()
|
---|
299 | {
|
---|
300 | const int n = fPointingModels.GetSize();
|
---|
301 |
|
---|
302 | TArrayI idx(n);
|
---|
303 |
|
---|
304 | TMath::Sort(n, fPointingModels.GetArray(), idx.GetArray(), kFALSE);
|
---|
305 |
|
---|
306 | const TArrayI arr(fPointingModels);
|
---|
307 |
|
---|
308 | for (int i=0; i<n; i++)
|
---|
309 | fPointingModels[i] = arr[idx[i]];
|
---|
310 | }
|
---|
311 |
|
---|
312 | // --------------------------------------------------------------------------
|
---|
313 | //
|
---|
314 | // Set new pointing models
|
---|
315 | //
|
---|
316 | void MPointingDevCalc::SetPointingModels(const TString &models)
|
---|
317 | {
|
---|
318 | fPointingModels.Set(0);
|
---|
319 |
|
---|
320 | if (models.IsNull())
|
---|
321 | return;
|
---|
322 |
|
---|
323 | TObjArray *arr = models.Tokenize(" ");
|
---|
324 |
|
---|
325 | const int n = arr->GetEntries();
|
---|
326 | fPointingModels.Set(n);
|
---|
327 |
|
---|
328 | for (int i=0; i<n; i++)
|
---|
329 | fPointingModels[i] = atoi((*arr)[i]->GetName());
|
---|
330 |
|
---|
331 | delete arr;
|
---|
332 |
|
---|
333 | SortPointingModels();
|
---|
334 | }
|
---|
335 |
|
---|
336 | // --------------------------------------------------------------------------
|
---|
337 | //
|
---|
338 | // Return a string with the pointing models, seperated by a space.
|
---|
339 | //
|
---|
340 | TString MPointingDevCalc::GetPointingModels() const
|
---|
341 | {
|
---|
342 | TString rc;
|
---|
343 | for (int i=0; i<fPointingModels.GetSize(); i++)
|
---|
344 | rc += Form ("%d ", fPointingModels[i]);
|
---|
345 |
|
---|
346 | return rc;
|
---|
347 | }
|
---|
348 |
|
---|
349 | // --------------------------------------------------------------------------
|
---|
350 | //
|
---|
351 | // Add a number to the pointing models
|
---|
352 | //
|
---|
353 | void MPointingDevCalc::AddPointingModel(UInt_t runnum)
|
---|
354 | {
|
---|
355 | const int n = fPointingModels.GetSize();
|
---|
356 | for (int i=0; i<n; i++)
|
---|
357 | if ((UInt_t)fPointingModels[i]==runnum)
|
---|
358 | {
|
---|
359 | *fLog << warn << "WARNING - Pointing model " << runnum << " already in list... ignored." << endl;
|
---|
360 | return;
|
---|
361 | }
|
---|
362 |
|
---|
363 | fPointingModels.Set(n+1);
|
---|
364 | fPointingModels[n] = runnum;
|
---|
365 |
|
---|
366 | SortPointingModels();
|
---|
367 | }
|
---|
368 |
|
---|
369 | // --------------------------------------------------------------------------
|
---|
370 | //
|
---|
371 | // Find the highest number in the array which is lower or equal num.
|
---|
372 | //
|
---|
373 | UInt_t MPointingDevCalc::FindPointingModel(UInt_t num)
|
---|
374 | {
|
---|
375 | const int n = fPointingModels.GetSize();
|
---|
376 | if (n==0)
|
---|
377 | return (UInt_t)-1;
|
---|
378 |
|
---|
379 | // Loop over all pointing models
|
---|
380 | for (int i=0; i<n; i++)
|
---|
381 | {
|
---|
382 | // The number stored in the array did not yet overtake the runnumber
|
---|
383 | if ((UInt_t)fPointingModels[i]<num)
|
---|
384 | continue;
|
---|
385 |
|
---|
386 | // The first pointing model is later than this run: use a default
|
---|
387 | if (i==0)
|
---|
388 | return (UInt_t)-1;
|
---|
389 |
|
---|
390 | // The last entry in the array is the right one.
|
---|
391 | return fPointingModels[i-1];
|
---|
392 | }
|
---|
393 |
|
---|
394 | // Runnumber is after last entry of pointing models. Use the last one.
|
---|
395 | return fPointingModels[n-1];
|
---|
396 | }
|
---|
397 |
|
---|
398 | // --------------------------------------------------------------------------
|
---|
399 | //
|
---|
400 | // Clear the pointing model. If run-number >= 87751 read the new
|
---|
401 | // pointing model with fFilePrefix
|
---|
402 | //
|
---|
403 | Bool_t MPointingDevCalc::ReadPointingModel(const MRawRunHeader &run)
|
---|
404 | {
|
---|
405 | const UInt_t num = FindPointingModel(run.GetRunNumber());
|
---|
406 |
|
---|
407 | // No poinitng models are defined. Use simple dx/dy-calibration
|
---|
408 | if (num==(UInt_t)-1)
|
---|
409 | {
|
---|
410 | Clear();
|
---|
411 | return kTRUE;
|
---|
412 | }
|
---|
413 |
|
---|
414 | // compile the name for the starguider files
|
---|
415 | // The file with the number 00000000 is the default file
|
---|
416 | TString fname = Form("%s%08d.txt", fFilePrefix.Data(), num);
|
---|
417 |
|
---|
418 | if (!fPointing)
|
---|
419 | fPointing = new MPointing;
|
---|
420 |
|
---|
421 | if (fname==fPointing->GetName())
|
---|
422 | {
|
---|
423 | *fLog << inf << fname << " already loaded." << endl;
|
---|
424 | return kTRUE;
|
---|
425 | }
|
---|
426 |
|
---|
427 | return fPointing->Load(fname);
|
---|
428 | }
|
---|
429 |
|
---|
430 | // --------------------------------------------------------------------------
|
---|
431 | //
|
---|
432 | // Check the file/run type from the run-header and if it is a data file
|
---|
433 | // load starguider calibration.
|
---|
434 | //
|
---|
435 | Bool_t MPointingDevCalc::ReInit(MParList *plist)
|
---|
436 | {
|
---|
437 | MRawRunHeader *run = (MRawRunHeader*)plist->FindObject("MRawRunHeader");
|
---|
438 | if (!run)
|
---|
439 | {
|
---|
440 | *fLog << err << "MRawRunHeader not found... aborting." << endl;
|
---|
441 | return kFALSE;
|
---|
442 | }
|
---|
443 |
|
---|
444 | fNsbSum = 0;
|
---|
445 | fNsbSq = 0;
|
---|
446 | fNsbCount = 0;
|
---|
447 |
|
---|
448 | fRunType = run->GetRunType();
|
---|
449 |
|
---|
450 | switch (fRunType)
|
---|
451 | {
|
---|
452 | case MRawRunHeader::kRTData:
|
---|
453 | if (!fReport)
|
---|
454 | *fLog << warn << "MReportStarguider not found... skipped." << endl;
|
---|
455 | return ReadPointingModel(*run);
|
---|
456 |
|
---|
457 | case MRawRunHeader::kRTMonteCarlo:
|
---|
458 | return kTRUE;
|
---|
459 |
|
---|
460 | case MRawRunHeader::kRTPedestal:
|
---|
461 | *fLog << err << "Cannot work in a pedestal Run!... aborting." << endl;
|
---|
462 | return kFALSE;
|
---|
463 |
|
---|
464 | case MRawRunHeader::kRTCalibration:
|
---|
465 | *fLog << err << "Cannot work in a calibration Run!... aborting." << endl;
|
---|
466 | return kFALSE;
|
---|
467 |
|
---|
468 | default:
|
---|
469 | *fLog << err << "Run Type " << fRunType << " unknown!... aborting." << endl;
|
---|
470 | return kFALSE;
|
---|
471 | }
|
---|
472 |
|
---|
473 | return kTRUE;
|
---|
474 | }
|
---|
475 |
|
---|
476 | // --------------------------------------------------------------------------
|
---|
477 | //
|
---|
478 | // Search for 'MPointingPos'. Create if not found.
|
---|
479 | //
|
---|
480 | Int_t MPointingDevCalc::PreProcess(MParList *plist)
|
---|
481 | {
|
---|
482 | fDeviation = (MPointingDev*)plist->FindCreateObj("MPointingDev");
|
---|
483 | fReport = (MReportStarguider*)plist->FindObject("MReportStarguider");
|
---|
484 |
|
---|
485 | // We use kRTNone here as a placeholder for data runs.
|
---|
486 | fRunType = MRawRunHeader::kRTNone;
|
---|
487 | fLastMjd = -1;
|
---|
488 |
|
---|
489 | fSkip.Reset();
|
---|
490 |
|
---|
491 | return fDeviation ? kTRUE : kFALSE;
|
---|
492 | }
|
---|
493 |
|
---|
494 | // --------------------------------------------------------------------------
|
---|
495 | //
|
---|
496 | // Increase fSkip[i] by one. If the data in fDeviation is outdated (older
|
---|
497 | // than fMaxAge) and the current report should be skipped reset DevZdAz and
|
---|
498 | // DevXY and fSkip[6] is increased by one.
|
---|
499 | //
|
---|
500 | void MPointingDevCalc::Skip(Int_t i)
|
---|
501 | {
|
---|
502 | fSkip[i]++;
|
---|
503 |
|
---|
504 | const Double_t diff = (fReport->GetMjd()-fLastMjd)*1440; // [min] 1440=24*60
|
---|
505 | if (diff<fMaxAge && fLastMjd>0)
|
---|
506 | return;
|
---|
507 |
|
---|
508 | fDeviation->SetDevZdAz(0, 0);
|
---|
509 | fDeviation->SetDevXY(0, 0);
|
---|
510 | fSkip[6]++;
|
---|
511 | }
|
---|
512 |
|
---|
513 | // --------------------------------------------------------------------------
|
---|
514 | //
|
---|
515 | // Do a full starguider calibration using a pointing model for the starguider.
|
---|
516 | //
|
---|
517 | void MPointingDevCalc::DoCalibration(Double_t devzd, Double_t devaz) const
|
---|
518 | {
|
---|
519 | if (!fPointing)
|
---|
520 | {
|
---|
521 | // Do a simple starguider calibration using a simple offset in x and y
|
---|
522 | fDeviation->SetDevZdAz(devzd, devaz);
|
---|
523 |
|
---|
524 | // Linear starguider calibration taken from April/May data
|
---|
525 | // For calibration add MDriveReport::GetErrorZd/Az !
|
---|
526 | fDeviation->SetDevXY(fDx, fDy); // 1arcmin ~ 5mm
|
---|
527 |
|
---|
528 | return;
|
---|
529 | }
|
---|
530 |
|
---|
531 | // Get the nominal position the star is at the sky
|
---|
532 | // Unit: deg
|
---|
533 | ZdAz nom(fReport->GetNominalZd(), fReport->GetNominalAz());
|
---|
534 | nom *= TMath::DegToRad();
|
---|
535 |
|
---|
536 | // Get the mispointing measured by the telescope. It is
|
---|
537 | // calculate as follows:
|
---|
538 | //
|
---|
539 | // The mispointing measured by the starguider:
|
---|
540 | // ZdAz mis(devzd, devaz);
|
---|
541 | // mis *= TMath::DegToRad();
|
---|
542 |
|
---|
543 | // The pointing model is the conversion from the real pointing
|
---|
544 | // position of the telescope into the pointing position measured
|
---|
545 | // by the starguider.
|
---|
546 | //
|
---|
547 | // To keep as close to the fitted model we use the forward correction.
|
---|
548 |
|
---|
549 | // Position at which the starguider camera is pointing in real:
|
---|
550 | // pointing position = nominal position - dev
|
---|
551 | //
|
---|
552 | // The position measured as the starguider's pointing position
|
---|
553 | ZdAz pos(nom); // cpos = sao - dev
|
---|
554 | pos -= ZdAz(devzd, devaz)*TMath::DegToRad();
|
---|
555 |
|
---|
556 | // Now we convert the starguider's pointing position into the
|
---|
557 | // telescope pointing position (the pointing model converts
|
---|
558 | // the telescope pointing position into the starguider pointing
|
---|
559 | // position)
|
---|
560 | ZdAz point = fPointing->CorrectBack(pos); //FWD!!!
|
---|
561 |
|
---|
562 | // MSrcPosCalc uses the following condition to calculate the
|
---|
563 | // source position in the camera:
|
---|
564 | // real pointing pos = nominal pointing pos - dev
|
---|
565 | // --> dev = nominal - real
|
---|
566 | // Therefor we calculate dev as follows:
|
---|
567 | ZdAz dev(nom);
|
---|
568 | dev -= point;
|
---|
569 | dev *= TMath::RadToDeg();
|
---|
570 |
|
---|
571 | /*
|
---|
572 | // We chose the other way. It is less accurate because is is the
|
---|
573 | // other was than the poinitng model was fittet, but it is more
|
---|
574 | // accurate because the nominal (i.e. real) pointing position
|
---|
575 | // is less accurately known than the position returned by the
|
---|
576 | // starguider.
|
---|
577 | //
|
---|
578 | // Calculate the deviation which would be measured by the starguider
|
---|
579 | // if applied to a perfectly pointing telescope.
|
---|
580 | ZdAz dev = fPointing->Correct(nom);
|
---|
581 | dev -= nom;
|
---|
582 |
|
---|
583 | // Now add these offsets and the starguider measured offsets to
|
---|
584 | // the real pointing deviation of the telescope (note, that
|
---|
585 | // signs here are just conventions)
|
---|
586 | dev += ZdAz(devzd, devaz)*TMath::DegToRad(); // --> nom-mis
|
---|
587 | dev *= TMath::RadToDeg();
|
---|
588 | */
|
---|
589 |
|
---|
590 | // Check if the starguider pointing model requests overwriting
|
---|
591 | // of the values with constants (e.g. 0)
|
---|
592 | devaz = fPointing->IsPxValid() ? fPointing->GetPx() : dev.Az();
|
---|
593 | devzd = fPointing->IsPyValid() ? fPointing->GetPy() : dev.Zd();
|
---|
594 |
|
---|
595 | fDeviation->SetDevZdAz(devzd, devaz);
|
---|
596 | fDeviation->SetDevXY(fPointing->GetDxy());
|
---|
597 | }
|
---|
598 |
|
---|
599 | Int_t MPointingDevCalc::ProcessStarguiderReport()
|
---|
600 | {
|
---|
601 | Double_t devzd = fReport->GetDevZd(); // [arcmin]
|
---|
602 | Double_t devaz = fReport->GetDevAz(); // [arcmin]
|
---|
603 | if (devzd==0 && devaz==0)
|
---|
604 | {
|
---|
605 | Skip(1);
|
---|
606 | return kTRUE;
|
---|
607 | }
|
---|
608 |
|
---|
609 | if (!fReport->IsMonitoring())
|
---|
610 | {
|
---|
611 | Skip(2);
|
---|
612 | return kTRUE;
|
---|
613 | }
|
---|
614 |
|
---|
615 | devzd /= 60; // Convert from arcmin to deg
|
---|
616 | devaz /= 60; // Convert from arcmin to deg
|
---|
617 |
|
---|
618 | const Double_t nsb = fReport->GetSkyBrightness();
|
---|
619 | if (nsb>0)
|
---|
620 | {
|
---|
621 | if (nsb>fNsbMin && nsb<fNsbMax)
|
---|
622 | {
|
---|
623 | fNsbSum += nsb;
|
---|
624 | fNsbSq += nsb*nsb;
|
---|
625 | fNsbCount++;
|
---|
626 | }
|
---|
627 |
|
---|
628 | if (fNsbCount>0)
|
---|
629 | {
|
---|
630 | const Double_t sum = fNsbSum/fNsbCount;
|
---|
631 | const Double_t sq = fNsbSq /fNsbCount;
|
---|
632 |
|
---|
633 | const Double_t rms = fNsbLevel*TMath::Sqrt(sq - sum*sum);
|
---|
634 |
|
---|
635 | if (nsb<sum-rms || nsb>sum+rms)
|
---|
636 | {
|
---|
637 | Skip(3);
|
---|
638 | return kTRUE;
|
---|
639 | }
|
---|
640 | }
|
---|
641 |
|
---|
642 | if (fReport->GetNumIdentifiedStars()<fNumMinStars)
|
---|
643 | {
|
---|
644 | Skip(4);
|
---|
645 | return kTRUE;
|
---|
646 | }
|
---|
647 | }
|
---|
648 |
|
---|
649 | // >= 87751 (31.3.06 12:00)
|
---|
650 |
|
---|
651 | // Calculate absolute deviation
|
---|
652 | const Double_t dev = MAstro::GetDevAbs(fReport->GetNominalZd(), devzd, devaz);
|
---|
653 |
|
---|
654 | // Sanity check... larger deviation are strange and ignored
|
---|
655 | if (dev*60>fMaxAbsDev)
|
---|
656 | {
|
---|
657 | Skip(5);
|
---|
658 | return kTRUE;
|
---|
659 | }
|
---|
660 |
|
---|
661 | DoCalibration(devzd, devaz);
|
---|
662 |
|
---|
663 | fSkip[0]++;
|
---|
664 | fLastMjd = fReport->GetMjd();
|
---|
665 |
|
---|
666 | return kTRUE;
|
---|
667 | }
|
---|
668 |
|
---|
669 | // --------------------------------------------------------------------------
|
---|
670 | //
|
---|
671 | // See class description.
|
---|
672 | //
|
---|
673 | Int_t MPointingDevCalc::Process()
|
---|
674 | {
|
---|
675 | switch (fRunType)
|
---|
676 | {
|
---|
677 | case MRawRunHeader::kRTNone:
|
---|
678 | case MRawRunHeader::kRTData:
|
---|
679 | return fReport ? ProcessStarguiderReport() : kTRUE;
|
---|
680 |
|
---|
681 | case MRawRunHeader::kRTMonteCarlo:
|
---|
682 | fSkip[0]++;
|
---|
683 | fDeviation->SetDevZdAz(0, 0);
|
---|
684 | fDeviation->SetDevXY(0, 0);
|
---|
685 | return kTRUE;
|
---|
686 | }
|
---|
687 | return kTRUE;
|
---|
688 | }
|
---|
689 |
|
---|
690 | // --------------------------------------------------------------------------
|
---|
691 | //
|
---|
692 | // Print execution statistics
|
---|
693 | //
|
---|
694 | Int_t MPointingDevCalc::PostProcess()
|
---|
695 | {
|
---|
696 | if (GetNumExecutions()==0)
|
---|
697 | return kTRUE;
|
---|
698 |
|
---|
699 | *fLog << inf << endl;
|
---|
700 | *fLog << GetDescriptor() << " execution statistics:" << endl;
|
---|
701 | PrintSkipped(fSkip[1], "Starguider deviation not set, is exactly 0/0");
|
---|
702 | PrintSkipped(fSkip[2], "Starguider was not monitoring (eg. LEDs off)");
|
---|
703 | PrintSkipped(fSkip[3], Form("NSB out of %.1f sigma range", fNsbLevel));
|
---|
704 | PrintSkipped(fSkip[4], Form("Number of identified stars < %d", fNumMinStars));
|
---|
705 | PrintSkipped(fSkip[5], Form("Absolute deviation > %.1farcmin", fMaxAbsDev));
|
---|
706 | PrintSkipped(fSkip[6], Form("Events set to 0 because older than %.1fmin", fMaxAge));
|
---|
707 | *fLog << " " << (int)fSkip[0] << " (" << Form("%5.1f", 100.*fSkip[0]/GetNumExecutions()) << "%) Evts survived calculation!" << endl;
|
---|
708 | *fLog << endl;
|
---|
709 |
|
---|
710 | return kTRUE;
|
---|
711 | }
|
---|
712 |
|
---|
713 | // --------------------------------------------------------------------------
|
---|
714 | //
|
---|
715 | // MPointingDevCalc.NumMinStars: 8
|
---|
716 | // MPointingDevCalc.NsbLevel: 3.0
|
---|
717 | // MPointingDevCalc.NsbMin: 30
|
---|
718 | // MPointingDevCalc.NsbMax: 60
|
---|
719 | // MPointingDevCalc.MaxAbsDev: 15
|
---|
720 | // MPointingDevCalc.MaxAge: 1.0
|
---|
721 | // MPointingDevCalc.Dx: -0.001
|
---|
722 | // MPointingDevCalc.Dy: -0.004
|
---|
723 | //
|
---|
724 | // For a detailed description see the class reference.
|
---|
725 | //
|
---|
726 | Int_t MPointingDevCalc::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
|
---|
727 | {
|
---|
728 | Bool_t rc = kFALSE;
|
---|
729 | if (IsEnvDefined(env, prefix, "NumMinStars", print))
|
---|
730 | {
|
---|
731 | SetNumMinStars(GetEnvValue(env, prefix, "NumMinStars", (Int_t)fNumMinStars));
|
---|
732 | rc = kTRUE;
|
---|
733 | }
|
---|
734 | if (IsEnvDefined(env, prefix, "NsbLevel", print))
|
---|
735 | {
|
---|
736 | SetNsbLevel(GetEnvValue(env, prefix, "NsbLevel", fNsbLevel));
|
---|
737 | rc = kTRUE;
|
---|
738 | }
|
---|
739 | if (IsEnvDefined(env, prefix, "NsbMin", print))
|
---|
740 | {
|
---|
741 | SetNsbMin(GetEnvValue(env, prefix, "NsbMin", fNsbMin));
|
---|
742 | rc = kTRUE;
|
---|
743 | }
|
---|
744 | if (IsEnvDefined(env, prefix, "NsbMax", print))
|
---|
745 | {
|
---|
746 | SetNsbMax(GetEnvValue(env, prefix, "NsbMax", fNsbMax));
|
---|
747 | rc = kTRUE;
|
---|
748 | }
|
---|
749 | if (IsEnvDefined(env, prefix, "MaxAbsDev", print))
|
---|
750 | {
|
---|
751 | SetMaxAbsDev(GetEnvValue(env, prefix, "MaxAbsDev", fMaxAbsDev));
|
---|
752 | rc = kTRUE;
|
---|
753 | }
|
---|
754 | if (IsEnvDefined(env, prefix, "Dx", print))
|
---|
755 | {
|
---|
756 | fDx = GetEnvValue(env, prefix, "Dx", fDx);
|
---|
757 | rc = kTRUE;
|
---|
758 | }
|
---|
759 | if (IsEnvDefined(env, prefix, "Dy", print))
|
---|
760 | {
|
---|
761 | fDy = GetEnvValue(env, prefix, "Dy", fDy);
|
---|
762 | rc = kTRUE;
|
---|
763 | }
|
---|
764 | if (IsEnvDefined(env, prefix, "MaxAge", print))
|
---|
765 | {
|
---|
766 | fMaxAge = GetEnvValue(env, prefix, "MaxAge", fMaxAge);
|
---|
767 | rc = kTRUE;
|
---|
768 | }
|
---|
769 | if (IsEnvDefined(env, prefix, "FilePrefix", print))
|
---|
770 | {
|
---|
771 | fFilePrefix = GetEnvValue(env, prefix, "FilePrefix", fFilePrefix);
|
---|
772 | rc = kTRUE;
|
---|
773 | }
|
---|
774 | if (IsEnvDefined(env, prefix, "PointingModels", print))
|
---|
775 | {
|
---|
776 | SetPointingModels(GetEnvValue(env, prefix, "PointingModels", GetPointingModels()));
|
---|
777 | rc = kTRUE;
|
---|
778 | }
|
---|
779 |
|
---|
780 | return rc;
|
---|
781 | }
|
---|