source: trunk/MagicSoft/Mars/Changelog@ 3988

Last change on this file since 3988 was 3988, checked in by gaug, 21 years ago
*** empty log message ***
File size: 154.6 KB
Line 
1Please do not write behind the end of line tag so that it is possible
2to send a Changelog file to a line printer directly. Thanks.
3
4For your entries please follow EXACTLY this style:
5
6_yyyy/mm/dd:_[Your Name]
7_
8___*_filename:
9_____-_description
10_
11___*_filename2, filename3:
12_____-_description
13_
14_
15_
16
17While an underscore is a placeholder for a white-space or an empty line.
18
19 -*-*- END OF LINE -*-*-
20
21 2004/05/05: Markus Gaug
22
23 * mcalib/MCalibrationChargePix.cc
24 - loosened the limits somewhat for calibration with the low-gain
25
26 * mpedestal/MPedCalcPedRun.cc
27 - fixed a small inconsistency in case that the range goes out of
28 the high-gain samples and reaches into the low-gain samples. In
29 that case, the last slice of the high-gain was not taken (but the
30 window size correctly)
31
32 * mjobs/MJExtractCalibTest.[h,cc]
33 - included setters for the time extractor
34
35 * mcalib/MCalibrationChargeCalc.cc
36 - set default of fgPheErrLimit from 4 sigma to 5.
37
38 * mcalib/Makefile
39 * mcalib/CalibLinkDef.h
40 * mcalib/MHCalibrationTestTimeCam.[h,cc]
41 * mcalib/MHCalibrationTestTimeCam.[h,cc]
42 - analogue to MHCalibrationTestCam, two classes to test the
43 output of the calibration.
44
45 * mcalib/MHCalibrationCam.cc
46 - in InitHists, exclude only pixels with kUnsuitableRun, instead of
47 all (IsBad())
48
49 * msignal/Makefile
50 * msignal/SignalLinkDef.h
51 * msignal/MExtractTimeFastSpline.[h,cc]
52 - new fast spline extractor for the equally spaced time slices.
53 Searches for the position of the half maximum between maximum and
54 pedestal. About 6 times faster than MArrivalTimeCalc
55
56 * mjobs/MJCalibration.cc
57 - changed names of the MHCameras to contain run name
58
59 2004/05/04: Raquel de los Reyes
60
61 * mbase/MRunIter.[h,cc]
62 - Added a flag and a set function to read .raw files.
63 The default option is set to read .root files.
64
65
66
67 2004/05/04: Javier Rico
68
69 * mcalib/MCalibrate.cc
70 - when calibrating using kNONE, weight by the pixel area
71
72
73
74 2004/05/04: Thomas Bretz
75
76 * macros/MagicHillas.C, macros/comprob.C, macros/derotatedc.C,
77 macros/dohtml.C, macros/evtrate.C, macros/merpp.C,
78 macros/pixfirerate.C, macros/pixsatrate.C, macros/plot.C,
79 macros/plot2.C, macros/pointing.C, macros/readMagic.C,
80 macros/rootlogon.C, macros/runbook.C, macros/sectorvstime.C,
81 macros/star.C, macros/sumcurrents.C, macros/tar.C,
82 macros/testenv.C, macros/weights.C:
83 - updated documentation
84
85 * mastro/MAstroCamera.[h,cc]:
86 - added member function to read MC .def files for mirror geometry
87 - added GetDiffZdAz
88
89 * mastro/MObservatory.[h,cc]:
90 - added Copy-member function
91
92 * mbase/MLog.[h,cc]:
93 - updated handling of mutices
94 - added a new mutex to lock the stream
95
96 * mhist/MHCamera.[h,cc]:
97 - added functionality to linear deform the camera display
98 (to correct for abberation)
99
100 * mtools/MFFT.cc:
101 - added more documentation
102
103 * mbase/MTime.[h,cc]:
104 - renamed overloaded Set-function to SetMjd. There were some
105 trouble with the interpreter and the new naming is more
106 intuitive.
107
108
109
110 2004/05/04: Markus Gaug
111
112 * mcalib/MHCalibrationChargeBlindPix.cc
113 - intialized the 2 vectors differently, now they don't give
114 warnings any more.
115
116 * msignal/MExtractor.cc
117 * msignal/MExtractFixedWindow.cc
118 - put one initialization to 0 into the MExtractor
119
120 * mastro/MAstroCatalog.h
121 - make AlignCoordinates() protected, in order to compile
122
123 * mcalib/MHGausEvents.cc
124 - took out fEvents(0) and fHGausHist() from constructor
125
126 * msignal/MExtractor.cc
127 * msignal/MExtractPINDiode.cc
128 - fixed StreamPrimitive
129
130 * msignal/MExtractBlindPixel.[h,cc]
131 - deriving from MExtractor, possibility to filter NSB events
132
133
134 2004/05/03: Thomas Bretz
135
136 * mbase/MRunIter.cc:
137 - AddRuns(char*) added some const-qualifiers
138 - replaced deprecated if-else-if by continue- and return-
139 constructions
140
141
142
143 2004/05/03: Javier Lopez
144
145 * mbadpixels/MBadPixelsPix.[h,cc]
146 - put another enum for hardware malfunctionning. Started to be
147 filled with kHVNotNominal
148
149
150
151 2004/05/03: Markus Gaug
152
153 * mcalib/MHCalibrationBlindPix.[h,cc]
154 - removed a "->" behind the comment
155 - Create a TVector in Draw only if the array is not zero
156
157
158 * mraw/MRawEvtPixelIter.cc
159 - corrected bug in GetIdxMaxLoGainSamples() which looped over
160 one slice too much
161 end = fLoGainPos + fNumLoGainSamples + 1 replaced by:
162 end = fLoGainPos + fNumLoGainSamples
163
164 * msignal/MTimeExtractor.[h,cc]
165 * msignal/MExtractTime.[h,cc]
166 - changed name for alphabetical display in dox
167
168 * mjobs/MJCalibration.[h,cc]
169 * msignal/MExtractTimeSpline.h
170 * msignal/MExtractTimeHighestIntegral.h
171 - changed name of base class to MExtractTime
172
173 * mcalib/MCalibrationCam.[h,cc]
174 * mcalib/MCalibrationChargeCam.[h,cc]
175 * mcalib/MCalibrationRelTimeCam.[h,cc]
176 - put the number of unsuitable and unreliable pixels in the base
177 class
178
179 * mcalib/MCalibrationRelTimeCalc.[h,cc]
180 - fixed a bug calculating the average time resolution
181
182 * mpedestals/MPedestalPix.[h,cc]
183 - add a dedicated fValid flag in order to be able to discard pixels
184 from outside (e.g. from MBadPixelsCam)
185
186 * mpedestals/MPedCalcPedRun.[h,cc]
187 - catch badpixels cam from parameter list, if existing and set
188 corresponding pixels to not valid in MPedestalPix
189
190 * mjobs/MGCamDisplays.[h,cc]
191 * mhist/MHCamera.[h,cc]
192 - put DrawProjection and DrawRadialProfile in MHCamera
193
194 * macros/dohtml.C
195 - include directory mfit and macros calibration.C and
196 bootcampstandardanalysis.C
197 - take out pixvstime.C which does not exist
198
199 * msignal/MExtractFixedWindow.[h,cc]
200 * msignal/MExtractSlidingWindow.[h,cc]
201 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
202 * msignal/MExtractor.[h,cc]
203 * msignal/MExtractPINDiode.[h,cc]
204 * msignal/MExtractTime.[h,cc]
205 - set number of slices not in base class, but in derived one.
206 Like this, extractors setting their signal in other containers
207 don't have a conflict with the ReInit() in MExtractor.
208
209 2004/05/01: Thomas Bretz
210
211 * macros/rootlogon.C:
212 - ignore MARSSYS if libmars.so is found in the current path
213
214 * mastro/MObservatory.cc:
215 - small change to coordinates
216
217 * mbase/MLog.[h,cc]:
218 - enhanced output in case of problem with mutices
219
220 * mtemp/TempIncl.h, mtemp/TemlLinkDef.h:
221 - removed everything
222
223 * Makefile*, */Makefile
224 - changed all to support mtemp/mifae and similar
225
226
227
228 2004/05/01: Abelardo Moralejo
229
230 * mmain/MEventDisplay.cc
231 - changed back integration range for MC to 0-14 slices to avoid
232 confusions.
233
234
235
236 2004/05/01: Markus Gaug
237
238 * macros/dohtml.C
239 - include directory mpedestal
240
241 * msignal/MExtractFixedWindow.[h,cc]
242 * msignal/MExtractSlidingWindow.[h,cc]
243 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
244 * msignal/MExtractor.[h,cc]
245 - include the possibility to set the range for the hi-gain outside
246 the range of MRawEvtPixelIter::GetNumHiGainSamples() and to take
247 the "low-gain" slices instead. This is necessary for the March
248 data!
249
250 * mjobs/MJCalibration.[h,cc]
251 - accept arrival time extractors deriving from MTimeExtractor
252
253
254
255 2004/04/30: Thomas Bretz
256
257 * mastro/MAstroCamera.[h,cc]:
258 - removed obsolete TList data member (use a argument in
259 GetStarList instead)
260
261 * mbase/MTime.h:
262 - added 'istream &operator<<(istream &in, MTime &t)'
263
264 * mbase/BaseLinkDef.h:
265 - added new operator
266
267
268
269 2004/04/30: Daniela Dorner
270
271 * macros/pointing.C
272 - implemented plot: Control Deviation vs Time
273 - rearranged plots
274
275
276
277 2004/04/30: Markus Gaug
278
279 * mcalib/MCalibrationRelTimeCalc.[h,cc]
280 - new class to treat rel. times after fits
281
282 * mcalib/MCalibrationChargeCalc.[h,cc]
283 - search for outliers in the total F-Factor and set a flag in
284 MBadPixelsPix
285
286 * mcalib/MCalibrationRelTimeCam.h
287 - new TArrayIs to store number of unsuitable and unreliable pixels
288
289
290 * mbadpixels/MBadPixelsPix.h
291 - two new flags added: kDeviatingFFactor and kDeviationTimeResolution
292
293 * mcalib/MHCalibrationRelTimePix.[h,cc]
294 - take out commented part of code related to re-normalization
295
296 * mcalib/MHCalibrationCam.[h,cc]
297 - retrieve the used run numbers in order to store them in teh
298 histogram titles to help transparency of the displays
299
300 * mcalib/MHCalibrationRelTimeCam.[h,cc]
301 -  Getter and Setter for the reference pixel
302
303 * mcalib/MCalibrate.cc
304 - make error of nphot to be taken from square root of absolute
305 number of photons instead of number of photons, otherwise
306 NaN's are obtained
307
308 * msignal/MExtractPINDiode.[h,cc]
309 - now deriving from MExtractor
310
311 * msignal/Makefile
312 * msignal/SignalLinkDef.h
313 * msignal/MExtractTimeSpline.[h,cc]
314 * msignal/MExtractTimeHighestIntegral.[h,cc]
315 - replacements for MArrivalTimeCalc and MArrivalTimeCalc2
316
317 * mjobs/MJCalibration.[h,cc]
318 - Set time extractor by pointer
319
320
321
322 2004/04/29: Thomas Bretz
323
324 * mbase/MTask.cc:
325 - fixed behaviour of GetNumExecutions. Because of a root bug
326 Count returns a number which is to high by 1.
327
328
329
330 2004/04/29: Abelardo Moralejo
331
332 * mmc/MMcEvt.hxx
333 - Added minor comment (explanation of fPassPhotCone).
334
335 * mmc/MMcRunHeader.[hxx,cxx]
336 - Removed obsolete parameters fSourceOffsetTheta, fSourceOffsetPhi
337 - Updated class version to 5.
338
339
340
341 2004/04/29: Nadia Tonello
342
343 * mbadpixels/MBadPixelsTreat.h
344 - changed enums {.. BIT(1), ... BIT(2), ... BIT(3) } in {1,2,3}
345 to have the right behaviour of the flags (and of SetProcessRMS)
346
347 * manalysis/MCT1PointingCorrCalc.[h,cc]
348 - added pointing correction for 1ES1959
349
350
351
352 2004/04/29: Markus Gaug
353
354 * msignal/MArrivalTimePix.[h,cc]
355 - removed flag fLoGainUsed which is not used at all
356
357 * msignal/MTimeExtractor.[h,cc]
358 - new base class for arrival time extractors
359
360 * msignal/Makefile
361 * msignal/SignalLinkDef.h
362 * msignal/MExtractTimeSpline.[h,cc]
363 - replacement of MArrivalTimeCalc, derived from MTimeExtractor
364
365
366 * msignal/MExtractor.h
367 - make SetRange virtual
368 - check for range w.r.t. ranges given in the run header in ReInit
369
370 * msignal/MExtractFixedWindow.[h,cc]
371 * msignal/MExtractSlidingWindow.[h,cc]
372 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
373 - overload the SetRange() function in order to do the necessary
374 checks of the range there. Slight differences in every extractor
375 because of the floating windows.
376
377
378 * mpedestals/MPedCalcPedRun.[h,cc]
379 - add the possibility to set ranges and extraction windows. Default
380 is what has always been
381
382
383 * mjobs/MJPedestals.[h,cc]
384 - add the possibility to set a signal extractor which gives the
385 extraction ranges to MPedCalcPedRun
386 - derive from MHCamDisplays
387
388 * mcalib/MCalibrationChargeCam.cc
389 - updated the Print() a little
390
391
392 2004/04/29: Javier Rico
393
394 * mbase/MRunIter.cc
395 - Remove AddRuns(const char*,const char*) dependence on length of
396 first character chain
397
398
399 2004/04/28: Javier Rico
400
401 * mbase/MRunIter.[h,cc]
402 - include function to read runs specified in a character chain
403 with the format, e.g., run1,run2-run3,run4-run5,...
404
405
406
407 2004/04/28: Abelardo Moralejo
408
409 * macros/starmc.C
410 - adapted to change in MC calibration: replaced
411 MMcCalibrationCalc::GetHist by GetHistADC2PhotEl and
412 GetHistPhot2PhotEl.
413
414
415
416 2004/04/28: Markus Gaug
417
418 * mjobs/MGCamDisplays.cc
419 * mjobs/MJCalibration.cc
420 - introduced new "fit" flag in DrawProjection allowing to draw
421 two separate pad with the (fitted) histograms for inner and
422 outer pixels. This is displayed by MJCalibration if the
423 kNormalDisplay option is chosen (default).
424
425 * mjobs/MJCalibration.h
426 - took out the const of GetBadPixels() in order to allow compilation
427 of macros/bootcampstandardanalysis.C. This will change again soon
428 when mjobs/MJExtraction is updated and used there.
429
430 * msignal/MArrivalTimeCalc.[h,cc]
431 - remove the ReInit() which calls to an MGeomCam which is later not
432 used
433
434 * macros/calibrate_data.C
435 - fixed a bug in loop 3 taking the default QE Cam instead of the
436 one filled by MJCalibration
437
438 * msignal/MExtractor.[h,cc]
439 - new base class for signal extractors
440
441 * msignal/Makefile
442 * msignal/SignalLinkDef.h
443 * msignal/MExtractFixedWindow.[h,cc]
444 * msignal/MExtractSlidindWindow.[h,cc]
445 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
446 - replacements for MExtractSignal, MExtractSignal2, MExtractSignal3
447
448 * macros/calibration.C
449 * macros/calibrate_data.C
450 * macros/pedphotcalc.C
451 * macros/bootcampstandardanalysis.C
452 - adapted to new extractors
453
454 * mbadpixels/MBadPixelsPix.h
455 - set back the old definition of IsOK(), namely no information
456 available
457
458
459
460 2004/04/27: Raquel de los Reyes
461
462 * mhvstime/MHVsTime.cc
463 - added a line in the Fill function to avoid empty time events.
464
465
466
467 2004/04/27: Abelardo Moralejo
468
469 * mcalib/MMcCalibrationCalc.[h,cc]
470 - added histogram which stores the conversion of photons before
471 the plexiglas to photoelectrons hitting first dynode.
472
473 * macros/mccalibrate.C
474 - added MPointingPosCalc to the tasklist to create and fill an
475 MPointingPos object, and later write it to the Events tree of
476 the calibrated MC files. Added some comments and simplified
477 some lines. One more histogram from MMcCalibrationCalc (see
478 above) is now written to the output.
479
480 * macros/starmc2.C
481 - added the writing of MPointingPos to output star file.
482
483
484
485 2004/04/27: Markus Gaug
486
487 * mjobs/MJCalibration.[h,cc]
488 - put the three camera drawing facilities into a separate base
489 class MGCamDisplays
490
491 * mjobs/MGCamDisplays.[h,cc]
492 * mjobs/Makefile
493 * mjobs/JobsLinkDef.h
494 - camera drawing facilities: CamDraw, DrawProjection and
495 DrawRadialProfile, used by all jobs
496
497 * mjobs/MJExtractCalibTest.[h,cc]
498 * mjobs/Makefile
499 * mjobs/MJobsLinkDef.h
500 - new class to test the calibration results
501
502 * mcalib/MCalibrationChargeCalc.cc
503 - set unsuitable pixels to excluded in MCalibrationChargePix, which
504 will not display them in the status display
505
506 * mjobs/MJCalibration.cc
507 - take out display of previously excluded pixels
508
509 * mbadpixels/MBadPixelsCam.cc
510 - set val to 1 in case that GetPixelContent is true, before display
511 was not correct
512
513 * macros/calibration.C
514 - added the test class MJExtractCalibTest
515
516
517
518 2004/04/27: Abelardo Moralejo
519
520 * mhistmc/MHMcCollectionArea.[h,cc]
521 - Added fMCAreaRadius and setter to allow changing the radius of
522 the circular area in which MC events are produced. Useful for
523 instance for stereo configuration studies. By default it is 300 m
524 as was assumed before.
525
526
527
528 2004/04/26: Markus Gaug
529
530 * mcalib/MHCalibrationTestPix.[h,cc]
531 * mcalib/MHCalibrationTestCam.[h,cc]
532 * mcalib/Makefile
533 * mcalib/CalibLinkDef.h
534 - two new histogram classes to perform claibraion checks, will be
535 especially useful for the data-check.
536
537 * mcalib/MCalibrationQEPix.cc
538 - found a bug in the setting of validity flags of colours. This
539 made the QE used for calibration uncorrect by about a factor 1.5
540 for the outer pixels if only one colour is used for calibration.
541
542 * mjobs/MJCalibration.[h,cc]
543 - moved colour finder from the macros into this class with the
544 function FindColor()
545 - had to add ~MJCalibration() {} because otherwise, I get a
546 segmentation violation in the destructor, the debugger says in
547 some TString. Maybe it's because of the GetDescriptor() in
548 ~MParContainer() ?
549
550 * macros/calibration.C
551 * macros/calibrate_data.C
552 * macros/pedphotcalc.C
553 * macros/bootcampstandardanalysis.C
554 - removed function FindColor()
555
556 * mcalib/MCalibrationCam.h
557 - make Init() and InitSize() virtual
558
559 * mcalib/MCalibrationChargeCam.[h,cc]
560 - introduce two TArrayI's for the number of uncalibrated and
561 unreliable pixels.
562
563 * mcalib/MCalibrationChargeCalc.[h,cc]
564 - calculate and store the above numbers.
565
566 * mbadpixels/MBadPixelsPix.[h,cc]
567 * mbadpixels/MBadPixelsCam.cc
568 - removed bits: kHiGainNotCalibrated and kLoGainNotCalibrated
569 - added bits: kDeviatingFFactor, kConversionHiLoNotValid
570 - removed functions: IsCalibrationResultOK()
571 and IsCalibrationSignalOK()
572 - changed function IsOK() such that it returns false only if
573 the pixels is not suitable (run or evt)
574
575 * mcalib/MCalibrate.cc
576 * mcalib/MCalibrateRelTime.cc
577 - exchanged query for IsCalibrationResultOK() to
578 IsUnsuitableRun(MBadPixelsPix::kUnsuitableRun). This includes
579 now the oscillating pixels (which are sometimes many!!)
580
581 * mcalib/MHCalibrationRelTimePix.cc
582 - commented re-normalization to ns in Renorm()
583 - introduced Getter to fFADCSliceWidth
584
585 * mcalib/MHCalibrationRelTimeCam.cc
586 - renorm to ns in GetPixelsContent()
587 --> now, calibration in MCalibrateRelTimes is consistent
588
589
590
591 2004/04/26: Abelardo Moralejo
592
593 * manalysis/MMcCalibrationUpdate.cc
594 - changed from 1 to 10 the "dummy" value of conversion high to low
595 gain for old camera 0.6 files. Usually these files have no low
596 gain at all, but there was a patched version of the program
597 which did have low gain (with a gain 10 lower than hg).
598
599
600
601 2004/04/25: Abelardo Moralejo
602
603 * mbadpixels/MBadPixelsTreat.cc
604 - Change in line 204: if ((*fBadPixels)[i].IsBad()) by
605 if ((*fBadPixels)[j].IsBad()) The way it was done, it never
606 worked, because the check on whether the neighbour pixels
607 were OK was performed on the same pixel to be treated (i), which
608 is obviously not OK. The same problem fixed in the interpolation
609 of pedestals. Amazingly, this error would have shown up in any
610 test of the class.... I assume it must have been commited
611 completely untested.
612
613 - In InterpolateSignal: moved division of summed charge over
614 number of pixels : put it after the check of the number of
615 valid neighbours to avoid division by 0.
616
617
618
619 2004/04/23: Markus Gaug
620
621 * mcalib/MHCalibrationCam.cc
622 - fixed a bug in the ReInit() for the number of average events in
623 each area index and sector
624
625
626 2004/04/23: Thomas Bretz
627
628 * */Makefile:
629 - added some more mpedestal
630
631 * mreport/MReportRun.cc:
632 - changed to work with the latest version of report-files
633 --> This will make it incompatible with older report files
634 (for this use older Mars versions for merpping)
635
636 * mbase/MStatusDisplay.[h,cc]:
637 - added combo-box to surf through tabs in MARS-tab
638
639
640
641 2004/04/22: Nadia Tonello
642
643 * mcalib/MCalibrateData.cc
644 - changed request for MBadPixelsPix::IsCalibrationResultOK() for
645 MBadPixelsPix::IsUnsuitable(MBadPixelsPix::kUnsuitableRun)
646
647
648
649 2004/04/22: Thomas Bretz
650
651 * mhist/MHCamera.[h,cc]:
652 - implemented SetUsed
653
654 * merpp.cc:
655 - added "-ff" and interleave mode - both not execcively tested yet
656
657 * mhbase/MFillH.cc:
658 - added a missing 'endl'
659
660 * mraw/MRawCrateData.[h,cc], mraw/MRawEvtData.[h,cc],
661 mraw/MRawEvtHeader.[h,cc]
662 - added SkipEvt (the number of skipped bytes is untested)
663
664 * mraw/MRawEvtHeader.[h,cc]
665 - return kCONTINUE if time is invalid
666
667 * mraw/MRawFileRead.[h,cc]:
668 - implemented AddFile feature - first draft!
669 - added feature to skip events
670
671 * mraw/MRawFileWrite.h:
672 - changed default compression level corresponding to merpp to 2
673
674 * mraw/MRawRead.[h,cc]:
675 - added fForceMode flag to be able to suppress event errors
676
677 * mbadpixels/MBadPixelsTreat.[h,cc]:
678 - changes such that the pedestal interpolation is now done
679 only in ReInit. If you need the old behaviour call
680 SetProcessRMS()
681
682 Another step towards less mess:
683
684 * MMcPedestalCopy.[h,cc], MMcPedestalNSBAdd.[h,cc],
685 MPedPhotCalc.[h,cc], MPedPhotCam.[h,cc], MPedPhotPix.[h,cc],
686 MPedCalcPedRun.[h,cc], MPedestalCam.[h,cc],
687 MPedestalPix.[h,cc]:
688 - moved from manalysis to mpedestal
689
690 * mpedestal/Makefile, mpedestal/PedestalLinkDef.h,
691 mpedestal/PedestalIncl.h:
692 - added
693
694 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
695 manalysis/AnalysisIncl.h:
696 - removed files above
697
698 * mbadpixels/Makefile:
699 - added mpedestals
700
701 * Makefile:
702 - added mpedestals
703
704
705 2004/04/22: Antonio Stamerra
706
707 * mmain/MEventDisplay.cc
708 - Added new tab "Trigger" adding a new MHEvent (evt9),
709 filled through the MMcTriggerLvl2 container.
710 A new MFillH task for evt9 and MMcTriggerLvl2Calc task
711 have been added.
712
713 * mhist/MHEvent.[h,cc]
714 - Added new event type kEvtTrigPix
715
716 * manalysis/MMcTriggerLvl2.[h,cc]
717 - The class now inherits from MCamEvent
718 - Added the methods GetPixelContent and DrawPixelContent (from MCamEvent)
719 - Added the method IsPixelInTrigger that returns kTRUE if a pixels
720 is in the trigger region
721
722 * manalysis/MMcTriggerLvl2Calc.[h,cc]
723 - Added the methods CheckRunType and ReInit to check if the file is MC.
724
725 * mhistmc/Makefile
726 - Added the include for mgui
727
728
729 2004/04/22: Markus Gaug
730
731 * mcalib/MCalibrate.[h,cc]
732 - introduced flat-fielding of charges for the muon calibration,
733 accessible with SetCalibrationMode(kFlatCharge)
734
735 * manalysis/MPedCalcPedRun.cc
736 - added a SetReadyToSave() at the end of PostProcess
737
738 * mjobs/Makefile
739 - added include of mraw
740
741 * mjobs/MJCalibration.cc
742 - added MRawFileRead for option SetDataCheck()
743
744 * mjobs/MJPedestal.cc
745 - added MRawFileRead for option SetDataCheck()
746
747
748 2004/04/21: Thomas Bretz
749
750 * mbase/MTask.cc, mbase/MTaskList.cc:
751 - let MTask in list fTaskProcess to be used as a counter
752
753 * mdata/MDataChain.[h,cc]:
754 - added some treatments for combinations of +/- signs
755
756 * mfbase/MFilterList.[h,cc]:
757 - added a new constructor to simplyfy filter-inversions
758
759 * mfileio/MReadReports.cc:
760 - added comment
761
762 * mhbase/MBinning.[h,cc]:
763 - added new constructor to simplify calls in macros
764
765 * mhbase/MFillH.[h,cc]:
766 - added fDrawOption to be used in MStatusDisplay
767
768 * mhist/MHFalseSource.cc:
769 - added comment
770
771
772
773 2004/04/20: Thomas Bretz
774
775 * macros/derotatedc.C
776 - added tutorial macro plotting derotated dc currents
777
778 * mhist/MHCamEventRot.[h,cc]:
779 - added histogram to be filled with derotated MCamEvents
780
781
782
783 2004/04/18: Abelardo Moralejo
784
785 * mgeom/MGeomCam.h
786 - Update class version to 4 (necessary after M. Gaug's change
787 of the type of member fMaxRadius.
788
789
790
791 2004/04/16: Abelardo Moralejo
792
793 * mcalib/MCalibrationQEPix.[h,cc]
794 - Added fAverageQE. Same role as gkDefaultAverageQE, but can be
795 changed via SetAverageQE. Made public GetAverageQE and
796 GetAverageQERelVar (this changes needed for MC).
797
798 * mcalib/MMcCalibrationCalc.[h,cc]
799 * manalysis/MMcCalibrationUpdate.[h,cc]
800 - Adapted to M. Gaug's changes in calibration classes. Behaviour
801 has been tested to be the same as before those changes. Now the
802 conversion factor from ADC counts to photoelectrons, and the
803 average QE (photons->photoelectrons) are calculated independently
804 (and later combined by MCalibrate to obtain the conversion
805 ADC->photons).
806
807 * mmain/MEventDisplay.cc, macros/mccalibrate.C, starmc.C
808 - Added call to MExtractSignal::SetSaturationLimit(240) Affects
809 only MC display. This was necessary because if electronic noise
810 is simulated in the FADC, sometimes saturated slices look not
811 saturated due to negative fluctuations, so it is better to set
812 the saturation limit at a safe value (240 ADC counts). Changed
813 signal integration range (only for MC), now from slices 5 to 10.
814
815 * msignal/MExtractSignal3.[h,cc]
816 - Changed name of function SetRange for the more adecquate
817 "SetWindows". No change in behaviour of the function.
818
819
820
821 2004/04/16: Markus Gaug
822
823 * msignal/MExtractSignal.cc
824 - commited proposed larger default window from fgLast = 10 to
825 fgLast = 14, because in March the pulses have moved to later
826 arrival times.
827 - removed some inconsistency with slice numbering in FindSignal()
828 from pixel.GetHiGainSamples()+fHiGainFirst-1 to
829 pixel.GetHiGainSamples()+fHiGainFirst and also for the low gain
830
831 * msignal/MExtractSignal2.cc
832 - committed the proposed smaller window egdes from fgFirst=0 to
833 fgFirst = 3, because in March some of the high-gain pulses reach
834 into the "low-gain samples" and mislead thus sliding window to
835 be maximized on the tail of the high-gain pulse.
836
837 * mcalib/MHPedestalPix.cc
838 - fixed a bug which made normalization to values per slice not happen
839
840 * macros/pedestalstudies.C
841 - fixed and documented
842
843
844
845 2004/04/15: Markus Gaug
846
847 * macros/calibration.C
848 - added a function FindColor() to extract the colour by filename,
849 works if there is indeed a colour or if the run nubmer is smaller
850 than 20000 -> take ct1
851
852 * macros/bootcampstandardanalysis.C
853 * macros/pedphotcalc.C
854 * macros/calibrate_data.C
855 - updated the macro to the cvs-standard used at the Udine bootcamp
856
857 * mcalib/MCalibrateRelTimes.[h,cc]
858 * mcalib/Makefile
859 * mcalib/CalibLinkDef.h
860 - new class to calibrate the relative times
861
862 * manalysis/MGeomApply.cc
863 - added MArrivalTime::Init()
864
865 * msignal/MArrivalTime.[h,cc]
866 - added array fDataErr
867
868 * macros/rootlogon.C
869 - added directories mbadpixels and mjobs
870
871 * mcalib/MCalibrationQEPix.cc
872 - set the fAvNorm variables to 1 in Clean()
873
874 * manalysis/MPedPhotCalc.[h,cc]
875 - included possibility to use an MBadPixelsCam
876
877
878
879 2004/04/14: Thomas Bretz
880
881 * manalysis/MCerPhotEvt.[h,cc]:
882 - fixed a bug which caused a missing last pixel (in most cases
883 Index 576)
884
885 * manalysis/MCerPhotPix.cc:
886 - fixed output in Print
887
888 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
889 - added missing SetCalibrationMethod
890
891 * mbadpixels/MBadPixelsCam.[h,cc]:
892 - added copy constructor
893
894 * mbadpixels/MBadPixelsMerge.cc:
895 - added comments
896
897 * mraw/MRawRunHeader.[h,cc]:
898 - added new run-type (kRTPointRun=7)
899
900 * mmain/MEventDisplay.cc:
901 - fixed the broken cleaning levels
902
903
904
905 2004/04/14: Markus Gaug
906
907 * mcalib/MCalibrationQEPix.cc
908 - found a bug in the calculation of the error, fixed
909
910 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
911 - replaced SetCalibrationMethod by SetCalibrationMode
912
913 * htmldoc/images/CalibClasses.gif
914 * htmldoc/images/RelTimeClasses.gif
915 - two schemes used in the class descriptions
916
917 * mcalib/MHCalibrationCam.[h,cc]
918 - included function GetAverageAreas() and GetAverageSectors() like
919 in MCalibrationCam
920
921 * mjobs/MJCalibration.[h,cc]
922 - included calibration of rel.Times, to be chosen with a flag
923 RelTimeCalibration()
924 - signal extractor and arrival time extractor can be chosen by
925 flags as well (see Class description)
926
927
928 * mbadpixels/MBadPixelsCam.cc
929 - add two new types in GetPixelContent, add documentation of
930 GetPixelContent
931
932 * msignal/MArrivalTimeCalc2.cc
933 - commented the warning for pixels with lowgain saturation
934
935
936
937 2004/04/13: Markus Gaug
938
939 * macros/dohtml.C
940 - included directory mbadpixels
941
942 * mcalib/MCalibrationPix.[h,cc]
943 - add functions GetHiLoMeansDivided(), GetHiLoSigmasDivided() and
944 errors
945
946 * mcalib/MCalibrationChargeCam.[h,cc]
947 - removed hi-vs.Lo histograms (come into a separate MIntensityCam)
948 - updated GetPixelContents
949 - updated class documentation
950
951 * mgeom/MGeomMirror.h
952 - include <TVector3.h>, otherwise it does not compile on my machine
953
954 * mjobs/MJPedestals.cc
955 * mjobs/MJCalibration.cc
956 - replaced MBadPixelsMerge by MParList.AddToList(fBadPixels) until
957 bug in MBadPixelsMerge is resolved (see bugtracker).
958
959 * mcalib/MHCalibrationChargePINDiode.cc
960 - return in Draw() if histogram is empty (otherwise segm. violation
961 in eventloop
962
963 * msignal/MExtractedSignalCam.cc
964 - intialize variables by default to 0.
965
966 * mcalib/MHCalibrationChargeCam.[h,cc]
967 - pointer to fSig is not stored, somehow, when running MJCalibration
968 Don't know why. Removed and stored some variables instead
969
970 * mjobs/MJCalibration.[h,cc]
971 - updated documentation, updated QE Cam
972 - set the pulser colour (now obligatory)
973 - set the possibility to choose different displays
974
975 * mcalib/MCalibrationChargeCalc.cc
976 - set the pulser colour (now obligatory)
977
978 * mcalib/MCalibrationChargePix.[h,cc]
979 - put GetRSigmaPerCharge into this class
980
981
982
983 2004/04/13: Thomas Bretz
984
985 * mastro/MAstroCamera.cc, mastro/MAstroCatalog.[h,cc]:
986 - enhanced comments
987 - added some new features
988
989 * mbase/MAGIC.h:
990 - removed some empty lines
991
992 * mfileio/MWriteRootFile.cc:
993 - fixed a compiler warning
994
995 * mgeom/MGeomCorsikaCT.h:
996 - removed obsolete include of TArrayF
997
998 * mgeom/MGeomMirror.[h,cc]:
999 - replaced fReflector by *fReflector
1000
1001 * mmain/MGDisplayAdc.cc:
1002 - fixed a bug which caused the wrong histogram entry to be
1003 displayed
1004
1005
1006
1007 2004/04/10: Markus Gaug
1008
1009 * macros/dohtml.C
1010 - included directory mjobs
1011
1012 * mjobs/MJCalibration.[h,cc]
1013 - added and updated documentation (not yet ready)
1014
1015 * htmldoc/images/CalibClasses.gif
1016 - scheme of the calibration classes, used for documentation in
1017 MJCalibration.cc
1018
1019
1020
1021 2004/04/10: Thomas Bretz
1022
1023 * mastro/MAstroCatalog.[h,cc], mastro/MAstroCamera.[h,cc]:
1024 - added comments
1025
1026 * macros/starfield.C:
1027 - added
1028
1029 * mastro/Makefile, mastro/AstroLinkDef.h
1030 - added MAstroCamera
1031
1032
1033
1034 2004/04/09: Markus Gaug
1035
1036 * mcalib/MHCalibrationChargePINDiode.[h,cc]
1037 * mcalib/MHCalibrationChargeCam.[h,cc]
1038 * mcalib/MHCalibrationChargeCalc.[h,cc]
1039 - put abs. time consistency check from MCalibrationChargeCalc into
1040 MHCalibrationChargePINDiode and MHCalibrationChargeCam
1041
1042 * mcalib/MHCalibrationCam.[h,cc]
1043 * mcalib/MHCalibrationChargeCalc.[h,cc]
1044 - number of used FADC slices also stored in MHCalibrationCam,
1045 MHCalibrationChargeCalc needs no pointer to the signal extractors
1046 any more -> removed
1047
1048 * mcalib/MCalibrationChargePINDiode.[h,cc]
1049 * mcalib/MCalibrationChargeBlindPix.[h,cc]
1050 * mcalib/MCalibrationCam.[h,cc]
1051 - put a default pulser color kNONE
1052
1053 * manalysis/MPedestalCam.[h,cc]
1054 * manalysis/MPedCalcPedRun.[h,cc]
1055 * manalysis/MGeomApply.cc
1056 - added average pixels in the way like it is done in MCalibrationCam
1057
1058
1059
1060 2004/04/08: Thomas Bretz
1061
1062 * mfbase/MF.cc:
1063 - optimized output
1064
1065 * mfbase/MFilterList.cc:
1066 - added some comments
1067
1068 * mfileio/MReadMarsFile.[h,cc], mfileio/MReadTree.[h,cc]:
1069 - added SortFiled-option -- RAQUEL, this is for you!
1070
1071 * mfileio/MWriteRootFile.cc:
1072 - class AddSerialNumber in AddContainer
1073
1074 * mhist/MHFalseSource.[h,cc]:
1075 - optimized setting of hist maximum
1076 - added more source dependant cuts
1077 - changed display layout
1078 - scale number of entries to correct for different acceptance
1079 (not perfect, but the best I can currently do)
1080
1081 * mimage/MHHillasExt.[h,cc]:
1082 - added new histogram for fMaxDist
1083
1084 * mimage/MHNewImagePar.[h,cc]:
1085 - added new histograms for Used/CoreArea
1086
1087 * mimage/MHillasCalc.cc:
1088 - optimized output
1089
1090 * mimage/MHillasExt.cc:
1091 - fMaxDist got a sign
1092
1093 * mimage/MNewImagePar.[h,cc]:
1094 - enhanced comments
1095 - added new Print() member function
1096
1097 * macros/readCT1.C, macros/readMagic.C, mmain/MEventDisplay.cc:
1098 - forward geomcam to newimgepar.Print()
1099
1100
1101
1102 2004/04/08: Markus Gaug
1103
1104 * mcalib/MCalibrationChargeCalc.[h,cc]
1105 * mcalib/MCalibrationChargeCam.[h,cc]
1106 * mcalib/MCalibrationChargePix.[h,cc]
1107 * mcalib/MCalibrationChargeBlindPix.[h,cc]
1108 * mcalib/MCalibrationChargePINDiode.[h,cc]
1109 - put calculation of photon fluxes with the three methods into
1110 MCalibrationChargeCalc
1111 - reorganized calculations in a better readable way (hopefully!)
1112
1113 * mbase/MAGIC.h
1114 * mcalib/MCalibrationCam.[h,cc]
1115 * mcalib/MCalibrationQECam.[h,cc]
1116 * mcalib/MCalibrationQEPix.[h,cc]
1117 - put PulserColor_t away from MAGIC.h into MCalibrationCam
1118 - full implementation of the QE-calibration from MCalibrationQEPix
1119
1120 * msignal/MExtractBlindPixel.cc
1121 - removed warning about low-gain saturation of Blind pixel
1122
1123 * mcalib/MCalibrate.[h,cc]
1124 * mcalib/MCalibrateData.[h,cc]
1125 * mcalib/MMcCalibrationCalc.[h,cc]
1126 * manalysis/MMcCalibrationUpdate.[h,cc]
1127 - conversion factors now separated into FADC2phe and then into
1128 call to average Quantum efficiency.
1129
1130
1131 2004/04/07: Markus Gaug
1132
1133 * mcalib/MHGausEvents.[h,cc]
1134 - added fBlackout events
1135
1136
1137
1138 2004/04/06: Thomas Bretz
1139
1140 * mcalib/MCalibrationCam.[h,cc]:
1141 - simplified call to initialization by new function Init()
1142
1143 * mcalib/MH*.cc:
1144 - fixed some warnings (comparision between signed and unsigned)
1145
1146 * manalysis/MGeomApply.cc:
1147 - use new Init-funtion of MCalibrationCam
1148
1149 * mastro/MAstro.cc:
1150 - some fixes to the conversion functions
1151
1152 * mastro/MAstroCamera.[h,cc]:
1153 - added comments
1154 - changed argument type of AddPrimitives
1155
1156 * mastro/MAstroCatalog.[h,cc]:
1157 - many changes to make it possible to overlay the
1158 catalog on top of a 2D histogram
1159
1160 * mbase/MEvtLoop.cc:
1161 - fixed estimation of run-time
1162
1163 * mbase/MMath.[h,cc]:
1164 - added member functions for signed significances
1165
1166 * mbase/MParContainer.cc:
1167 - changed GetterMethod() to support double reference data mebers
1168
1169 * mbase/MStatusDisplay.cc:
1170 - removed some obsolete debug outputs
1171
1172 * mbase/MTask.[h,cc]:
1173 - removed fNumExecutions, fStopwatch already counts the calls
1174 - slight chagnes to output of PrintStatistics
1175
1176 * mbase/MTaskList.[h,cc]:
1177 - slight chagnes to output of PrintStatistics
1178
1179 * mbase/MTime.cc:
1180 - removed +TwoPi from GetGmst
1181
1182 * mcamera/MCameraAUX.h, mcamera/MCameraHV.h, mcamera/MCameraLV.h,
1183 mcamera/MCameraLid.h, mcamera/MCameraLids.h,
1184 mcamera/MCameraPowerSupply.h:
1185 - added missing Getter functions
1186
1187 * mcamera/MCameraHV.h:
1188 - removed obsolete data-meber fMean
1189
1190 * mdata/DataLinkDef.h:
1191 - added MDataFormula
1192
1193 * mdata/MDataChain.cc, mdata/Makefile:
1194 - enhanced dosumentation
1195 - implemented use of multi argument functions
1196 - added ^-operator
1197
1198 * mdata/MDataList.[h,cc]:
1199 - added ^-operator
1200 - enhanced IsValid
1201
1202 * mfbase/MFilterList.cc:
1203 - changed a warn-output to inf
1204
1205 * mgeom/MGeomCam.[h,cc]:
1206 - added getter returning index corresponding to XY
1207
1208 * mgeom/MGeomPix.[h,cc]:
1209 - added getter IsInside
1210
1211 * mhist/MHCamera.cc:
1212 - Return 0 in GetMean if no entries
1213
1214 * mhist/MHFalseSource.[h,cc]:
1215 - removed conversion stuff (mm/deg)
1216 - slight change to calculation of significance
1217 - added dist-cuts
1218 - added histogram showing number of entries
1219 - added display of catalog
1220
1221 * mhist/MHStarMap.cc:
1222 - added comment
1223
1224 * mimage/MHillasExt.[h,cc]:
1225 - changed class version to 3
1226 - added new data-member fMaxDist
1227
1228 * mimage/MNewImagePar.[h,cc]:
1229 - added new data member fUsedArea and fCoreArea
1230
1231 * mmc/MMcConfigRunHeader.h:
1232 - readded GetMirrors (WHY WAS IT GONE?)
1233
1234 * mpointing/MPointingPos.[h,cc]
1235 - implemented Getter to get coordinates in rad
1236
1237 * mpointing/MSrcPosCalc.[h,cc]:
1238 - fixed direction of rotation
1239 - for the moment do use fTime
1240
1241
1242
1243 2004/04/06: Markus Gaug
1244
1245 * mcalib/MCalibrationChargePix.[h,cc]
1246 - change names of the GetLoGain*() functions to
1247 GetConvertedLoGain*() for better clarity
1248
1249 * mcalib/MCalibrationChargeCam.[h,cc]
1250 - updated and enlarged documentation
1251
1252 * mcalib/MHCalibrationChargeCam.cc
1253 * mcalib/MHCalibrationRelTimeCam.cc
1254 - set the arrays by use of memset
1255 - initialize TObjArrays with the Init-Function
1256
1257
1258 2004/04/05: Markus Gaug
1259
1260 * msignal/MExtractedSignalPINDiode.h
1261 - new function GetLastUsedSlice()
1262
1263 * mcalib/MCalibrationChargeCalc.[h,cc],
1264 * mcalib/MCalibrationChargeCam.cc:
1265 - holds also pointers to MExtractedSignalPINDiode and
1266 MExtractedSignalBlindPixel and does the checks inside the task
1267 (instead of inside the containers)
1268
1269 * mcalib/MCalibrationChargeBlindPix.[h,cc],
1270 * mcalib/MCalibrationChargePINDiode.[h,cc]:
1271 - updated and enlarged documentation
1272
1273 * mcalib/MHCalibrationChargePINDiode.cc
1274 * mcalib/MHCalibrationChargeCam.[h,cc]
1275 - rename Setter for fMeanVar from SetMeanErr() to SetMeanVar()
1276 - rename arrays of fAverageSigmaErr to AverageSigmaVar
1277
1278 * mcalib/MCalibrationPix.[h,cc]
1279 * mcalib/MCalibrationChargePix.[h,cc]
1280 * mcalib/MCalibrationChargeBlindPix.[h,cc]
1281 * mcalib/MCalibrationChargePINDiode.[h,cc]
1282 - add Getters to the relative variance
1283
1284 * mcalib/MHGausEvents.[h,cc]
1285 * mcalib/MCalibrationPix.[h,cc]
1286 * mcalib/MHCalibrationCam.cc
1287 - add to Pickup also Blackout events
1288
1289
1290 2004/04/05: Nadia Tonello
1291
1292 * mbadpixels/MBadPixelsTreat.cc
1293 - In Unmap(): replaced SetPixelUnused with SetPixelUnmapped
1294
1295
1296
1297 2004/04/02: Markus Gaug
1298
1299 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.[h,cc],
1300 mcalib/MCalibrationQEPix.[h,cc], mcalib/MCalibrationQECam.[h,cc],
1301 mcalib/MCalibrationRelTimeCam.[h,cc],
1302 mcalib/MCalibrationRelTimePix.[h,cc]:
1303 - updated and enlarged documentation
1304
1305 * mcalib/MHGausEvents.[h,cc], mcalib/MHPedestalPix.[h,cc],
1306 mcalib/MHCalibrationChargePix.[h,cc],
1307 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
1308 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
1309 mcalib/MHCalibrationChargeBlindPix.[h,cc],
1310 mcalib/MHCalibrationChargePINDiode.[h,cc]:
1311 - put fPixId, fPickup, fPickupLimt, CountPickup(), RepeatFit() and
1312 ChangeHistId() into MHGausEvents (before in the derived classes)
1313 - put fChargeNbins, fChargeFirst, fChargeLast,
1314
1315 * mcalib/MHCalibrationRelTimePix.[h,cc]:
1316 - put fRelTimeNbins, fRelTimeFirst, fRelTimeLast together
1317 into MHGausEvents as fNbins, fFirst and fLast
1318
1319 * mcalib/MHCalibrationRelTimePix.[h,cc]:
1320 - remove Renormalization to time slices. Need to think about
1321 more direct way to implement
1322
1323 * mcalib/MHPedestalCam.[h,cc], mcalib/MHCalibrationCam.[h,cc],
1324 mcalib/MHCalibrationChargeCam.[h,cc],
1325 mcalib/MHCalibrationRelTimeCam.[h,cc]:
1326 - put most of the functionality into the base class MHCalibrationCam
1327 - derived classes overload the functions SetupHists, ReInitHists,
1328 FillHists, FinalizeHists and FinalizeBadPixels.
1329 - functions FitHiGainArrays, FitLoGainArrays, FitHiGainHists,
1330 FitLoGainHists and InitHists can be used from base class.
1331
1332 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationChargePix.[h,cc],
1333 mcalib/MCalibrationRelTimePix.[h,cc]:
1334 - put most of the functionality into the base class MCalibrationPix
1335 - other two classes derive now from MCalibrationPix
1336
1337 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationChargeCam.[h,cc]
1338 mcalib/MCalibrationRelTimeCam.[h,cc]:
1339 - put most of the functionality into the base class MCalibrationCam
1340 - other two classes derive now from MCalibrationCam
1341 - calls to MCalibration*Cam[i] now have to cast!
1342
1343 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
1344 * mcalib/MMcCalibrateCalc.cc, manalysis/MMcCalibrationUpdate.cc,
1345 * mcalib/MCalibrationChargeCalc.cc:
1346 - cast calls to MCalibration*Cam[i]
1347
1348 * manalysis/MGeomApply.cc
1349 - add initialization MCalibrationRelTimeCam
1350 - add intialization of average pixels
1351
1352
1353
1354 2004/04/02: Abelardo Moralejo
1355
1356 * msignal/MExtractSignal3.[h,cc]
1357 - added. Alternative method for signal extraction. Uses sliding
1358 window from event to event, but a common window for all pixels
1359 in an event.
1360
1361 * msignal/Makefile, SignalLinkDef.h
1362 - added MExtractSignal3.
1363
1364
1365
1366 2004/04/02: Markus Gaug
1367
1368 * mbadpixels/MBadPixelsPix.h
1369 - added kRelTimeNotFitted and kRelTimeOscillating to Calibration_t
1370 enum
1371
1372 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationPix.[h,cc],
1373 mcalib/Makefile, mcalib/CalibLinkDef.h:
1374 - two new base classes for general calibration storage containers,
1375 contain average pixel storage functionality
1376
1377 * mcalib/MCalibrationRelTimeCam.[h,cc],
1378 mcalib/MCalibrationRelTimePix.[h,cc]:
1379 - new storage container for the rel. time calibration results, derive
1380 from MCalibrationPix, MCalibrationCam
1381
1382
1383
1384 2004/04/01: Markus Gaug
1385
1386 * msignal/MArrivalTimeCalc.[h,cc]
1387 - set fSaturationLimit as a variable with default (instead of 0xff)
1388
1389 * mcalib/MHCalibrationChargeCam.[h,cc]
1390 mcalib/MCalibrationChargeCam.[h,cc]
1391 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
1392 - add average pixels per sector
1393
1394 * mcalib/MHGausEvents.[h,cc], mcalib/MHCalibrationChargePix.[h,cc],
1395 mcalib/MHCalibrationRelTimePix.[h,cc]:
1396 - moved BypassFit() function to MHGausEvents
1397
1398 * mcalib/MHCalibrationChargeCam.[h,cc]:
1399 - updated and enlarged documentation
1400 - derives now from mcalib/MHCalibrationCam
1401
1402 * mcalib/MCalibrationChargePix.[h,cc]:
1403 - removed flag kLoGainSaturation, because it is already in MBadPixelsPix
1404
1405 * mcalib/MCalibrationCam.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
1406 - new base class for all MHCalibration*Cam object, contains the average
1407 pixel functionality
1408
1409
1410
1411 2004/03/31: Markus Gaug
1412
1413 * mcalib/MHCalibrationChargeCam.[h,cc],
1414 mcalib/MCalibrationChargeCam.[h,cc],
1415 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
1416 - make the average pixel independent on camera geometry, i.e.
1417 one average pixel per MGeomPix::Aidx
1418
1419
1420
1421 2004/03/31: Abelardo Moralejo
1422
1423 * mmc/MMcConfigRunHeader.[h,cc]
1424 - updated to current version (3) in camera program. Added member
1425 fLightCollectionFactorOuter so that we can store the data on
1426 the simulatedlight collection efficiency (light guides +
1427 plexiglas +...) as a function of incidence angle for outer and
1428 inner pixels independently. Added getters for this information
1429 on light collection efficiency.
1430
1431
1432
1433 2004/03/30: Markus Gaug
1434
1435 * mcalib/MHGausEvents.[h,cc],
1436 mcalib/MHCalibrationChargePix.[h,cc],
1437 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
1438 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
1439 mcalib/MHCalibrationChargeBlindPix.[h,cc],
1440 mcalib/MHCalibrationChargePINDiode.[h,cc],
1441 mcalib/MHCalibrationRelTimeCam.[h,cc],
1442 mcalib/MHCalibrationRelTimePix.[h,cc],
1443 mcalib/MHPedestalPix.[h,cc],
1444 mcalib/MHPedestalCam.[h,cc]:
1445 - updated and enlarged documentation
1446
1447
1448
1449 2004/03/30: Abelardo Moralejo
1450
1451 * mmc/MMcFadcHeader.hxx
1452 - updated to current version (4) in camera program.
1453
1454
1455
1456 2004/03/29: Markus Gaug
1457
1458 * manalysis/MSourcePosFromStarPos.cc
1459 - replaced fabs(ival) by TMath::Abs(ival)
1460
1461 * mbadpixels/MBadPixelsPix.h
1462 - adopt treatment of UnCalibrated_t like the one in Unsuitable_t
1463
1464 * mbadpixels/MBadPixelsPix.cc
1465 - put some documentation in the header
1466
1467 * mcalib/MHCalibrationChargeCam.cc
1468 mcalib/MCalibrationChargeCam.cc
1469 mbadpixels/MBadPixelsCam.cc
1470 - adopt to new style in MBadPixelsPix.h
1471
1472 * mcalib/MCalibrationChargeCalc.[h,cc]
1473 mcalib/MCalibrationChargePix.[h,cc]
1474 - move consistency checks from Pix to Calc
1475
1476 * mcalib/MHGausEvents.[h,cc]
1477 - fixed axes for event and fourier spectrum Draw
1478
1479 * mcalib/MHCalibrationChargePix.[h,cc]
1480 mcalib/MHCalibrationChargeCam.[h,cc]
1481 - moved definition of pulser frequency to MHCalibrationChargeCam
1482
1483
1484
1485 2004/03/24: Thomas Bretz
1486
1487 * mbase/MMath.cc:
1488 - now SignificanceLiMa returns 0 in case sum==0
1489
1490
1491
1492 2004/03/23: Thomas Bretz
1493
1494 * mbase/MContinue.cc, mhbase/MH.cc:
1495 - changed a warning message to an inf-message
1496
1497 * mfileio/MReadTree.cc:
1498 - added an additional logging message when adding files to a
1499 chain successfully.
1500
1501 * mbase/MProgressBar.cc:
1502 - fixed initial size
1503
1504 * mastro/MAstro.[h,cc]:
1505 - changed the code for the rotation angle back to its original
1506 shape. The definition I tried to introduced was already
1507 correctly implemented (assuming that sin is the x-component
1508 of the vector I had it wrong in my mind twice, using
1509 atan2(y,x) everywhere I did recognize it...)
1510
1511 * mreport/MReport.cc:
1512 - fixed a bug which caused a crash when the time is not valid
1513
1514 * mhist/MHStarMap.cc, mpointing/MSrcPosCalc.cc:
1515 - fixed: v.Roatete() must be v=v.Rotate()
1516 - MHStarMap no waorks also without MSrcPosCam, MPointingPos
1517 or MObservatory (leaving out the corresponding translations)
1518
1519
1520
1521 2004/03/22: Markus Gaug
1522
1523 * mfileio/Makefile, mimage/Makefile
1524 - mpointing included
1525
1526
1527
1528 2004/03/22: Thomas Bretz
1529
1530 * mpointing/MSrcPosCalc.[h,cc], MSrcPosCam.[h,cc]:
1531 - added
1532
1533 * mastro/MAstro.[h,cc]:
1534 - added code to calculate rotationangle previously in MObservatory
1535 - changed definition of rotation angle such, that it is now
1536 180deg if Ra and Az grid is parallel
1537
1538 * mastro/MAstroCatalog.[h,cc]:
1539 - fixes and enhancements to the display (such as misscalculated
1540 number of grid lines, title display, etc)
1541 - enhancements to the output
1542 - generalized creation of grid - for further usage
1543
1544 * mastro/MAstroSky2Local.[h,cc]:
1545 - replaced calculation of rotation angle by the function in
1546 MAstro
1547
1548 * mastro/MObservatory.[h,cc]:
1549 - small changes to Print output
1550 - moved code for calculation of rotation angle to MAstro
1551
1552 * mbase/MEvtLoop.cc:
1553 - do not output number of events per second if no events processed
1554
1555 * mbase/MParList.cc:
1556 - updated some comments
1557
1558 * mfileio/MCT1ReadAscii.cc, mfileio/MCT1ReadPreProc.cc,
1559 mfileio/MReadRflFile.cc, mraw/MRawFileRead.cc,
1560 mreport/MReportFileRead.cc:
1561 - output error string if file cannot be opened
1562
1563 * mfileio/MReadTree.cc:
1564 - output name of chain which is scanned
1565
1566 * mimage/MConcentration.cc:
1567 - replaced loop by iterator
1568 - removed obsolete (unused) variables
1569
1570 * mimage/MHNewImagePar.[h,cc]:
1571 - fixed display colors
1572
1573 * mpointing/MPointingPos.[h,cc]:
1574 - added member function to calculate rotation angle
1575 - added comments
1576
1577 * mpointing/Makefile:
1578 - added include MAstro
1579
1580 * manalysis/MSrcPosCam.[h,cc]:
1581 - moved to mpointing
1582
1583 * mpointing/MSrcPosCalc.[h,cc]:
1584 - added: Derotates a star in the camera into MSrcPosCam
1585
1586 * mpointing/Makefile, mpointing/PointingLinkDef.h:
1587 - added MSrcPosCam
1588 - added MSrcPosCalc
1589
1590 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1591 - removed MSrcPosCam
1592
1593 * mmain/Makefile:
1594 - added include for mpointing
1595
1596 * manalysis/AnalysisIncl.h:
1597 - removed TVector2
1598
1599 * mbase/MParContainer.h:
1600 - added new abstract virtual member function SetVariables
1601 (to be used in fits)
1602 - addeed some text to class description
1603
1604 * mdata/MData.cc:
1605 - added comment
1606
1607 * mdata/MDataArray.[h,cc], mdata/MDataElement.h,
1608 mdata/MDataList.[h,cc], mdata/MDataMember.h,
1609 mfbase/MFDataMember.[h,cc], mfbase/MFilterList.[h,cc]:
1610 - added SetVariables
1611
1612 * mdata/MDataChain.[h,cc]:
1613 - added support for indexed variables [i]
1614 - added SetVariables
1615
1616 * mdata/MDataValue.[h,cc]:
1617 - added support for variable values (through SetVariables)
1618 - added support for an index
1619 - added SetVariables
1620
1621 * mfbase/MF.[h,cc]:
1622 - removed support for {}. This case is now detected
1623 automatically
1624 - added SetVariables
1625 - added support for expressiond like
1626 "MHillas.fLength<2*MHillas.fWidth"
1627
1628 * mfbase/MFDataChain.[h,cc]:
1629 - added fCond data member
1630 - addednew constructor to support fCond
1631 - added support for new condition type
1632 - adapted Print and GetRule
1633
1634 * mimage/MNewImagePar.[h,cc]:
1635 - added some comments
1636
1637 * mhist/MHStarMap.[h,cc]:
1638 - fixed to use the correct MPointingPos instead of the
1639 deprecated MMcEvt. Use MPointingPosCalc to copy the
1640 pointing position from MMcEvt to MPointingPos
1641
1642 * mbase/MMath.[h,cc]:
1643 - added, which currently only implements calculation of
1644 significance and Li/Ma significance
1645
1646 * mbase/Makefile, mbase/BaseLinkDef.h:
1647 - added MMath
1648
1649
1650
1651 2004/03/19: Markus Gaug
1652
1653 * mcalib/MHCalibrationChargePix.cc
1654 - added some style to the default Draw in order to see the
1655 label and axis titles better
1656
1657 * mcalib/MHCalibrationChargeCam.[h,cc]
1658 - store and display more information on the average pxiels
1659
1660 * mcalib/MCalibrationCam.cc
1661 - the GetPixelContent flag were not correct any more, fixed them
1662
1663 * macros/calibration.C
1664 - fixed GetPixelContent flags
1665 - draw radial profile of the variables
1666
1667 * mjobs/MJCalibration.cc
1668 - fixed GetPixelContent flags
1669 - introduced RadialProfile for some displays
1670 - removed some not so important displays
1671
1672 * manalysis/MGeomApply.cc
1673 - included MCalibrationQECam to be initialized
1674
1675 * mcalib/MCalibrationChargePix.[h,cc],
1676 mcalib/MCalibrationQEPix.[h,cc]:
1677 - replace DefinePixId by SetPixId
1678
1679 * mcalib/MCalibrationChargeCalc.[h,cc]
1680 - added MCalibrationQECam
1681 - cleaned the code up a little
1682 - give more information at the end
1683
1684 * mcalib/MCalibrationChargePix.[h,cc]
1685 - took out fNumLoGainSampels whihc is not needed any more because
1686 conversion is only done in the getters
1687 - Canceled function ApplyLoGainConversion (for same reason)
1688
1689 * msignal/MExtractSignal2.cc
1690 - remove uncommented piece of code
1691
1692 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
1693 - remove warning about pixel with low gain saturation,
1694 now in MBadPixelsPix
1695
1696 * mbadpixels/MBadPixelsPix.[h,cc], mcalib/MCalibrationChargeCam.cc:
1697 - added new flag: kDeviatingNumPhes
1698
1699 * mcalib/MCalibrationChargePix.cc
1700 - check for mean arr. time in last bin replaced by check in last
1701 two bins
1702
1703 * mcalib/MCalibrationChargePix.[h,cc],
1704 mcalib/MCalibrationChargeCam.cc,
1705 mcalib/MHCalibrationChargeCam.cc:
1706 - removed flag kHiGainFitted, kLoGainFitted, since they are
1707 available from MBadPixelsPix
1708
1709 * macros/calibration.C, macros/calibrate_data.C
1710 - a few flags from MCalibrationChargeCam::GetPixelContent were wrong,
1711 corrected them
1712
1713
1714
1715 2004/03/18: Raquel de los Reyes
1716
1717 * macros/DAQDataCheck.C
1718 - macro to check the data from the DAQ system (.raw files).
1719
1720
1721
1722 2004/03/18: Thomas Bretz
1723
1724 * manalysis/AnalysisIncl.h:
1725 - added TVector2
1726
1727 * manalysis/MSrcPosCam.[h,cc]:
1728 - added Getter/Setter using TVector2
1729
1730 * mhbase/MH.cc:
1731 - fixed GetMinimumGT for TH2 and TH3
1732
1733 * mpointing/MPointingPos.h:
1734 - added Getter/Setter for Ra/Dec
1735
1736 * mpointing/MPointingPosCalc.cc:
1737 - fill Ra/Dec into MPointingPos
1738
1739
1740
1741 2004/03/18: Markus Gaug
1742
1743 * mgeom/MGeomCam.[h,cc]
1744 - replace fMaxRadius by a TArrayF of pixel area types
1745 - new TArrayF fMinRadius of each pixel area type
1746 - backward compatibility should be given,
1747 call to GetMaxRadius() returns the value for the whole camera
1748 (which corresponds to the previous value for the Magic camera)
1749
1750 * mimage/MConcentration.cc
1751 - fixed on flog to fLog in order to compile
1752
1753
1754
1755 2004/03/17: Thomas Bretz
1756
1757 * mastro/MAstroCatalog.[h,cc]:
1758 - some simplifications and changes
1759
1760 * mastro/MAstroCatalog.[h,cc]:
1761 - some simplifications and changes
1762
1763 * mastro/MAstroSky2Local.[h,cc]:
1764 - rotation matrix from sky to local coordinates
1765 - added
1766
1767 * mastro/Makefile, mastro/AstroLinkDef.h:
1768 - MAstroSky2Local added
1769
1770 * mraw/MRawEvtPixelIter.cc:
1771 - GetIdxMaxLoGainSample(const Byte_t lofirst) const
1772 accelerated and fixed (the first slice was compared to itself
1773 and the last slice was not taken into account)
1774
1775 * manalysis/MCerPhotAnal2.cc:
1776 - fixed a bug in the new treatment of lo-gains
1777
1778 * mhvstime/MHPixVsTime.cc:
1779 - fixed missing initialization of fTypeErr in constructor
1780
1781 * mimage/MHillas.[h,cc]:
1782 - implemented member function which returns MeanX/Y as TVector2
1783
1784 * mimage/ImageIncl.h:
1785 - added TVector2
1786
1787 * manalysis/MCerPhotEvt.[h,cc]:
1788 - fixed a bug in AddPixels which - in some special circumstances -
1789 cutted pixels with high pixel indices
1790
1791
1792
1793 2004/03/17: Antonio Stamerra
1794
1795 * macros/datatrigcheck.C
1796 - added macro for time and trigger data-checking
1797
1798
1799
1800 2004/03/17: Abelardo Moralejo
1801
1802 * manalysis/MSourcePosfromStarPos.cc
1803 - added cast fabs((Double_t)ival), line 703. Otherwise it does not
1804 compile.
1805
1806 * macros/starmc.C
1807 - added parameter accepted_fraction to select fraction of events
1808 to be processed (useful to make smaller outputs).
1809
1810
1811
1812 2004/03/17: Wolfgang Wittek
1813
1814 * manalysis/MSigmabar.[h,cc]
1815 - correct calculation of sector, which was wrong
1816
1817
1818
1819 2004/03/16: Markus Gaug
1820
1821 * mhist/MHCamera.[h,cc]
1822 - added function RadialProfile which returns a TProfile of the
1823 value along the radius from the camera center
1824
1825
1826
1827 2004/03/16: Oscar Blanch Bigas
1828
1829 * mimage/MConcentration.[h,cc]
1830 - new class for Concentration stuff.
1831 - It computes and stores Concentration 1-8
1832
1833 * mimage/MNewImagePar.[h,cc]
1834 - New Concentration stuff is moved to MConcentration.
1835
1836 * mimage/MHillasCalc.[h,cc], Makefile, ImageLinkDef.h
1837 - Modifications needed to support and compile new
1838 MConcentration class.
1839
1840
1841
1842 2004/03/16: Thomas Bretz
1843
1844 * mjobs/MJ*.[h,cc]
1845 - removed some obsolete comments
1846 - removed projections from Directory (SetDirectory(0))
1847
1848
1849
1850 2004/03/16: Wolfgang Wittek
1851
1852 * manalysis/MSigmabar.[h,cc]
1853 - calculate sigmabar as mean of individual pedestalRMS
1854 instead of sqrt of mean pedestalRMS^2
1855
1856
1857
1858 2004/03/16: Oscar Blanch
1859
1860 * mimage/MNewImagePar.[h,cc]
1861 - New variables members added: fInnerSize, fInnerLeakage[1,2],
1862 fConc[3-8].
1863 - It is only ready for Magic Camera geometry. It has to be done
1864 MGeomCam base.
1865 - The version ahs not been updated since it was done on the
1866 2004/03/10 by Abelardo.
1867
1868
1869
1870 2004/03/15: Markus Gaug
1871
1872 * mcalib/MCalibrationChargePix.[h,cc],
1873 mcalib/MCalibrationChargeCam.[h,cc],
1874 mcalib/MCalibrationChargeCalc.cc:
1875 - conversion from hi- to logain now not applied until the value is
1876 exported outside the class. This is necessary for the error
1877 propagation in the F-Factor method: In the calculation of the
1878 number of Phe, the conversion factors cancel out and do not
1879 enlarge the errors
1880 - pixels with number of phe's outside the range defined by
1881 fPheFFactorRelErrLimit are not any more declared as:
1882 MCalibrationChargePix::IsFFactorMethodValid() == kFALSE ,
1883 but instead as:
1884 MBadPixelsPix::IsSuitableRun(MBadPixelsPix::kUnreliableRun) == kTRUE,
1885 Like this, everybody is allowed to calibrate pixels which give
1886 no reasonable results in the calibration without bothering that
1887 too many pixels fall out. Enjoy!
1888 - In that procedure, the classes passed _internally_ from calculation
1889 of sigmas to calculation of variances which saves all the useless
1890 square rooting.
1891 - took out pointers to MCalibrationChargeBlindPix and
1892 MCalibrationChargePINDiode in MCalibrationChargeCam.
1893
1894
1895
1896 2004/03/15: Abelardo Moralejo
1897
1898 * mmc/MMcEvt.hxx
1899 - added getter function for fZFirstInteraction
1900
1901
1902
1903 2004/03/15: Wolfgang Wittek
1904
1905 * mastro/MObservatory.[h,cc]
1906 - remove bugs in RotationAngle(theta, phi, sin, cos)
1907 replaced
1908 cos = sinl + cosl*cosp /denom;
1909 by
1910 cos = (sinl - cosl*cosp) /denom;
1911
1912
1913
1914 2004/03/15: Thomas Bretz
1915
1916 * mastro/MObservatory.[h,cc]:
1917 - implemented RotationAngle(ra, dec, time)
1918
1919 * mbase/MTask.[h,cc]:
1920 - implemented usage of a TStopwatch to retriev time consumtion
1921 informations
1922 - changed PrintStatistics not to print classes having no
1923 Process() function
1924
1925 * mbase/MTaskList.[h,cc], mfileio/MReadReports.[h,cc]:
1926 - changed PrintStatistics according to changes in MTask
1927
1928 * mraw/MRawEvtHeader.cc:
1929 - added a comment to Fill member function
1930
1931 * manalysis/MCerPhotEvt.[h,cc]:
1932 - added fLut.Set to FixSize and resize fLut by a factor of 2
1933 instead of +1 which acelerates creation of all pixels a lot
1934
1935 * mbadpixels/MBadPixelsPix.cc:
1936 - fixed a typo
1937
1938 * mfilter/MFSoftwareTrigger.cc:
1939 - made statistics output meaning independant of usage of filter!
1940
1941 * mhbase/MFill.[h,cc]:
1942 - added possibility to give tab a different name
1943
1944 * mhist/MHCamera.cc:
1945 - fixed a bug when determin scale for same-option
1946
1947 * mjobs/MJCalibration.cc:
1948 - changed tab names for MFillH
1949
1950 * mjobs/MJExtactSignal.cc:
1951 - added MRawEvtHeader to output
1952
1953 * mbase/MStatusDisplay.[h,cc]:
1954 - changed displayed year
1955 - read and store MStatusArray to and from files
1956
1957 * mfileio/MReadTree.cc:
1958 - enhanced output
1959
1960 * mmain/MCameraDisplay.cc, mmain/MEventDisplay.[h,cc]:
1961 - added preliminary mode to display F1/F2/F3-files
1962
1963 * mbase/MStatusArray.[h,cc]:
1964 - added
1965
1966 * mbase/Makefile, mbase/BaseLinkDef.h:
1967 - added MStatusArray
1968
1969 * mhits/MHCamera.[h,cc], mgui/MHexagon.[h,cc]:
1970 - improved drawing MHCamera with 'same' option
1971
1972
1973
1974 2004/03/13: Markus Gaug
1975
1976 * mcalib/MCalibrationChargeCalc.cc, mcalib/MCalibrationChargeCam.cc,
1977 mcalib/MCalibrationChargePix.[h,cc],
1978 mcalib/MHCalibrationChargeCam.cc,
1979 mcalib/MHCalibrationChargeLoGainPix.cc:
1980 - fixed Low Gain calibration
1981
1982 * mcalib/MHGausEvents.cc:
1983 - changed default fit prob. limit from 0.005 to 0.001
1984
1985 * mbadpixels/MBadPixelsPix.h :
1986 - IsCalibrationResultOK does not ask for FitOK any more
1987
1988 * mcalib/MHCalibrationChargeCam.cc:
1989 - replaced Rel. Err. Limit for outliers in Phe's from 5 sigma to 7
1990
1991 * mraw/MRawEvtPixelIter.[h,cc]:
1992 - function GetIdxMaxLoGainSamples can be called optionally with
1993 offset (because first "loGain" samples are often in reality
1994 hiGain with high values.
1995
1996
1997
1998 2004/03/12: Sebastian Raducci
1999
2000 * manalysis/Makefile
2001 - added mastro in the include directories
2002
2003
2004
2005 2004/03/12: Thomas Bretz
2006
2007 * merpp.cc:
2008 - added 'force' option
2009
2010 * manalysis/MCerPhotAnal2.cc:
2011 - extract pedestal and pedestal rms from lo-gain if hi-gain not
2012 above a certain athreshold
2013
2014 * mastro/MAstroCatalog.[h,c]:
2015 - added text argument to DrawStar
2016
2017 * mbase/MStatusDisplay.cc:
2018 - some small changes to output of SaveAsPS
2019
2020 * mfilter/MFCosmics.cc:
2021 - changed output of filter statistics
2022
2023 * mbadpixels/MBadPixelsTreat.[h,cc]:
2024 - fixed some problems with the code - now it should work like
2025 expected
2026 - added a new member function to be able to change the number
2027 of required neighbors
2028
2029
2030
2031 2004/03/12: Wolfgang Wittek
2032
2033 * manalysis/Makefile
2034 - include 'mastro'
2035
2036 * manalysis/MSourcePosfromStarPos.[h,cc]
2037 - include MObservatory.h
2038 - call member function Rotationangle() of MObservatory
2039
2040
2041
2042 2004/03/12: Markus Gaug
2043
2044 * mjobs/MJCalibration.cc
2045 - updated call in displays to the corr. Cams.
2046
2047 * macros/calibrate_data.C
2048 - macro to study calibrate and study data used in Munich and IFAE
2049
2050
2051
2052 2004/03/12: Antonio Stamerra
2053
2054 * mraw/MRawEvtHeader.[h,cc]
2055 - Added the method GetTriggerID() to decode the trigger pattern.
2056
2057
2058
2059 2004/03/11: Abelardo Moralejo
2060
2061 * mimage/MHillasCalc.cc
2062 - Added some printout in PostProcess, to better express the reasons
2063 for which the reconstruction of some events did not succeed.
2064
2065
2066
2067 2004/03/11: Thomas Bretz
2068
2069 * status.cc:
2070 - updated
2071
2072 * manalysis/MCerPhotAnal2.cc:
2073 - removed an obsolete debug output
2074
2075 * mhist/MHCamera.[h,cc]:
2076 - added same-option to camera display
2077
2078 * mbadpixels/MBadPixelsCalc.[h,cc], mbadpixels/MBadPixelsTreat.[h,cc]:
2079 - implemented functionality of MBlindPixelsCalc2
2080
2081 * mbadpixels/MBadPixelsCam.[h,cc], mbadpixels/MBadPixelsPix.[h,cc],
2082 mbadpixels/MMcBadPixelsSet.cc, mcalib/MCalibrationChargeCalc.cc,
2083 mcalib/MCalibrationChargePix.cc, mcalib/MHCalibrationChargeCam.cc:
2084 - replaced several Set/GetUnsuitable* by a single member function
2085
2086
2087
2088 2004/03/11: Markus Gaug
2089
2090 * mbadpixels/MBadPixelsPix.h
2091 - removed bits about validity of calibration methods
2092 - IsCalibrationResultOK asks also from IsSuitableRun
2093
2094 * mbadpixels/MBadPixelsCam.cc
2095 - updated GetPixelContent
2096 - added Print function
2097
2098 * mcalib/MCalibrationChargeCam.[h,cc]
2099 mcalib/MCalibrationChargePix.h, mcalib/MCalibrationChargeCalc.cc:
2100 - removed pointers to MGeomCam and MBadPixelsCam in MCalibrationChargeCam
2101 - use two loops over pixels in order to determine mean flux of phe;s to
2102 discard pixels far outside the normal distribution
2103
2104 * mcalib/MCalibrate.cc
2105 - added case that no MBadPixelsCam is available.
2106
2107 * mcalib/MHCalibrationChargeCam.cc
2108 - adapted to new MBadPixelsPix::SetUnsuitable function
2109
2110
2111 2004/03/10: Abelardo Moralejo
2112
2113 * manalysis/MCerPhotPix.[h,cc]
2114 - Added member fIsHGSaturated, and setter/getter functions.
2115 Updated class version to 4.
2116
2117 * mcalib/MCalibrate.cc, MCalibrateData.cc
2118 - Added setting of MCerPhotPix.fIsHGSaturated if one or more HG
2119 slices saturate.
2120
2121 * mimage/MNewImagePar.[h,cc]
2122 - Added member fNumHGSaturatedPixels to count the number of pixels
2123 in which high gain saturates. Added getter funciton for it.
2124 Updated class version to 3.
2125
2126
2127
2128 2004/03/10: Markus Gaug
2129
2130 * mcalib/MCalibrationChargeCalc.cc,
2131 mcalib/MCalibrationChargePix.[h,cc],
2132 mcalib/MCalibrationChargeCam.[h,cc]:
2133 - calculation of conversion factor with F-Factor method from
2134 same mean number of photons, derived from weighted mean number
2135 of photo-electrons from inner and outer pixels, respectively
2136
2137 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
2138 - fixed the projections (did only display inner pixels up to now)
2139
2140 * macros/calibration.C
2141 - small bug fixed in display of rel. arrival times
2142 ( used MArrivalTimeCam instead of MHCalibrationRelTimeCam)
2143
2144 * mbadpixels/MBadPixelsCam.cc
2145 - replaced some InitSize(idx) by InitSize(idx+1) in order not to crash
2146 to program when reading from an ascii-file.
2147
2148 * mbadpixels/MBadPixelsCalc.cc
2149 - replaced one SetUnsuitableRun(....) by the new version without
2150 argument.
2151
2152
2153
2154 2004/03/10: Thomas Bretz
2155
2156 * mfilter/MFSoftwareTrigger.[h,cc]:
2157 - changed to support also a predifined number of NN
2158
2159 * mastro/MAstroCatalog.[h,cc]:
2160 - many enhancements
2161 - many speed improvements
2162
2163 * mbadpixels/MBadPixelsPix.[h,cc]:
2164 - fixed
2165
2166
2167
2168 2004/03/10: Ester Aliu
2169
2170 * mtemp/MIslands.[h,cc]
2171 - New MParContainer to hold information about islands
2172 (number of islands, pixels in each Island, Signal/Noise of
2173 each Island).
2174
2175 * mtemp/MIslandCalc.[h,cc]
2176 - New MTask to count and characterize Islands.
2177
2178
2179
2180 2004/03/09: Thomas Bretz
2181
2182 * Makefile.rules:
2183 - replaced *.o by $(...) for building archives
2184
2185 * mjobs/MJCalibration.cc:
2186 - exchanged apply and merge task
2187
2188 * mjobs/MJCalibration.h, mjobs/MJExtractSignal.h, mjobs/MJPedestal.h:
2189 - fixed some const-qualifiers
2190
2191 * mcalib/MHCalibrationChargeBlindPix.cc,
2192 mcalib/MHCalibrationChargeCam.cc,
2193 mcalib/MHCalibrationChargePINDiode.cc
2194 - removed some obsolete output when calling FindCreateObj
2195 - changed some 'not found' output messages to be 'Mars-compliant'
2196 - replaced some gLog by *fLog
2197
2198
2199
2200 2004/03/08: Markus Gaug
2201
2202 * mbadpixels/MBadPixelsPix.h
2203 - small modifications for better readability
2204 - remove Getters for calibration methods
2205 - added flag "UnReliableRun" in fInfo[0]
2206
2207 * mcalib/MHCalibrationChargeCam.cc, mcalib/MCalibrationChargePix.cc:
2208 - fill MBadPixelsPix with UnReliableRun or UnSuitableRun when
2209 calibration does not succeed.
2210
2211 * mcalib/MCalibrationChargeCam.cc
2212 - displaying saturation also for not-valid pixels in GetPixelContent
2213
2214 * msignal/MExtractedSignalCam.[h,cc], msignal/MExtractSignal.[h,cc],
2215 msignal/MExtractSignal2.[h,cc], mananlysis/MHPedestalCam.cc,
2216 mcalib/MCalibrationChargeCalc.[h,cc]:
2217 - in SetUsedFADCSlices, also the window (hi-and logain) is set.
2218 This because MExtractSignal2 set the whole window which was much
2219 bigger than the actually used one. This bug is now removed.
2220
2221
2222
2223 2004/03/08: Thomas Bretz
2224
2225 * merpp.cc:
2226 - fixed a bug in the screen output
2227
2228 * mgeom/MGeomMirror.cc:
2229 - added comment
2230
2231 * mmc/MMcConfigRunHeader.h:
2232 - added member function GetMirrors
2233
2234
2235
2236 2004/03/08: Abelardo Moralejo
2237
2238 * macros/starmc.C, starmcstereo.C, mccalibrate.C
2239 - adapted to m. Gaug's changes: now one MBadPixelsCam containers is
2240 added for each telescope to the parameter list.
2241
2242 * mmain/MEventDisplay.cc, Makefile
2243 - added MBadPixelsCam to par list, and mbadpixels/ to includes.
2244 Necessary due to changes in MCalibrate.
2245
2246
2247
2248 2004/03/06: Markus Gaug
2249
2250 * macros/calibration.C
2251 - adapted call to MHCamera::ProjectionS to the new version
2252
2253 * mcalib/Makefile
2254 - include directory mbadpixels
2255
2256 * manalysis/Makefile
2257 - include directory mbadpixels
2258
2259 * mcalib/MCalibrationChargeCalc.[h,cc]
2260 - include MBadPixelsCam
2261 - remove exclusion of pixels from ascii-file
2262 (now accessible from MBadPixelsCam)
2263
2264 * mcalib/MCalibrationChargePix.[h,cc]
2265 - include MBadPixelsCam
2266
2267 * mcalib/MCalibrationChargeCam.[h,cc]
2268 - include MBadPixelsCam
2269
2270 * mcalib/MHCalibrationChargeCam.[h,cc]
2271 - include MBadPixelsCam
2272 - include one additional MBadPixelsPix for the average inner and
2273 outer pixel, respectively
2274
2275 * mcalib/MHCalibrationChargePix.[h,cc]
2276 - make fSaturated and fPickup a Float_t (for average pixel)
2277
2278 * mbadpixels/MBadPixelsPix.h
2279 - include the CalibrationType_t infos
2280 - exchange "SetUnsuitable" by "SetUnsuitableRun"
2281
2282 * mbadpixels/MBadPixelsCam.cc, mbadpixels/MMcBadPixelsSet.cc:
2283 - exchange "SetUnsuitable" by "SetUnsuitableRun"
2284
2285 * mbadpixels/MBadPixelsCalc.cc:
2286 - exchange "SetUnsuitable" by "SetUnsuitableEvt"
2287
2288 * manalysis/MGeomApply.cc
2289 - remove obsolete MArrivalTime
2290 - add MBadPixelsCam
2291
2292 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc]
2293 - implemented calls to MBadPixelsCam
2294
2295 * macros/calibration.C, macros/bootcampstandardanalysis.C,
2296 macros/pedphotcalc.C
2297 - implemented calls to MBadPixelsCam
2298
2299 * mjobs/MJCalibration.cc
2300 - call to MBadPixelsCam
2301
2302
2303
2304 2004/03/05: Nadia Tonello
2305
2306 * manalysis/MBlindPixelsCalc2.[h,cc], manalysis/AnalysisLinkDef.h,
2307 manalysis/Makefile
2308 - Temporary class added (will be included in mbadpixels/ soon)
2309 - All the functions of MBlindPixelCalc are kept(with small improvements)
2310 - New function added: SetCheckPedestalRms
2311
2312 * manalysis/MCerPhotPix.h
2313 - Status Unmapped added (not include the pixel in the cleaned image)
2314
2315 * mimage/MImgCleanStd.cc
2316 - Checks for Unmapped status added
2317
2318 * mastro/MAstroCatalog.cc, msql/MSQLServer.cc:
2319 - include <stdlib.h> to solve compilation error
2320
2321
2322
2323 2004/03/05: Sebastian Raducci
2324
2325 * msignal/MArrivalTimeCalc.cc
2326 - fixed a little bug (exchanged a - with a + in the Calc() method)
2327
2328
2329
2330 2004/03/05: Markus Gaug
2331
2332 * mcalib/MCalibraitonChargeCalc.cc
2333 - remove some runheader line:
2334 if (runheader->IsMonteCarloRun())
2335 return kTRUE;
2336 which gave always true since this week, don't know why.
2337 - added some information in class description
2338
2339
2340
2341 2004/03/04: Sebastian Raducci
2342
2343 * msignal/MArrivalTimeCalc.cc
2344 - fixed a memory leak (the spline was not deleted...)
2345
2346
2347
2348 2004/03/04: Thomas Bretz
2349
2350 * mgeom/MGeomCam.[h,cc]:
2351 - added new data member fNumAreas
2352 - added new function CalcNumAreas
2353 - increased class version to 3
2354
2355 * mgeom/MGeomCamMagic.cc:
2356 - added setting of area index
2357
2358 * mgeom/MGeomPix.[h,cc]:
2359 - added fAidx data member
2360 - added getter function fAidx
2361 - increased class version to 3
2362
2363 * macros/sectorvstime.C:
2364 - added example of how to plot the evolution of a sector vs time
2365
2366 * mhist/MHVsTime.[h,cc], mhist/MHPixVsTime.[h,cc]:
2367 - moved to mhvstime
2368
2369 * mhvstime/MHSectorVsTime.[h,cc]:
2370 - added
2371
2372 * Makefile:
2373 - added mhvstime
2374
2375 * mhvstime/Makefile, mhvstime/HVsTimeLinkDef.h,
2376 mhvstime/HVsTimeIncl.h:
2377 - added
2378
2379 * mhist/Makefile, mhist/HistLinkDef.h,
2380 - removed MHVsTime
2381 - removed MHPixVsTime
2382
2383 * macros/rootlogon.C, macros/dohtml.C:
2384 - added new directory mhvstime
2385
2386 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
2387 - changes such, that it doesn't crash if signal has no lo-gain
2388 (This might still give wrong results!)
2389
2390 * macros/dohtml.C:
2391 - added pixvstime.C
2392 - added sectorvstime.C
2393
2394 * manalysis/MMcCalibrationUpdate.cc:
2395 - some changes on file consistency check done by Abelardo,
2396 he may comment on it
2397
2398 * mhist/MHCamera.[h,cc]:
2399 - changed to support also dividing the camera in pixels area indices
2400
2401 * mhist/MHEvent.cc:
2402 - minor change
2403
2404 * mjobs/MJPedestal.cc:
2405 - adapted to changes in MHCamera
2406
2407 * mastro/MAstroCatalog.[h,cc]:
2408 - added preliminary catalog
2409
2410 * mastro/Makefile, mastro/AstroLinkDef.h:
2411 - added MAstroCatalog
2412
2413
2414
2415 2004/03/03: Thomas Bretz
2416
2417 * mgeom/MGeomCam.cc:
2418 - give a name and title also if the default constructor is used
2419
2420 * mgeom/MGeomMirror.[h,cc]:
2421 - added member function GetReflection
2422 - added persistent data member fReflector
2423
2424 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, mjobs/MJPedestal.cc:
2425 - fixed a typo in the output
2426
2427 * mraw/MRawFileWrite.cc:
2428 - added the missing '.' to MRawRunHeader. Because of the design of
2429 MReadTree this is backward compatible
2430
2431 * mraw/MRawRunHeader.h:
2432 - removed last change from Abelardo. '>255' is the correct
2433 check for MC files following the definition that all MC files
2434 have run types >255 which was made in the past.
2435
2436 * manalysis/MCerPhotAnal.[h,cc], manalysis/MCerPhotAnal2.[h,cc]:
2437 - created ReInit member function to hold all code (moved from
2438 PreProcess) accessing the run header. The run header is not
2439 available in PreProcess. That it was working before was only
2440 by chance, because the run type is initialized with 65535 which
2441 is != 255 but not >255.
2442
2443
2444
2445 2004/03/03: Sebastian Raducci
2446
2447 * msignal/MArrivalTimeCalc.cc
2448 - The calculation of the arrival times is made only when needed
2449 (when the HalfMax is over the pedestal)
2450
2451 * mtools/MCubicSpline.cc
2452 - Commented out an annoying warn
2453
2454
2455
2456 2004/03/03: Abelardo Moralejo
2457
2458 * mraw/MRawRunHeader.h
2459 - Replaced
2460 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by
2461 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
2462 since the latter is the exact translation of what the function
2463 intends to do. I do not know why, but the display of real data
2464 did not work with the upper line!
2465
2466 * mgeom/MGeomCam.cc
2467 - Undid yesterday change! I do not know why, display completely
2468 fails after that change, both for old and new camera files.
2469 Put back fPixels[i] = new MGeomPix; in constructor.
2470
2471
2472
2473 2004/03/02: Abelardo Moralejo
2474
2475 * mmc/MMcCorsikaRunHeader.[h,cc]
2476 - Added operator [] to get references to the objects in
2477 TObjArray fTelescopes.
2478 - Added Print() function.
2479 - Added GetNumCT() function.
2480 - Replaced
2481 fTelescopes[i]= new MGeomCorsikaCT;
2482 by
2483 MGeomCorsikaCT* dummy = new MGeomCorsikaCT();
2484 fTelescopes.Add(dummy);
2485
2486 * mgeom/MGeomCorsikaCT.[h,cc]
2487 - Added getter functions for telescope coordinates.
2488 - Added Print() function.
2489
2490 * mgeom/MGeomCam.cc => NOTE: this change was undone later!
2491 - Replaced
2492 fPixels[i] = new MGeomPix;
2493 by
2494 MGeomPix* dummy = new MGeomPix();
2495 fPixels.Add(dummy);
2496
2497
2498
2499 2004/03/02: Thomas Bretz
2500
2501 * mcalib/MCalibrateData.cc:
2502 - removed usage of MGeomCam (you have MGeomApply for this!)
2503
2504
2505
2506 2004/03/01: Nadia Tonello
2507
2508 * manalysis/MCerPhotEvt.cc
2509 - TObject *MCerPhotEvtIter::Next() now returns Used pixels
2510 only if fUsedonly=kTRUE, otherwise it returns all the pixels
2511 in the array
2512
2513
2514
2515 2004/03/01: Sebastian Raducci
2516
2517 * msignal/MArrivalTimeCalc.[cc,h]
2518 - now the arrival time is at the half max of the spline:
2519 half max = (maximum - pedestal)/2
2520
2521 * mmain/MEventDisplay.cc
2522 - fixed an include (from MArrivalTime.h to MArrivalTimeCam.h)
2523
2524
2525
2526 2004/03/01: Wolfgang Wittek
2527
2528 * mhist/MHStarMap.[h,cc]
2529 - remove bugs
2530 - change GetRotationAngle() such that it can be called from outside
2531
2532
2533
2534 2004/03/01: Thomas Bretz
2535
2536 * Makefile:
2537 - enhanced all calls to subsequent makes by '-f Makefile' to
2538 make sure the correct Makefile is called
2539
2540 * merpp.cc:
2541 - enhanced interpretation of time
2542 - fixed a bug in determin the file-type
2543
2544 * mbase/MTime.[h,cc]:
2545 - added GetGmst() member function
2546
2547 * mastro/MAstro.[h,cc]:
2548 - added Coordinate2Angle
2549 - added AngularDistance
2550 - implemented UT2GMST
2551 - replaced defined by TMath::Pi()
2552
2553 * mastro/MObservatory.[h,cc]:
2554 - added data members for sin-/cos-component of latitude
2555 - added calculation of rotation angle
2556
2557 * mhist/MHStarMap.[h,cc]:
2558 - changes to use MObservatory member function
2559
2560 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotAnal2.cc,
2561 manalysis/MCerPhotCalc.cc, manalysis/MMcCalibrationUpdate.cc,
2562 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalNSBAdd.cc,
2563 manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc,
2564 mcalib/MCalibrationChargeCalc.cc, mcalib/MMcCalibrationCalc.cc
2565 - changed to use IsMonteCarloRun() now
2566
2567 * manalysis/MMcCalibrationUpdate.cc:
2568 - unified output to log-stream
2569 - replaced sqrt by TMath::Sqrt
2570
2571 * mcalib/MCalibrationChargeCalc.cc:
2572 - unified output to log-stream
2573 - removed .Data() from TString where obsolete
2574 - fixed memory leak using gSystem->ExpandPathName
2575
2576 * mpointing/MPointingPosCalc.cc, mraw/MRawFileWrite.cc:
2577 - adde class name to used kRT*/kTT* enums
2578
2579 * mraw/MRawEvtHeader.h:
2580 - made enum data member of class
2581
2582 * mraw/MRawRunHeader.[h,cc]:
2583 - made kMagicNumber and kMaxFormatVersion a static data
2584 member of the class
2585 - added IsMonteCarloRun member function
2586
2587
2588
2589 2004/02/27: Markus Gaug
2590
2591 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
2592 - put in call to MHCamera::Projection the name of the calling
2593 class, otherwise the projected hsitogram will be overwritten by
2594 an empyt one.
2595
2596 * mcalib/MHCalibrationChargePix.[h,cc],
2597 mcalib/MHCalibrationHiGainChargePix.[h,cc],
2598 mcalib/MHCalibrationLoGainChargePix.[h,cc]:
2599 - histogram name setting and title setting moved to constructor,
2600 Functions Init and ChangeHistId derive directly from
2601 MHcalibrationChargePix
2602
2603 * mcalib/MHCalibrationChargeCam.[h,cc],
2604 mcalib/MCalibrationChargeCam.[h,cc],
2605 mcalib/MCalibrationChargeCalc.[h,cc]:
2606 - introduced "average inner" and "average outer" higain and logain
2607 pixels.
2608
2609
2610
2611 2004/02/27: Raducci Sebastian
2612
2613 * mhist/Makefile
2614 - added mastro in the include list
2615
2616
2617
2618 2004/02/27: Abelardo Moralejo
2619
2620 * mmain/MEventDisplay.cc
2621 - replaced in fill8 obsolete MArrivalTime with MArrivalTimeCam.
2622 - Updated display of MC data: removed MCerPhotCalc, and replaced
2623 it by MExtractSignal+MMcCalibrationUpdate+MCalibrate. Now
2624 MPedPhotCam is filled and all the camera display tabs are shown
2625 correctly (most were not working for MC events since a while
2626 ago).
2627
2628 * mmain/Makefile
2629 - Added mcalib to list of include directories.
2630
2631 * manalysis/MMcCalibrationUpdate.[h,cc]
2632 - Added member variable Bool_t fOuterPixelsScaling, which is
2633 kTRUE by default. If set to kFALSE, MCalibrationCam is filled
2634 such that MCerPhotEvt will later be filled with the signal as it
2635 is, not corrected for the (possibly) different gain of the outer
2636 pixels electronic chain. This option was necessary to allow for
2637 the change in the camera display (see above).
2638
2639 * macros/starmc.C
2640 - added (optional) division of output into two, for use as train
2641 and test samples in g/h separation studies.
2642
2643
2644
2645 2004/02/26: Hendrik Bartko
2646
2647 * macros/dohtml.C
2648 - included the path msignals/
2649
2650
2651
2652 2004/02/26: Abelardo Moralejo
2653
2654 * macros/starmcstereo.C
2655 - changed filters to divide data between train and test sample for
2656 gamma hadron separation studies. Now we use the modulus operator
2657 applied to (Corsika) event number:
2658 MF filter1("{MMcEvt;1.fEvtNumber%2}<0.5");
2659 MF filter2("{MMcEvt;1.fEvtNumber%2}>0.5");
2660 - cleaned up a bit the way the CT coordinates are fed to the task
2661 MStereoCalc.
2662 - Changed default FADC integration range (center range to adapt to
2663 new camera).
2664
2665
2666
2667 2004/02/26: Thomas Bretz
2668
2669 * mhist/MHCamera.cc:
2670 - fixed a function description
2671
2672 * mreport/MReport.cc, mreport/MReportFileRead.cc:
2673 - introduced return case -1
2674
2675 * Makefile.rules:
2676 - remove all dependancy files when calling 'rmdep'
2677
2678 * mbase/MAGIC.h, mmc/MMcEvt.hxx:
2679 - moved ParticleId_t to MMcEvt
2680 - implemented MMcEvt::GetParticleName
2681 - implemented MMcEvt::GetEnergyStr
2682
2683 * mfilter/MFGeomag.cc, mfilter/MFParticleId.cc, mhist/MHCompProb.cc,
2684 mhist/MHEvent.cc, mhist/MHHadronness.cc,
2685 mmontecarlo/MMcTriggerRateCalc.cc, mranforest/MHRanForest.cc:
2686 - fixed usage of ParticleId_t
2687
2688 * msignal/Makefile:
2689 - removed obsolete includes
2690
2691 * mastro/Makefile, mastro/AstroLinkDef.h, mastro/MAstro.[h,cc],
2692 mastro/MObservatory.[h,cc]:
2693 - added
2694
2695 * mbase/MAstro.[h,cc]:
2696 - removed
2697
2698 * mbase/Makefile, mbase/BaseLinkDef.h:
2699 - removed MAstro
2700
2701 * Makefile:
2702 - added mastro
2703 - added msql
2704 - added mfbase
2705
2706 * mtemp/MObservatory.[h,cc], mtemp/MObservatoryLocation.[h,cc]:
2707 - removed
2708
2709 * merpp.cc:
2710 - added Sql support
2711
2712 * mraw/MRawFileRead.h:
2713 - added GetFileName
2714
2715 * msql/Makefile, msql/SqlLinkDef.h, msql/SqlIncl.h,
2716 MSQLServer.[h,cc], MSqlInsertRun.[h,cc]:
2717 - added
2718
2719 * mfilter/MF.[h,cc], mfilter/MFDataChain.[h,cc],
2720 mfilter/MFDataMember.[h,cc], mfilter/MFEventSelector.[h,cc],
2721 mfilter/MFEventSelector2.[h,cc], mfilter/MFRealTimePeriod.[h,cc]:
2722 - moved to mfbase
2723
2724 * mfbase/Makefile, mfbase/FBaseLinkDef.h, mfbase/FBaseIncl.h:
2725 - added
2726
2727 * merpp.cc:
2728 - implemented control of gDebug (root debugging)
2729
2730 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc],
2731 mfileio/MWriteRootFile.[h,cc]:
2732 - implemented CheckAndWrite return value
2733
2734 * mfileio/MWriteRootFile.cc:
2735 - fixed updating already existing branches (eg concatenating report
2736 files)
2737
2738 * macros/dohtml.C, macros/rootlogon.C:
2739 - added mastro
2740 - added mfbase
2741 - added msql
2742
2743 * mraw/MRawEvtHeader.h:
2744 - implemented GetNumTrigLvl1
2745 - implemented GetNumTrigLvl2
2746
2747
2748
2749 2004/02/25: Markus Gaug
2750
2751 * mcalib/MExtractBlindPixel.[h,cc],
2752 mcalib/MExtractPINDiode.[h,cc],
2753 mcalib/MExtractedSignalBlindPixel.[h,cc],
2754 mcalib/MExtractedSignalPINDiode.[h,cc],
2755 mcalib/Makefile, msignal/Makefile, mcalib/CalibLinkDef.h,
2756 msignal/SignalLinkDef.h:
2757 - moved blindpixel and PINdiode extractors to msignal
2758
2759
2760 * mcalib/MCalibrationQECam.[h,cc], mcalib/MCalibrationQEPix.[h,cc]:
2761 - two new classes to hold the quantum efficieny information of the
2762 calibration
2763
2764 * msignal/MArrivalTimeCalc.[h,cc]
2765 - fill now MArrivalTimePix instead of MArrivalTime
2766
2767 * mcalib/MHCalibrationChargeCam.cc
2768 - display only valid pixels for the corr. values in GetPixelContent
2769
2770 * mcalib/MHCalibrationRelTimeCam.cc
2771 - is now filled from MArrivalTimeCam instead of MArrivalTime
2772
2773 * macros/calibration.C
2774 - divided into two macros: calibration.C using the MJPedestal
2775 standard procedure and pedestalstudies.C using the old
2776 procedures
2777
2778 * macros/pedestalstudies.C
2779 - new macro containing the first previous part of calibration.C
2780
2781 * mcalib/MCalibrationChargeBlindPix.h,
2782 mcalib/MCalibrationChargePINDiode.h, mbase/MAGIC.h,
2783 mjobs/MJCalibration.cc:
2784 - definition of PulserColot_t in MAGIC.h.
2785
2786
2787
2788 2004/02/25: Hendrik Bartko
2789
2790 * macros/rootlogon.C
2791 - set the include path also to msignals/
2792
2793 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractSignal2.[h,cc],
2794 manalysis/MExtractedSignalCam.[h,cc],
2795 manalysis/MExtractedSignalPix.[h,cc],
2796 manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc],
2797 manalysis/MArrivalTimeCalc2.[h,cc]:
2798 - removed
2799
2800 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2801 - removed classes mentioned above
2802
2803 * msignal/MExtractSignal.[h,cc], msignal/MExtractSignal2.[h,cc],
2804 msignal/MExtractedSignalCam.[h,cc],
2805 msignal/MExtractedSignalPix.[h,cc],
2806 msignal/MArrivalTime.[h,cc], msignal/MArrivalTimeCalc.[h,cc],
2807 msignal/MArrivalTimeCalc2.[h,cc]:
2808 - added
2809
2810 * msignal/Makefile, msignal/AnalysisLinkDef.h:
2811 - added classes mentioned above
2812
2813 * mfilter/Makefile, mcalib/Makefile, mjobs/Makefile, mmain/Makefile:
2814 - added include msignal
2815
2816
2817
2818
2819 2004/02/25: Wolfgang Wittek
2820
2821 * mcalib/MCalibrateData.[h,cc]
2822 - initialize size for MPedPhotCam
2823
2824
2825
2826 2004/02/24: Wolfgang Wittek
2827
2828 * manalysis/MSourcPosfromStarPos.[h,cc]
2829 - change member function SetSourceAndStarPosition() to expect sky
2830 coordinates in the standard units
2831 - generalize to more than 1 star
2832 - the class is not yet fully tested
2833
2834 * mfilter/MFSelBasic.[h,cc]
2835 - change default values of cuts
2836
2837
2838
2839 2004/02/24: Markus Gaug
2840
2841 * mjobs/MJCalibration.cc, macros/calibration.C,
2842 macros/bootcampstandardanalysis.C, macros/pedphotcalc.C:
2843 - added MCalibrationChargeBlindPix to plist
2844 - added new filling of histograms with MFillH
2845 - changed SetPulserColor to MCalibrationChargeBlindPix and
2846 MCalibrationChargePINDiode
2847
2848 * mcalib/MHCalibrationChargeBlindPix.[h,cc]:
2849 - receives a pointer to MCalibrationChargePINDiode which is filled
2850 with the results and told to calculate the fluxes in the
2851 Finalize function
2852 - is filled via MFillH from MExtractBlindPixel
2853 - SetPulserColor directly in this class
2854
2855 * mcalib/MCalibrationChargeBlindPix.[h,cc]
2856 - new storage container of the blind pxiel resutls, replaces
2857 MCalibrationBlindPix
2858
2859 * mcalib/MCalibrationChargeCalc.[h,cc]:
2860 - does not fill the histograms any more, but does ony the
2861 calculations in the postprocess. No pointer to MExtractPINDidoe
2862 or MExtractBlindPixel any more.
2863
2864 * mcalib/MCalibrationChargePix.cc
2865 - discovered an error in the calculation of phe's in
2866 CalcFFactorMethod(). The average QE was applied twice.
2867 This error had been introduced on 13/02/04
2868 - loosened criterium convFFactorRelErrLimit from 0.1 to 0.2
2869 - CalcFFactor asks for IsChargeValid before calculating anything
2870
2871 * mcalib/MCalibrationChargePINDiode.[h,cc]
2872 - added function SetFluxOutsidePlexiglassAvailable
2873 - SetPulserColor directly in this class
2874
2875 * mcalib/MCalibrationChargeCam.cc
2876 - removed function SetPulserColor from here
2877
2878 * mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationConfig.h,
2879 mcalib/MHCalibrationPINDiode.[h,cc],
2880 mcalib/MCalibrationBlindPix.[h,cc],
2881 mcalib/MHCalibrationBlindPixel.[h,cc]:
2882 - removed since obsolote
2883
2884 * mcalib/MHCalibrationChargePix.cc
2885 - make fPickup an Int_t
2886
2887 * mcalib/MCalibrate.cc
2888 - test validity of every calibration method before retrieving
2889 conversion factors
2890
2891 * mcalib/MHGausEvents.[h,cc]
2892 - add possibility to set fit ranges in call to FitGaus
2893 - make function CreateXaxis protected
2894
2895
2896
2897 2004/02/23: Markus Gaug
2898
2899 * mraw/MRawEvtPixelIter.h
2900 - include GetNumHiGainSamples and GetNumLoGainSamples
2901
2902 * mcalib/MExtractedSignalBlindPixel.h,
2903 mcalib/MExtractBlindPixel.[h,cc]:
2904 - included storage of pedestal
2905
2906 * mcalib/MHGausEvents.[h,cc]
2907 - make the fit functions protected
2908
2909
2910
2911 2004/02/22: Markus Gaug
2912
2913 * mfilter/MFCosmics.[h,cc]
2914 - fMaxNumEmpty changed from absolute number to relative number of
2915 pixels
2916
2917 * mcalib/MHGausEvents.h
2918 - remove the "->" from the pointers which are initialized only
2919 in certain cases. The streamer did not work in case that
2920 MFGausFit was left at the NULL pointer.
2921
2922
2923
2924 2004/02/21: Markus Gaug
2925
2926 * manalysis/MExtractedSignalPix.[h,cc]
2927 - changed variable fIsLoGainUsed to fLoGainUsed
2928 - added function GetNumHiGainSaturated()
2929
2930
2931 2004/02/20: Markus Gaug
2932
2933 * mcalib/MHCalibrationChargeHiGainPix.[h,cc], mcalib/Makefile,
2934 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
2935 mcalib/CalibLinkDef.h
2936 - new class to replace MHCalibrationPixel,
2937 based on MHCalibrationChargePix
2938
2939 * mcalib/MCalibrationChargeCalc.[h,cc]
2940 mcalib/MCalibrationChargeCam.[h,cc]
2941 mcalib/MCalibrationChargePix.[h,cc]
2942 mcalib/MCalibrationChargePINDiode.[h,cc]
2943 mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
2944 mcalib/MCalibrationPINDiode.[h,cc]:
2945 - added the "charge" versions, remove the old ones. The histograms
2946 should be filled in the MH... versions independently of
2947 MCalibrationChargeCalc. This is fully realized for the PIN Didoe
2948 now and will later be so for the pixels and the blind pixel.
2949
2950 * mcalib/MHCalibrationChargePINDiode.[h,cc]
2951 - receives a pointer to MCalibrationChargePINDiode which is filled
2952 with the results and told to calculate the fluxes in the
2953 Finalize function
2954
2955 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc],
2956 mcalib/MMcCalibrationCalc.[h,cc], mjobs/MJCalibration.[h,cc],
2957 manalysis/MMcCalibrationUpdate.[h,cc],
2958 mjobs/MJExtractSignal.[h,cc], manalysis/MGeomApply.cc,
2959 mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C,
2960 macros/bootcampstandardanalysis.C,
2961 macros/pedphotcalc.C:
2962 - replace MCalibrationCam by MCalibrationChargeCam
2963 - replace MCalibrationCalc by MCalibrationChargeCalc
2964
2965
2966
2967 2004/02/19: Markus Gaug
2968
2969 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc,
2970 mcalib/MCalibrate.cc, mcalib/MCalibrateDate.cc,
2971 manalysis/MMcCalibrationUpdate.cc:
2972 - standardized naming of variables containing "Error", this also affected
2973 the calling functions MCalibrate, MMcCalibrationUpdate and MCalibrateData
2974
2975 * mcalib/MCalibrationCam.cc, mcalib/MCalibrationPix.cc,
2976 mcalib/MCalibrationCalc.cc, mcalib/MCalibrate.cc,
2977 mcalib/MCalibrateData.cc, mcalib/MCalibrationConfig.h:
2978 - took out some configuration numbers and put them directly into
2979 the class
2980 - remove completely MCalibrationConfig.h
2981
2982
2983
2984 2004/02/19: Abelardo Moralejo
2985
2986 * mhist/MHEvent.[h,cc]:
2987 - Changed names of Event "types" to make them more descriptive.
2988 Former kEvtSignal is now called kEvtSignalDensity, and indicates
2989 pixel content scaled by area. Added kEvtSignalRaw, which
2990 corresponds to pixel content (with no scaling) in whatever units
2991 (this depends on how the MHEvent object is filled!). The default
2992 constructor initializes type=kEvtSignalRaw.
2993
2994 * mmain/MEventDisplay.cc
2995 - Changed filling of evt1 and evt2. Now they are filled with raw
2996 content of MCerPhotEvt. Since in MEventDisplay, MCerPhotEvt is
2997 still filled uncalibrated (hence in ADC counts), this means that
2998 what will be now shown in Mars' camera display is now the signal
2999 in each pixel without scaling with pixel area. Given that the
3000 default flat fielding is such that equal light density
3001 corresponds to equal absolute signal (in ADC counts), this is
3002 more reasonable, and allows to check for instance how the
3003 relative pixel gains are adjusted by looking at calibration
3004 events. To be FIXED: there is however an "inconsistency" in
3005 MEventDisplay, and it is that MCerPhotEvt is still used to keep
3006 uncalibrated signals. To be replaced by MExtractedSignalCam?
3007
3008
3009
3010 2004/02/19: Thomas Bretz
3011
3012 * manalysis/MCerPhotEvt.h:
3013 - added operator= to MCerPhotEvtIter -- is this correct?
3014
3015 * mhist/MHCamera.[h,cc]:
3016 - added member function to calculate minimum content and
3017 maximum content for a single sector
3018 - Added possibility to get a projection for a single sector.
3019 - GetMinimum/GetMaximum now only takes used pixels into account
3020 (you can request all pixels using a different member function)
3021 - fixed projection (projection only took pixels with contents!=0
3022 instead of 'used' pixels
3023 - Don't call Sumw2() anymore for projection
3024
3025 * mjobs/MJPedestal.cc:
3026 - added MPedestalCam to output again - MPedestalCam was fixed
3027 yesterday
3028 - Added Histograms for the two camera halves
3029
3030
3031
3032 2004/02/18: Markus Gaug
3033
3034 * macros/calibration.C
3035 - fixed a buggy display of the F-Factor method
3036
3037 * mcalib/MCalibrationCalc.cc
3038 - calculate the F-Factor method already in the post-Process
3039
3040 * mcalib/MCalibrationPix.h
3041 - move CalcFFactorMethod to public
3042
3043
3044
3045 2004/02/18: Abelardo Moralejo
3046
3047 * mtools/MCubicSpline.cc
3048 - in Init, corrected initialization of arrays temp and ysd, which
3049 was done with n-1 elements instead of n.
3050
3051 * mgui/MHexagon.cc
3052 - added comment explaining the algorithm.
3053 - changed explicit values of Sin and Cos 60 degrees by const
3054 variables (more readable).
3055
3056
3057
3058 2004/02/18: Hendrik Bartko
3059
3060 * msignal/:
3061 - removed the backup files *~
3062 - removed the object files *.o
3063 - removed the files SignalCint.*
3064
3065 * mgui/MHexagon.cc
3066 - added comment explaining the algorithm.
3067
3068
3069
3070 2004/02/18: Thomas Bretz
3071
3072 * manalysis/MPedestalCam.[h,cc]:
3073 - Changed order of derivements - seems to be VERY important!
3074 - changed GetSize from UInt_t to Int_t which is the type
3075 of TClonesArray::GetSize() !
3076
3077 * mfileio/MReadReports.cc:
3078 - skip trees with no entries
3079
3080 * mgui/MCamEvent.cc:
3081 - added a comment
3082
3083 * mhbase/MFillH.cc:
3084 - in case SetupFill returns kFALSE and kCanSkip is set
3085 Skip task
3086
3087 * mraw/MRawFileRead.cc:
3088 - don't print warning in case of none executions
3089
3090 * manalysis/MArrivalTimeCalc2.cc:
3091 - added some const-qualifiers
3092
3093
3094
3095 2004/02/17: Raquel de los Reyes
3096
3097 * macros/CCDataCheck.C
3098 - Added some improvements in the plots.
3099
3100
3101
3102 2004/02/17: Abelardo Moralejo
3103
3104 * macros/readrfl.C
3105 - Added missing gPad->cd(1), otherwise the display of events was
3106 not updated.
3107
3108 * mgui/MHexagon.cc
3109 - DistanceToPrimitive(Float_t px, Float_t py) Changed check of
3110 whether px,py is inside the pixel or not. Previous algorithm
3111 was just an approximation.
3112
3113
3114
3115 2004/02/17: Raquel de los Reyes
3116
3117 * mcamera/MCameraHV.h
3118 - Now it derives from a MCamEvent class and implemented the
3119 GetPixContent() and DrawPixelContent() functions. Added the
3120 GetMean function to get the mean HV settings of the camera.
3121
3122 * macros/CCDataCheck.C
3123 - Added the HV settings plots.
3124
3125
3126
3127 2004/02/17: Hendrik Bartko
3128
3129 * msignal:
3130 - new: directory for all signal and time extraction classes
3131
3132 * msignal/MArrivalTimeCam.[h,cc], manalysis/Makefile,
3133 msignal/AnalysisLinkDef.h, MGeomApply.cc:
3134 - new: Storage Container for the ArrivalTime in the camera
3135
3136 * msignal/MArrivalTimePix.[h,cc], manalysis/Makefile,
3137 msignal/AnalysisLinkDef.h:
3138 - new: Storage Container for ArrivalTime information of one pixel
3139
3140 * msignal/Makefile, SignalCint.[h,cc], SignalDep.d, SignalIncl.h,
3141 SignalLinkDef.h
3142 - auxiliary files for msignal directory
3143
3144 * manalysis/MArrivalTimeCalc2.[h,cc]:
3145 - added functionality to compute error of the extracted ArrivalTime
3146 - calculated ArrivalTime is stored in MArrivalTimeCam
3147
3148 * manalysis/MGeomApply.cc
3149 - geometry is applied to MArrivalTimeCam
3150
3151 * Makefile:
3152 - directory msignal is included
3153
3154
3155
3156 2004/02/17: Sebastian Raducci
3157
3158 * mtools/MCubicSpline.[h,cc]
3159 - little corrections in minimums evalustion methods
3160 - changed constructors (they require the fadc slices to be const)
3161
3162 * macros/spline.C
3163 - changed according to the MCubicSpline new constructors
3164
3165 * manalysis/MArrivalTimeCalc.[h,cc]
3166 - changed to use the MCubicSpline class intead of the TSpline class
3167 - warning: now the arrival time is again the maximum of the spline,
3168 soon it will be changed to half maximum
3169
3170
3171
3172 2004/02/17: Wolfgang Wittek
3173
3174 * manalysis/MSourcPosfromStarPos.[h,cc]
3175 - new class; calculates the position of the source in the camera from
3176 the position of a star in the camera and puts it into
3177 MSrcPosCam
3178
3179
3180
3181 2004/02/16: Abelardo Moralejo
3182
3183 * mcalib/MMcCalibrationCalc.cc
3184 - Fixed two typos in screen output.
3185
3186
3187
3188 2004/02/16: Markus Gaug
3189
3190 * mcalib/MCalibrationPix.cc
3191 - documentation from David's email added
3192 - EffectiveQE decreased from 0.2 to 0.18 (see documentation)
3193
3194 * mcalib/Makefile, mcalib/CalibLinkDef.h:
3195 - added MExtractBlindPixel and MExtractedSignalBlindPixel
3196
3197 * mcalib/MExtractBlindPixel.[h,cc]
3198 - new signal extractor for the Blind Pixel
3199
3200 * mcalib/MExtractedSignalBlindPixel.[h,cc]
3201 - new container for the extracted signal of the BlindPixel
3202
3203 * mcalib/MCalibrationCalc.[h,cc]
3204 - does not extract signal from Blind Pixel any more, searches
3205 for MExtractedSignalBlindPixel and fills the hists from there
3206
3207 * macros/calibration.C, macros/bootcampstandardanalysis.C,
3208 macros/pedphotcalc.C, mjobs/MJCalibration.cc:
3209 - introduce the blind pixel and PIN diode extraction in the macro
3210
3211 * manalysis/MPedestalCam.h
3212 - changed type of fTotalEntries from ULong_t to UInt_t
3213 - fixed documentation of fTotalEntries
3214
3215 * manalysis/MPedCalcPedRun.h
3216 - changed type of fNumSamplesTot from ULong_t to UInt_t
3217
3218 * mcalib/MHGausEvents.h
3219 - changed type of fCurrentSize from ULong_t to UInt_t
3220
3221 * mcalib/MCalibrationConfig.h
3222 - removed gkConversionHiLo and gkConversionHiLoErr which is now
3223 directly in the class MCalibrationPix
3224
3225
3226
3227 2004/02/16: Thomas Bretz
3228
3229 * manalysis/AnalysisLinkDef.h:
3230 - added missing MCerPhotEvtIter
3231
3232 * merpp.cc:
3233 - added possible usage of database
3234
3235 * star.cc:
3236 - moved source code into new class MJStar - preliminary
3237
3238 * manalysis/MCerPhotPix.cc:
3239 - updated class header
3240 - fixed Print-output
3241
3242 * mbase/MAGIC.h:
3243 - removed definition of MLog
3244
3245 * mbase/MArgs.h:
3246 - removed include of MAGIC.h
3247
3248 * mbase/MLog.h:
3249 - added extern definition of gLog
3250
3251 * mbase/MParContainer.[h,cc]:
3252 - move body of constructors to source file
3253
3254 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
3255 mraw/MRawCrateArray.cc, mraw/MRawCrateData.cc,
3256 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawRead.cc,
3257 mraw/MRawEvtPixelIter.cc, mraw/MRawFileWrite.cc:
3258 - fixed documentation header
3259
3260 * mcalib/MMcCalibrationCalc.[h,cc]:
3261 - fixed documentation header
3262 - fixed usage of FindCreateObj and FindObject
3263 - removed data member to count entries (use histogram instead)
3264 - use TH1 function Integral instead of doing it manually
3265
3266 * mfilter/MFCosmics.cc:
3267 - fixed documentation
3268
3269 * mimage/MHillas.cc, mimage/MImgCleanStd.cc,
3270 mimage/MNewImagePar.[h,cc]:
3271 - replaced for-loops by Iterators
3272
3273 * mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc:
3274 - fixed documentation header
3275 - check return value of MRawRunHeader::ReadEvt
3276
3277 * mraw/mraw/MRawRunHeader.[h,cc]:
3278 - fixed documentation header
3279 - added return value to MRawRunHeader::ReadEvt
3280 - added constant number for max format version - preliminary
3281 (should by a static data member)
3282
3283 * mcalib/MHCalibrationPINDiode.cc:
3284 - do not delete pointers in the destructor which are already
3285 deleted in the base class
3286 - reset histograms in Clear()
3287
3288 * mcalib/MHCalibrationPixel.cc:
3289 - after deletion of instances in Clear() initialize pointer to NULL
3290
3291 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
3292 - fixed usage of logging stream output levels
3293
3294 * manalysis/MPedCalcPedRun.[h,cc]:
3295 - removed obsolete fSignals
3296
3297 - removed obsolete fNumPixels
3298
3299 * manalysis/MPedestalCam.h:
3300 - added '->' to fArray
3301
3302 * mfileio/MWriteRootFile.cc:
3303 - changed some output to make debugging easier
3304
3305 * mjobs/MJCalibration.cc:
3306 - fixed a bug in drawing
3307
3308 * mjobs/MJExtractSignal.cc:
3309 - removed MPedestalCam from MWriteRootFile output.
3310 When creating the branch it crashes - reason unknown I'll
3311 investigate further
3312
3313
3314
3315 2004/02/16: Markus Gaug
3316
3317 * mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C:
3318 - added MHCalibrationRelTimePix
3319
3320 * mcalib/MHCalibrationRelTimePix.[h,cc],
3321 mcalib/MHCalibrationRelTimeCam.[h,cc]:
3322 - new classes to fit and display the relative arrival times.
3323 - filled from MArrivalTime
3324 - need: MFillH("MHCalibrationRelTimeCam","MArrivalTime")
3325
3326 * manalysis/MCalibrationCalc.cc
3327 - take out all uncommented code referring to the relative arrival time
3328
3329 * manalysis/MArrivalTime.h
3330 - changed function GetNumPixels to GetSize
3331
3332 * macros/bootcampstandardanalysis.C, macros/pedphotcalc.C
3333 - included cosmics rejection which was in MCalibrationCalc before
3334
3335
3336
3337 2004/02/14: Markus Gaug
3338
3339 * mcalib/Makefile, mcalib/CalibLinkDef.h:
3340 - added MHCalibrationChargePINDiode
3341
3342 * mcalib/MHCalibrationChargePINDiode.[h,cc]
3343 - new class to fill the PIN Diode histograms. Derives from
3344 MHCalibrationChargePix and is filled with MFillH from the
3345 container MExtractedSignalPINDiode.
3346 Will replace MHCalibrationPINDiode entirely soon.
3347
3348 * mcalib/MHCalibrationChargePix.[h,cc]
3349 - new base class for the calibration charges histogram pixel.
3350 Derives from MH and can be filled with the MH with the MH
3351 functions.
3352
3353 * mcalib/MExtractPINDiode.[h,cc]
3354 - new signal extractor for the PIN Diode
3355
3356 * mcalib/MExtractedSignalPINDiode.[h,cc]
3357 - new container for the extracted signal of the PIN Diode
3358
3359 * mcalib/MCalibrationCalc.[h,cc]
3360 - remove the PIN Diode signal extraction
3361
3362 * manalysis/MHPedestalPix.[h,cc]
3363 - new version of MHPedestalPixel, deriving from MHGausEvents.
3364
3365 * manalysis/MHPedestalPixel.[h,cc]
3366 - old version removed, since obsolete (and erroneous)
3367
3368 * manalysis/MHPedestalCam.[h,cc]
3369 - histogramming part of MPedestalCam now in own class
3370
3371 * manalysis/MPedestalPix.h
3372 - removed include of MHPedestalPixel
3373
3374 * macros/calibration.C
3375 - changed pedestal displays accordingly
3376
3377 * mjobs/MJPedestal.h
3378 - class TCanvas included (did not compile otherwise)
3379
3380 * mhbase/MH.cc
3381 - included call to FindGoodLimits(..) in CutEdges()
3382 - axe from pointer to reference
3383 - "CutEdges" renamed to "StripZeros"
3384
3385 * manalysis/MHPedestalPixel.cc, mcalib/MHCalibrationPixel.cc,
3386 mcalib/MHCalibrationBlindPixel.cc:
3387 - "CutEdges" renamed to "StripZeros"
3388
3389 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
3390 - replaced by the improved version: MHGausEvents.[h,cc]
3391
3392
3393
3394 2004/02/14: Thomas Bretz
3395
3396 * manalysis/MCerPhotEvt.[h,cc]:
3397 - added 'Iterator' facility, this will replace some for-loops
3398 in the near future
3399
3400 * mbase/MTime.[h,cc]:
3401 - added a more powerfull interface to get and interprete the
3402 MTime contents as string
3403 - added a new constructor
3404
3405 * mreport/MReportTrigger.h:
3406 - fixed GetPixContent
3407
3408 * mtools/MCubicCoeff.cc, mtools/MCubicSpline.[h,cc]:
3409 - many small changes to simple details (like order of includes)
3410 - some speed improvements
3411 - many small simplifications
3412 - changed parts of the code to be more C++ like (eg Iterators
3413 instead of for-loops)
3414 - disentangles some if-cases
3415 - replaced some math.h function by TMath::
3416 - removed data-member fN (obsolete with iterators)
3417
3418
3419
3420 2004/02/13: Wolfgang Wittek
3421
3422 * mcalib/MCalibrateData.[h,cc]
3423 - new class;
3424 like MCalibrate, but in ReInit it fills the MPedPhot container
3425 using informations from MPedestal, MExtracteSignalCam and
3426 MCalibrationCam
3427
3428 * mcalib/Makefile, mcalib/CalibLinkDef.h
3429 - added MCalibrateData
3430
3431 * manalysis/MPedestalWorkaround.[h,cc]
3432 - create MMcEvt container and fill with theta = 10.0
3433 - set pedestalRMS = 0. if it is > 10.0
3434
3435 * manalysis/MSupercuts.[h,cc]
3436 - change default values of parameters
3437
3438 * manalysis/MSupercutsCalc.[h,cc]
3439 - change dNOMLOGSIZE from 4.1 to 5.0
3440
3441 * mhist/MHBlindPixels.[h,cc]
3442 - change MPedestalCam to MPedPhotCam
3443
3444 * mhist/MHSigmaTheta.[h,cc]
3445 - automatic binning for pixel number doesn't work
3446 use default binning
3447
3448
3449
3450 2004/02/13: Markus Gaug
3451
3452 * mcalib/MCalibrationPix.[h,cc]
3453 - added variables gkAverageQE, gkAverageQEErr, and fAverageQE,
3454 fAverageQEErr
3455 - gkAverageQE initializes to 0.2 (according to David)
3456 - gkAverageQEErr initializes to 0.02 (dito)
3457 - added new member function: SetAverageQE
3458 - call to GetMeanConversionFFactorMethod returns:
3459 fMeanConversionFFactorMethod/fAverageQE.
3460 - call to GetErrorConversionFFactorMethod returns:
3461 errors of fMeanConversionFFactorMethod and fAverageQEErr added
3462 quadratically
3463
3464 * mcalib/Makefile
3465 - split into two parts one comment line
3466
3467
3468 2004/02/13: Thomas Bretz
3469
3470 * mbadpixels/MBadPixelsTreat.[h.cc]:
3471 - added for new bad pixel treatment
3472
3473 * mbadpixels/Makefile, mbadpixels/BadPixelsLinkDef.h:
3474 - added MBadPixelsTreat
3475
3476 * merpp.cc:
3477 - changed the name of the "DC" tree to "Currents" to make
3478 MReportRead work correctly with this tree
3479
3480 * mbase/MTime.[h,cc]:
3481 - Changed UpDMagicTime to support nanosec instead of millisec
3482 - exchanged Reset() by Clear() not to clear the yy/mm/dd
3483 information away in an eventloop
3484
3485 * mraw/MRawEvtHeader.[h,cc]:
3486 - implemented decoding of the time-stamp for raw-data files
3487 with version>2. Thanks to Marcos.
3488
3489 * mraw/MRawRead.[h,c]:
3490 - pipe file version number to MRawEvtHeader::ReadEvt
3491 - create fake time for file-version<3
3492
3493 * macros/readMagic.C:
3494 - changed to use MInteractiveTask
3495
3496 * mbase/MPrint.cc:
3497 - fixed debugging level of some output
3498
3499 * mhist/MHCamera.[h,cc]:
3500 - fixed handling in AddNotify (necessayr due to change of
3501 inheritance from MCamEvent)
3502 - replaced cout by gLog
3503 - added fNotify to list of cleanups
3504
3505 * mhist/MHEvent.cc, mjobs/MJCalibration.cc,
3506 mjobs/MJPedestal.cc:
3507 - fixed usage of AddNotify
3508
3509 * mfileio/MReadReports.cc:
3510 - use a different way to determin whether the tree is a valid tree,
3511 skip invalid trees
3512
3513 * mfileio/MReadTree.cc:
3514 - added another sanity check at the beginning of PreProcess
3515
3516 * mhbase/MFillH.[h,cc]:
3517 - added bit kCanSkip which skips MFillH in case the necessary container
3518 wasn't found.
3519 - cd into the corresponding canvas before filling the MH
3520
3521
3522
3523 2004/02/12: Markus Gaug
3524
3525 * mbase/MArray.[h,cc]:
3526 - changed name of StripZeros
3527
3528 * mcalib/MHGausEvent.cc:
3529 - corrected call to StripZeros
3530
3531 * mcalib/MCalibrationPix.[h,cc]
3532 - implemented dummy for combined method
3533
3534 * mcalib/MCalibrate.[h,cc]
3535 - implemented a dummy for calibration factor 1. (requested by
3536 Javier Rico)
3537 - implemented combined method
3538 - check for valid methods moved to ReInit
3539
3540 * mcalib/MCalibrationCalc.cc
3541 - removed initialization of non-used nsamples
3542
3543 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.[h,cc],
3544 mcalib/MCalibrationCalc.[h,cc]
3545 macros/calibration.C
3546 - implemented new histograms:
3547 HSinglePheFADCSlices and HPedestalFADCSlices
3548 They are filled with the FADC slice values of either a s.phe.
3549 event or a pedestal event. The decision is taken with the
3550 variable: MCalibrationCalc::fBlindPixelSinglePheCut, to be set
3551 with a setter
3552
3553 * mtools/MFFT.[h,cc]
3554 - PowerSpectrumDensity of TArrayI implemented
3555
3556
3557
3558 2004/02/12: Thomas Bretz
3559
3560 * mbase/MArray.[h,cc]:
3561 - changed argument of CutEdges from pointer to reference
3562
3563 * mgeom/MGeomPix.h:
3564 - fixed calculation of area of pixel. It was too big for a
3565 factor of 2
3566
3567 * mjobs/MJCalibration.cc:
3568 - slight change of name of a MHCamera
3569
3570 * manalysis/MExtractSignal.cc:
3571 - slight change to the creation of the satpixels list
3572
3573 * mcalib/MHCalibrationBlindPixel.cc, mcalib/MHCalibrationPixel.cc,
3574 mcalib/MHGausEvent.cc:
3575 - corrected call to ProjectArray
3576 - corrected call to CutEdges
3577
3578 * mfilter/MFCosmics.[h,cc]:
3579 - small fixes to logging output
3580 - small simplification to return statement
3581 - declared CosmicsRejection const
3582
3583 * mhbase/MH.[h,cc]:
3584 - changed argument of ProjectArray from pointer to reference
3585 - added missing calcualtion of minimum
3586 - removed obsolete SetEntries
3587 - changed SetDirectory from NULL to gROOT
3588
3589
3590
3591 2004/02/12: Javier López
3592
3593 * macros/pointspreadfunction.C
3594 - added new macro that fits with a 2D gaussian the DC spot for an
3595 star. It gives you the RMS of the PSF and the center of the star,
3596 very useful for misspointing studies.
3597
3598
3599
3600 2004/02/11: Hendrik Bartko
3601
3602 * manalysis/MExtractSignal2.cc:
3603 - introduced a validity check for the set-function of the window
3604 size (even number of slices, WindowSize < NumberSlices)
3605
3606 * manalysis/MArrivalTimeCalc2.[h,cc], manalysis/Makefile,
3607 manalysis/AnalysisLinkDef.h:
3608 - new: introduced the calculation of the arrival time as the signal
3609 weighted mean of the time slices in the maximum window
3610
3611
3612
3613 2004/02/11: Markus Gaug
3614
3615 * mcalib/MCalibrationCalc.cc:
3616 - the blind pixel signal extractor introduced one week ago, counted
3617 one FADC slice too little, thus the normalization w.r.t. pedestals
3618 was wrong. Now corrected.
3619
3620 * manalysis/MExtractSignal.cc, manalysis/MExtractSignal2.cc:
3621 - when "WARNING - Lo Gain saturated" occurs, display also the
3622 corr. pixel numbers.
3623
3624 * mbase/MArray.[h,cc]:
3625 - introduced function to cut array edges with zeros.
3626 (Thomas, should we keep it there or move it to another class? )
3627
3628 * mcalib/MCalibrationCalc.[h,cc]:
3629 - new function SetBlindPixelRange to set start and end of FADC slices
3630 used for the blind pixel signal extraction.
3631 - remove fEvents which are not necessary any more after the shift
3632 to MFCosmics.
3633
3634 * mcalib/MHCalibration(Blind)Pixel.[h,cc]:
3635 - show the fourier spectrum now with axes in frequency [Hz] instead
3636 of inverted events.
3637
3638 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
3639 - new base class for all kind of events with variables having a
3640 Gaussian distribution. Will serve as base class for the
3641 existing and new calibration histogram classes.
3642
3643
3644
3645 2004/02/11: Abelardo Moralejo
3646
3647 * mmain/MEventDisplay.cc
3648 - Switched order of MMcPedestalCopy and MCerPhotCalc in tasklist:
3649 MMcPedestalCopy must be executed earlier!
3650
3651
3652
3653 2004/02/10: Raquel de los Reyes
3654
3655 * mhist/MHPixVsTime.[h,cc]:
3656 - Added a default draw function and replaced the TGraph object
3657 by a pointer to a TGraph object.
3658
3659 * mreport/MReportTrigger.h:
3660 - Now it dereives from a MCamEvent class and implemented the
3661 GetPixContent() and DrawPixelContent() functions.
3662
3663 * maccros/CCDataCheck.C:
3664 - An update of the previous macro. New plots: subsystems status and
3665 macrocells trigger.
3666
3667
3668
3669 2004/02/10: Markus Gaug
3670
3671 * mcalib/MCalibrationCam.cc:
3672 - fixed documentation
3673
3674 * mhbase/MH.[h,cc]:
3675 - new function ProjectArray
3676
3677 * mcalib/MHCalibrationPixel.[h,cc],
3678 mcalib/MHCalibrationBlindPixel.[h,cc]:
3679 - use ProjectArray from MH to plot the projection of the fourier
3680 spectrum
3681
3682 * mfilter/MFCosmics.[h,cc], mfilter/Makefile,
3683 mfilter/FilterLinkDef.h:
3684 - new filter removing cosmics, the same as in MCalibrationCalc
3685 where it was removed now.
3686 Call: MFCosmics cosmics;
3687 MContinue cont(&cosmics);
3688 tlist.AddToList(&cont);
3689
3690 * mcalib/MCalibrationCalc.[h,cc]:
3691 - removed cosmics rejection from there
3692
3693 * macros/calibration.C, mjobs/MJCalibration.cc:
3694 - changed cosmics rejection to the filter algorithm
3695
3696
3697
3698 2004/02/09: Markus Gaug
3699
3700 * mcalib/MCalibrationBlindPix.[h,cc]:
3701 - added histogram to display the average in FADC slices of all
3702 single and double phe events
3703
3704 * mcalib/MCalibrationCalc.cc:
3705 - fill histograms of single-phe events with higain and logain
3706 sampls
3707
3708 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationCalc.cc,
3709 mcalib/MCalibrationConfig.h:
3710 - take all pixel areas out of MGeomPix::GetA(), remove all previous
3711 areas
3712 - calculate photon fluxes from blind pixel and PIN diode, use
3713 area only to fill the conversion factors in MCalibrationPix
3714
3715
3716 * mcalib/MJCalibration.cc:
3717 - display of number of photons for Blindpixel and PIN Diode Method
3718 changed to display of photon flux which is the actually
3719 calculated quantity
3720
3721
3722
3723 2004/02/09: Thomas Bretz
3724
3725 * mbadpixels/*:
3726 - added
3727
3728 * Makefile:
3729 - added MBadPixels
3730
3731 * manalysis/MGeomApply.cc:
3732 - fixed class description
3733
3734 * mjobs/MJCalibration.[h,cc], mjobs/MJExtractSignal.[h,cc]:
3735 - added bad pixel treatment
3736
3737 * mjobs/MJPedestal.[h,cc]:
3738 - reorganized order of functions
3739 - removed a nonsense scrren output (some BLABABLA or so)
3740
3741 * mjobs/Makefile:
3742 - added include for mbadpixels
3743
3744 * mmain/MBrowser.cc:
3745 - do not call construtor of TGTReeLBEntry if pic0=0
3746
3747
3748
3749 2004/02/09: Raquel de los Reyes
3750
3751 * mcamera/MCameraLids.h, mreport/MReportCamera.h
3752 - Added the "Get" functions to access the private data
3753 members of the class.
3754
3755
3756
3757 2004/02/09: Markus Gaug
3758
3759 * MMcCalibrationUpdate.cc, MCalibrate.cc, MCalibrationPix.cc,
3760 MCalibrationPix.h:
3761 - replace MCalibrationPix->IsChargeFitValid() by IsChargeValid()
3762 because we can calibrate with the histogram mean and RMS even
3763 if the fit is not OK. Thus, there is a question: IsFitted() and
3764 IsChargeValid(), i.e. does the charge make any sense?
3765
3766 * MCalibrationCam.cc, MCalibrationConfig.h, MCalibrationCalc.cc:
3767 - found serious bug in calculation of conversion factors for the
3768 outer pixels:
3769 GetMeanConversionBlindPixelMethod and
3770 GetMeanConversionPINDiodeMethod
3771 did not correct for the area of the outer pixel, this did only
3772 MCalibrationCam::GetPixelContent which is not used by MCalibrate
3773
3774
3775
3776 2004/02/06: Markus Gaug
3777
3778 * mgeom/MGeomCam.h
3779 - replaced in Comment of fPixRatio:
3780 "ratio between size of pixel idx and pixel 0" by
3781 "ratio between size of pixel 0 and pixel idx"
3782
3783 * manalysis/MPedestalCam.cc
3784 - catch calls to MHPedestalPixel in case that they are not filled
3785 This led previous calls to segmentation violations
3786 - remove include of MHExtractedSignalPix
3787
3788 * manalysis/MHExtractedSignalPix.[h,cc]
3789 - is everything in MHPedestalPixel, so removed it again
3790
3791 * mjobs/MJPedestal.cc
3792 - put the projections into Display()
3793 - correct the input of Display (0: pedestal, 1: pedestalerror,
3794 2: pedRMS, 3: pedRMSerror)
3795
3796 * manalysis/MHPedestalPixel.cc
3797 - increased number of bins in for charges plot
3798
3799 * mtools/MFFT.[h,cc]
3800 - possibility to have PSD directly from TArray
3801
3802 * mjobs/MJCalibration.[h,cc]
3803 - fixed displays
3804 - replaced MExtractSignal by MExtractSignal2
3805
3806 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc],
3807 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationBlindPix.[h,cc],
3808 mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationPINDiode.[h,cc]:
3809 - remove histograms MHChargevsN..., now keep TArrays directly
3810 - check for oscillations for all pixels (and you will not trust
3811 your eyes when you look at the results :-((((
3812
3813 * mcalib/MCalibrationCalc.[h,cc]
3814 - remove ArrivalTime -> go to separate class
3815 - remove BlindPixel and PIN Diode overflow, now handled directly
3816 inside the corr. classes.
3817 - remove SkipTimeFits -> go the arrival time class
3818
3819 * mcalib/MCalibrationCam.h
3820 - new getters for number of photons
3821 - removed timeslicewidth -> go the corr. time containers
3822
3823 * mcalib/MCalibrationCam.cc
3824 - removed times of GetPixelContent
3825 - added OscillationChecks in GetPixelContent
3826
3827 * manalysis/MMcCalibrationUpdate.cc
3828 - remove calpix.SkipTimeFits which is now obsolet
3829
3830 * macros/calibration.C
3831 - all previous changes now in this macro.
3832 - (NB: Thomas, du brauchst in MJCalibration nicht mehr aendern,
3833 das ging diesmal in einem Aufwasch)
3834
3835
3836
3837 2004/02/06: Thomas Bretz
3838
3839 * mhist/MHPixVsTime.[h,cc]:
3840 - changed such that you can set the name of the time container now
3841
3842 * mraw/MRawRunHeader.[h,cc]:
3843 - added GetMaxPixId()
3844
3845 * mraw/MRawEvtData.cc:
3846 - fixed wrong size calculation for fABflags
3847
3848
3849
3850 2004/02/06: Oscar Blanch
3851
3852 * mmc/MFadcDefine.h && mmc/MMcFadcHeader.cxx
3853 - We cahnged the name (and values) of the global variable
3854 MFADC_RESPONSE_AMPLITUDE to MFADC_RESPONSE_INTEGRAL
3855
3856
3857
3858 2004/02/05: Markus Gaug
3859
3860 * mcalib/MHCalibrationPixel.[h,cc]
3861 - put an NDF limit for the fit
3862 - removed all TStrings and replace them by Form(..)
3863 - Check for nan's of all returned fit values
3864
3865 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc:
3866 - reshuffled HiLoGainConversion, calculation of F-Factor method,
3867 - calculation of total F-Factor of the readout.
3868
3869 * mcalib/MCalibrationCam.cc
3870 - include relative times to display with GetPixelContent
3871
3872 * mcalib/MCalibrationCalc.[h,cc]
3873 - flag to skip Hi-Lo Calibration
3874 - Hi-LO Graph not filled any more after overflow of ChargevsN
3875 - fill the blind pixel differently from the rest of pixels
3876
3877 * mcalib/MCalibrate.cc:
3878 - call to const MCalibrationPix &pix replaced by MCalibrationPix &pix
3879
3880 * manalysis/MArrivalTimeCalc.cc
3881 - default step width 100 ps.
3882 - look for half maximum (at rising edge)
3883
3884 * manalysis/MExtractSignal.[h,cc]
3885 - removed uncommented code (arrival time)
3886 - set start byte back by one like it was before TB's changes
3887 (does not affect the calculation of number of FADC slices)
3888
3889 * manalysis/MExtractSignal2.[h,cc]
3890 - removed uncommented code (arrival time)
3891
3892 * manalysis/MHPedestalPixel.[h,cc]
3893 - is now filled with total pedestals (not per slice), but results are
3894 renormalized to values per slice (this is not to screw up with the
3895 pedestal RMS and the derived uncertainties)
3896 - new function Renorm(nslices)
3897
3898 * manalysis/MPedestalCam.[h,cc]
3899 - introduced function Clone() (like proposed by TB)
3900 - call to MHPedestalPixel operator() not const any more
3901 - take out lots of uncommented code
3902 - found bug in initialization of hists. SetupFill is called in
3903 PreProcess, therefore, TObjArray is not yet enlarged there.
3904 Now, InitUseHists is called in Fill
3905 - MHPedestalPixel is now filled with total pedestals (not per slice),
3906 but results are
3907 renormalized to values per slice (this is not to screw up with the
3908 pedestal RMS and the derived uncertainties)
3909
3910 * manalysis/MPedCalcPedRun.cc
3911 - added author
3912 - split calculation of RMS into two steps to make it more clear to
3913 the user
3914
3915 * macros/calibration.C
3916 - found bug introduced two days ago, namely calculating pedestlas with
3917 MExtractSignal2 which is now fixed
3918 - Skip HiLoConversionCalibration
3919
3920
3921
3922 2004/02/05: Abelardo Moralejo
3923
3924 * macros/starmc2.C
3925 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add
3926 for both MMcEvt and MMcRunHeader since these containers are
3927 not present in real data. Name of macro is no longer adequate if
3928 we will use it for calibrated real data (to be changed if so).
3929
3930
3931
3932 2004/02/05: Sebastian Raducci
3933
3934 * mtools/MCubicSpline.[h,cc]
3935 - added
3936 - this class will take the place of the TSpline class to
3937 calculate arrival times
3938
3939 * mtools/MCubicCoeff.[h,cc]
3940 - added
3941 - this class is used by MCubicSpline to store coefficients
3942
3943 * macros/spline.C
3944 - added
3945 - test macro. Shows how to use the MCubicSpline class
3946 - it could be used to test the methods of the Spline class
3947
3948
3949
3950 2004/02/05: Thomas Bretz
3951
3952 * mmain/MBrowser.cc:
3953 - fixed a double deletion of a TGLayoutHints
3954
3955
3956
3957 2004/02/04: Markus Gaug
3958
3959 * mmain/MBrowser.cc:
3960 - corrected TGTReeLBEntry for TGTreeLBEntry
3961
3962
3963
3964 2004/02/04: Thomas Bretz
3965
3966 * manalysis/MExtractSignal2.cc:
3967 - don't allow odd numbers for the window size
3968
3969 * mfilter/MFilterList.cc:
3970 - corrected a wrong logging message
3971
3972 * mmain/MBrowser.cc:
3973 - added '/data/MAGIC' as shortcut in the combo box
3974
3975 * mraw/MRawEvtPixelIter.cc:
3976 - optimized calculation of MaxIdx
3977
3978
3979
3980 2004/02/04: Abelardo Moralejo
3981
3982 * macros/starmc2.C
3983 - removed unnecessary variables BinsHigh, BinsLow
3984
3985
3986
3987 2004/02/04: Markus Gaug
3988
3989 * manalysis/MPedestalCam.[h,cc], manalysis/MPedestalPix.[h,cc],
3990 manalysis/MPedCalcPedRun.[h,cc], manalysis/MHPedestalPixel.[h,cc],
3991 macros/calibration.C:
3992 - histograms are now filled with MFillH as proposed and coded by
3993 Thomas Bretz. Some modifications had to be done, however.
3994 - Class to hold MHPedestalPixel is still MPedestalCam
3995 - MPedCalcPedRun does nothing any more (except from what is was
3996 doing before)
3997
3998 * manalysis/MExtractSignal.cc
3999 - remove uncommented code
4000
4001 * mcalib/MCalibrationCalc.[h,cc]
4002 - modified way to handle histogram overflow: Now flags are set and
4003 ChargevsN histogram is not tried to be filled subsequently
4004
4005
4006
4007 2004/02/03: Markus Gaug
4008
4009 * manalysis/MHExtractedSignalPix.[h,cc]
4010 - added Thomas B. modified version of MHPedestalPixel. Later will
4011 remove MHPedestalPixel
4012
4013 * manalysis/MCalibrationPix.[h,cc], manalysis/MHCalibrationPixel.[h,cc],
4014 manalysis/MCalibrationCam.cc, macros/calibration.C:
4015 - now split completely absolute and relative times. Absolute
4016 times are not fitted, but their histogram mean and rms are
4017 returned.
4018
4019
4020
4021 2004/02/03: Thomas Bretz
4022
4023 * mfileio/MReadTree.cc:
4024 - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
4025
4026 * manalysis/MExtractSignal.[h,cc]:
4027 - moved code to extract the signal from Process to
4028 new member function FindSignal, I left the arrival time
4029 extraction as commented-out code in the code just as a
4030 demonstration to do this very fast.
4031
4032
4033
4034 2004/02/02: Markus Gaug
4035
4036 * manalysis/MPedCalcPedRun.cc
4037 - corrected formulae in Class description
4038
4039 * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
4040 manalysis/MMcCalibrationUpdate.cc:
4041 - calculate relative times and absolute times. Fit only
4042 the relative ones.
4043
4044
4045
4046 2004/02/02: Abelardo Moralejo
4047
4048 * manalysis/MMcCalibrationUpdate.cc, MMcPedestalCopy.cc
4049 - removed file type check (MC or data) from PreProcess since now
4050 run headers are not yet known at that point.
4051
4052 * mcalib/MMcCalibrationCalc.cc
4053 - same as above.
4054
4055 * NEWS
4056 - updated.
4057
4058
4059
4060 2004/02/02: Thomas Bretz
4061
4062 * manalysis/MExtractSignal2.[h,cc]:
4063 - added new task which takes a given number of slices with the
4064 highest integral content as signal.
4065
4066 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
4067 - added MExtractSignal2
4068
4069
4070
4071 2004/01/30: Abelardo Moralejo
4072
4073 * macros/starmc.C
4074 - changed default FADC integration range (more adequate for coming
4075 camera version).
4076
4077 * macros/mccalibrate.C, starmc2.C
4078 - added. First macro transforms input files from camera simulation
4079 into files with pixel data already calibrated in photons. The
4080 second reads in an already calibrated data file and produces an
4081 output file with Hillas parameters. Both together do the same as
4082 starmc.C, but it is convenient to have files containing
4083 calibrated pixel information.
4084
4085
4086
4087 2004/01/30: Thomas Bretz
4088
4089 * mbase/MDirIter.h:
4090 - added GetNumEntries
4091
4092 * mhist/MHEvent.cc:
4093 - added a dynamic_cast from MParContainer to MCamEvent to get the
4094 correct pointer to the correct base-class.
4095
4096 * mbase/MStatusDisplay.cc:
4097 - In EventInfo check whether gPad==0
4098
4099 * mfileio/MReadMarsFile.cc:
4100 - removed reading RunHeaders from PreProcess, this resulted
4101 in strange behaviour of writing RunHeaders
4102 - fixed consistency check for RunType accordingly
4103
4104 * mfilter/MFilterList.cc:
4105 - do not skip adding filter if only a filter with the same name
4106 exists
4107
4108 * mraw/MRawFileRead.cc:
4109 - added an output message if run header is not accessible
4110
4111 * mraw/MRawRunHeader.[h,cc]:
4112 - initialize fRunType to new enum kRTNone
4113
4114 * mfilter/MFGeomag.cc:
4115 - set fResult to kFALSE at the beginning of Process
4116 - according to this removed setting fResult=kFALSE before return
4117 - replaced some float by Float_t
4118 - added some const-qualifiers
4119 - replaced (rig<0.5/pr*R*(r2-r1)+r1) by (rig-r1)*pr<rnd
4120 with rnd = R * (r2-r1)/2 to make sure that we cannot
4121 devide by 0
4122
4123 * manalysis/MPedCalcPedRun.cc:
4124 - added some comments
4125
4126 * Makefile:
4127 - added mjobs
4128
4129 * mjobs/*:
4130 - added
4131
4132 * mbase/Makefile, mbase/BaseLinkDef.h:
4133 - added MRunIter
4134
4135 * mbase/MRunIter.[h,cc]:
4136 - added
4137
4138
4139
4140 2004/01/30: Markus Gaug
4141
4142 * manalysis/MPedestalCam.h
4143 - added function IsUsedHists()
4144
4145 * manalysis/MPedestalCam.cc
4146 - modified GetPixelContent
4147
4148 * manalysis/MPedestalCam.cc, manalysis/MPedCalcPedRun.cc:
4149 - include storage of number of used FADC slices to compare later
4150 the pedestal per slice ( and sigma per slice)
4151 - return relative differences in GetPixelContent
4152
4153 * mcalib/MCalibrationCalc.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc]:
4154 - fBlindPixelId and fPINDiodeId now like in PedestalCam
4155 - fill Blind Pixel with information about its fitted pedestal if
4156 available
4157 - initialize charges histogram with a bigger range
4158 - use pedestal information to constrain the pedestal fit ranges
4159
4160 * manalysis/MHPedestalPixel.cc
4161 - initialize charges histogram with a bigger range
4162
4163 * macros/calibration.C
4164 - SetRange of MExtractSignal to 1,14 (see emails of yesterday)
4165 - apply new GetPixelContents of MPedestalCam (more calculations
4166 and displays of errors, correction for different FADC slice
4167 number)
4168
4169 * manalysis/MExtractSignal.cc
4170 - not access to MArrivalTime any more. The same information is
4171 stored in MRawEvt->GetPixelContent(...)
4172
4173 * manalysis/MCalibrationCalc.cc
4174 - retrieve default arrival time from MRawEvt
4175
4176 * manalysis/MCalibrationBlindPix.cc, manalysis/MCalibrationPix.cc
4177 - check for NaN's in fit results
4178
4179
4180
4181 2004/01/29: Abelardo Moralejo
4182
4183 * mfileio/MWriteFile.h
4184 - added missing declaration of ReInit
4185
4186 * manalysis/MMcCalibrationUpdate.cc
4187 - added call to MCalibrationCam::SetBlindPixelMethodValid(kTRUE)
4188 to adapt to recent changes in MCalibrate.
4189
4190
4191
4192 2004/01/29: Thomas Bretz
4193
4194 * manalysis/MArrivalTime.h, manalysis/MCameraData.h,
4195 manalysis/MCerPhotEvt.h, manalysis/MExtractSignalCam.h,
4196 manalysis/MPedPhotCam.h, manalysis/MPedestalCam.h,
4197 mcalib/MCalibrationCam.h, mcamera/MCameraDC.h,
4198 mraw/MRawEvtData.h, mreflector/MRflEvtData.h:
4199 - split derivement into MParContainer and MCamEvent
4200
4201 * manalysis/MExtractSignalCam.[h,cc]:
4202 - removed obsolete MExtractSignal::ReInit
4203 - added -> to fArray
4204
4205 * mbase/MParList.h:
4206 - added a new bit kIsProcessing
4207
4208 * mbase/MTaskList.cc:
4209 - fixed the handling of kDoNotReset and the bahaviour of
4210 SetReadyToSave, such that it is possible to write all
4211 headers
4212
4213 * mfileio/MWriteFile.cc:
4214 - added ReInit which also calls CheckAndWrite
4215
4216 * mgui/MCamEvent.h:
4217 - does not derive from MParContainer anymore
4218
4219
4220
4221 2004/01/29: Markus Gaug
4222
4223 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
4224 mcalib/MCalibrationConfig.h
4225 - put gkCalibrationBlindPixelId and gkCalibrationPINDiodeId
4226 directly into the corresponding classes.
4227
4228
4229
4230 2004/01/29: Nicola Galante
4231
4232 * mhistmc/MHMcTriggerLvl2.[h,cc]:
4233 - In method MHMcTriggerLvl2::GetHistByName(const TString name)
4234 added string checking to return also
4235 fHistCellPseudoSize, fHistCellPseudoSizeNorm
4236 and fHistCellPseudoSizeEnergy.
4237 - Added inline functions GetHistCellPseudoSize() and
4238 GetHistCellPseudoSizeNorm().
4239
4240
4241
4242 2004/01/28: Javier Rico
4243
4244 * mcalib/MCalibrate.[h.cc]
4245 - include possibility to select the calibration method to be used
4246
4247
4248
4249 2004/01/28: Markus Gaug
4250
4251 * mcalib/MCalibrate.[h.cc]
4252 - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
4253
4254 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
4255 - included flags to indicate if Blind Pixel Method or PIn Diode
4256 method was OK. Up to now, program stopped, if one of the two
4257 methods was chosen but not able to being executed.
4258
4259 * manalysis/MArrivalTimeCalc.cc, manalysis/MExtractSignals.cc,
4260 manalysis/MGeomApply.cc:
4261 - put all missing InitSize(npixels) into MGeomApply
4262
4263 * manalysis/MPedCalcPedRun.[h,cc], manalysis/MPedestalCam.[h,cc],
4264 manalysis/MPedestalPix.[h,cc], manalysis/MHPedestalPixel.[h,cc],
4265 manalysis/Makefile, manalysis/AnalysisLinkDef.h:
4266 - include possibility to fit the pedestals with Gaussian.
4267 - old methods are not affected.
4268 - add new method with MPedCalcPedRun::SetUseHists()
4269
4270
4271
4272 2004/01/28: Abelardo Moralejo
4273
4274 * mcalib/MMcCalibration.cc
4275 - fixed wrong variable type in call to TH1F constructor (number of
4276 bins is now integer), which resulted in a compilation warning.
4277
4278
4279
4280 2004/01/28: Thomas Bretz
4281
4282 * manalysis/MPedestalCam.cc:
4283 - removed unwanted CheckBound from operators. CheckBounds is ONLY
4284 ment for really old MC files and will be removed in the future
4285 anyhow.
4286
4287 * mcalib/MHCalibrationPixel.h:
4288 - removed obsolete include of MFFT
4289
4290 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
4291 manalysis/MPedestalCam.[h,cc]:
4292 - removed use of obsolete MPedestalCam::CheckBounds. This was
4293 a workaround for a 'bug' in very old camera files, which is not
4294 necessary anymore.
4295
4296 * manalysis/MCerPhotAnal2.[h,cc]:
4297 - replaced MPedestalCam by MPedPhotCam
4298
4299 * manalysis/MExtractSignal.cc:
4300 - some small simplification to the signal extraction
4301 - removed some obsolete variables
4302 - replaced for by while
4303 - removed obsolete casts
4304
4305 * mmain/MEventDisplay.cc:
4306 - gave names to the filters
4307 - removed adding MHCamera to fList because it was deleted twice
4308
4309 * mhist/MHCamera.cc:
4310 - fixed usage of fPainter in Paint() - title was not updated
4311 correctly
4312
4313
4314
4315 2004/01/28: Sebastian Raducci
4316
4317 * manalysis/MArrivalTime.[h,cc]:
4318 - removed all the code relative to the cluster evaluation
4319
4320
4321
4322 2004/01/27: Markus Gaug
4323
4324 * manalysis/MPedestalPix.cc:
4325 - initialize default values to 0 instead of -1.
4326
4327 * manalysis/MPedestalCam.[h,cc]:
4328 - include CheckBounds, also in operator[]
4329
4330 * mcalib/MCalibrationCam.[h,cc]:
4331 - apparently, there was a reference to InitSize(UInt_t i) instead
4332 of InitSize(Int_t i), where compiler complained, now changed
4333
4334 * mcalib/MHCalibration*, mcalib/MCalibration*:
4335 - fixed all Clear()'s, Reset()'s, direct intializers
4336
4337
4338
4339 2004/01/27: Thomas Bretz
4340
4341 * mdata/MDataChain.cc:
4342 - added '%' to supported operators
4343
4344
4345
4346 2004/01/26: Nicola Galante
4347
4348 * manalysis/MMcTriggerLvl2.[cc,h]:
4349
4350 - Defined some static constants to avoid ugly "magic numbers"
4351 in arrays: gsNCells, gsNTrigPixels,
4352 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
4353 - Added method
4354 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
4355 which computes compact pixels into a given L2T macrocell.
4356 - Added method
4357 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
4358 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
4359 macrocells
4360 - Added method
4361 MMcTriggerLvl2::GetCellPseudoSize() const
4362 which returns fCellPseudoSize
4363 - Added method
4364 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
4365 which controls whether a pixel belongs to a given L2T cell.
4366 - Added method
4367 MMcTriggerLvl2::GetMaxCell() const
4368 which returns fMaxCell, the cell with the maximum
4369 fCellPseudoSize.
4370
4371
4372
4373 2004/01/26: Markus Gaug, Michele Doro
4374
4375 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
4376 - moved calculation of arrival time from MArrivalTime to
4377 MArrivalTimeCalc. MArrivalTime does not do any Process-job
4378 anymore
4379 - TSpline5 now on stack.
4380 - function to set the stepsize
4381
4382 * mcalib/MHCalibrationBlindPixel.[h,cc]:
4383 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
4384 - implement combined Polya fit and Michele's back-scattered electron
4385 fit
4386
4387 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
4388 mcalib/MCalibrationPINDiode.cc:
4389 - combine FitChargeHiGain and FitChargeLoGain into one function
4390
4391 * macros/calibration.C
4392 - improve double gauss fit a bit
4393
4394
4395
4396 2004/01/26: Thomas Bretz
4397
4398 * mraw/MRawEvtPixelIter.[h,cc]:
4399 - removed member function GetNumPixels. For more details see mantis.
4400
4401 * manalysis/MArrivalTime.[h,cc]:
4402 - reorganized includes
4403 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
4404 definition
4405 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
4406 PROGRAM
4407
4408 * manalysis/MArrivalTimeCalc.[h,cc]:
4409 - reorganized includes
4410 - removed many obsolete code, exspecially copy&paste relicts!
4411 - fixed usage of InitSize
4412 - removed CleanArray. Reset() is called automatically before Process()
4413
4414 * manalysis/MExtractedSignalCam.[h,cc]:
4415 - added SetLogStream
4416 - removed obsolete include MGeomCam
4417 - replaced PrintOut by Print
4418 - added const-qualifiers to all Getters
4419 - fixed documentation
4420
4421 * manalysis/MExtractedSignalPix.[h,cc]:
4422 - replaced PrintOut by Print
4423 - fixed documentation
4424
4425 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
4426 - replaced memset by Reset()
4427
4428
4429
4430 2004/01/24: Abelardo Moralejo
4431
4432 * macros/starmcstereo.C
4433 - Added. Example of how to run the analysis chain for MC files
4434 containing simulation of stereo systems of 2 telescopes.
4435
4436 * mcalib/MCalibrate.cc
4437 - Added check that value of signal from MExtractedSignalPix is not
4438 the default (error) value. In such a case, the signal in
4439 MCerPhotEvt is now set to 0. Before, all pixels got very high
4440 values in MCerPhotEvt in case the MRawEvtData object for the
4441 event was missing in the file. This happened in MC files, in
4442 which in some circumstances an event is written without the
4443 pixel information (for instance, when running stereo simulations
4444 the pixel data is missing for non-triggered telescopes, but the
4445 event headers are present).
4446
4447
4448
4449 2004/01/23: Markus Gaug
4450
4451 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
4452 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
4453 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
4454 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
4455 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
4456 - use MArrivalTime for Storage (or calculation) of time
4457 in MExtractSignal
4458 - pass from TH1I histos to TH1F for times
4459
4460 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
4461 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
4462 mcalib/MCalibrationCalc.[h,cc]:
4463 - clean up setters
4464 - pass to bit-fields for all flags
4465
4466 * mcalib/MCalibrationCam.cc
4467 - exclude Blind Pixel from Camera display
4468 - do not fill &val when return kFALSE
4469
4470 * macros/calibration.C
4471 - include functions to exclude the blind pixel,
4472 calculation of times and quality checks
4473
4474
4475
4476 2004/01/23: Abelardo Moralejo
4477
4478 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
4479 - Added support (using AddSerialNumber) for stereo MC files.
4480
4481
4482
4483 2004/01/23: Thomas Bretz
4484
4485 * mbase/MAstro.cc:
4486 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
4487
4488 * mreport/MReport*.[h,cc]:
4489 - changed all classes to return Int_t instead of Bool_t in
4490 InterpreteBody
4491 - changed MReportFileRead such, that a wrong line results in
4492 skipping the line instead of abort reading.
4493
4494 * manalysis/MExtractSignal.cc:
4495 - do not print information for each pixel - it's too much.
4496
4497 * mbase/MStatusDisplay.cc:
4498 - when reading a status display do not display tabs with
4499 the same name than one which is already existing.
4500
4501 * mcalib/MCalibrate.cc:
4502 - directly store pointer to pixel when setting saturation flag
4503
4504 * mcamera/MCameraDC.cc:
4505 - fixed some comments
4506
4507 * mhist/MHCamEvent.cc:
4508 - fixed a crash when no geometry was available
4509
4510 * mhist/MHCamera.[h,cc]:
4511 - removed obsolete member function SetPix
4512
4513 * mbase/MStatusDisplay.[h,cc]:
4514 - added EventInfo member function
4515 - implemented preliminary redirection of GetObjectInfo to
4516 StatusLine2 -> An own status line for this is missing
4517
4518 * manalysis/MExtractSignal.[h,cc]:
4519 - implemented StreamPrimitive
4520 - changed deafults to be static const data members
4521
4522 * manalysis/MGeomApply.[h,cc]:
4523 - implemented StreamPrimitive
4524
4525
4526
4527 2004/01/23: Abelardo Moralejo
4528
4529 * manalysis/MMcCalibrationUpdate.[h,cc]
4530 - Added check to guarantee that the FADC simulation parameters of
4531 all read files (those used for calibration and those analyzed)
4532 are the same.
4533 - Added missing support for analysis of stereo files.
4534
4535 * mcalib/MMcCalibrationCalc.cc
4536 - Removed obsolete FIXME comment.
4537 - Added missing support for analysis of stereo files.
4538
4539
4540 2004/01/23: Raquel de los Reyes
4541
4542 * macros/CCDataCheck.C
4543 - Added the temperature distribution of the optical links
4544 and the plots of the LV power supplies.
4545 * mcamera/MCameraLV.h
4546 - Added the "Get" functions to access the private data
4547 members of the class.
4548
4549
4550 2004/01/22: Abelardo Moralejo
4551
4552 * manalysis/MMcCalibrationUpdate.[h,cc]
4553 - Now ratio of high to low gain is taken from MCalibrationCam if
4554 it existed previously in the parameter list, instead of being
4555 read again from the MMcFadcHeader. Removed Setter function for
4556 fADC2PhInner, no longer necessary. Fixed error regarding the
4557 pedestal conversion to photons (did not read conversion factor
4558 from preexisting MCalibrationCam object).
4559
4560 * mcalib/MMcCalibrationCalc.cc
4561 - Changed parameters of the histogram, and also the quantity being
4562 histogrammed. Check that input data come from a noiseless camera
4563 file before proceeding to do the calibration. Introduced lower
4564 size in cut for calibration. Now rhe calibration constant is not
4565 calculated from the mean of photons/ADC counts, but from the peak
4566 of the histogram.
4567
4568 * macros/starmc.C
4569 - Introduced new scheme. Now there are two loops over two different
4570 sets of files. First loop calculates the calibration constants,
4571 second one does the analysis. Introduced comments. Now the
4572 histogram used in the light calibration is written to the output
4573 file.
4574
4575
4576
4577 2004/01/22: Thomas Bretz
4578
4579 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
4580 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
4581 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
4582 mcalib/MCalibrationBlindPixel.[h,cc],
4583 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
4584 mcalib/MHCalibrationBlindPixel.[h,cc],
4585 mcalib/MHCalibrationPINDiode.[h,cc]:
4586 - cleaned up includes
4587
4588
4589
4590 2004/01/22: Raquel de los Reyes
4591
4592 * macros/CCDataCheck.C
4593 - macro to check the data from the central control (.rep files).
4594
4595
4596
4597 2004/01/22: Markus Gaug
4598
4599 * macros/calibration.C
4600 - made MStatusDisplay 3 bit smaller
4601
4602 * manalysis/MExtractSignal.cc
4603 - put fSignals->SetUsedFADCSlices into PreProcess
4604
4605 * manalysis/MPedCalcPedRun.cc
4606 - calculate PedRMS as RMS of the sums, later renormalized to units
4607 of RMS/slice (eliminate the wrong effect of odd and even slices)
4608
4609 * mcalib/MCalibrationCalc.cc
4610 - if bit SkipBlindPixelFit is set, now number of photons outside
4611 plexiglass is not intended to be calculated any more (previous
4612 bug)
4613 - exclude excluded pixels in eventloop
4614
4615 * mcalib/MHCalibrationBlindPixel.[h,cc]
4616 - move functions to pointer again (otherwise, Clone will give
4617 strange results)
4618
4619
4620
4621 2004/01/21: Abelardo Moralejo
4622
4623 * mcalib/MMcCalibrationCalc.[h,cc]
4624 - Added. First version of the task intended to calculate the
4625 conversion factors from ADC counts to photons in the MC. It has
4626 a different aim than the recently renamed class
4627 "MMcCalibrationUpdate" (which takes care that the correct
4628 pedestals and conversion factors are supplied to each event, but
4629 does not really calculate anything).
4630
4631 * mcalib/Makefile, CalibLinkDef.h
4632 - Added new class MMcCalibrationCalc
4633
4634 * manalysis/MMcCalibrationUpdate.[h,cc]
4635 - Now the container MCalibrationCam is not created or modified if
4636 it is found that one such container already exists in the
4637 Parameter list (from a previous calibration).
4638
4639
4640
4641 2004/01/21: Thomas Bretz
4642
4643 * mraw/MRawRead.cc:
4644 - restore the fake time for all runs (current time stamp in
4645 the data seems to be toally nonsense)
4646
4647 * mraw/MRawEvtHeader.cc:
4648 - removed decoding of real time (current time stamp in the data
4649 seems to be toally nonsense)
4650
4651
4652
4653 2004/01/21: Abelardo Moralejo
4654
4655 * mmc/MMcEvt.hxx
4656 - Uncommented 6 Getter functions (those regarding the number of
4657 photons surviving the different stages of simulation).
4658
4659 * manalysis/MMcCalibrationUpdate.[h,cc]
4660 - Added (see below).
4661
4662 * manalysis/MMcCalibrationCalc.[h,cc]
4663 - Removed: changed name of this class to MMcCalibrationUpdate,
4664 which is more representative of what it really does. Moved
4665 the filling of the MCalibrationCam container from Process to
4666 ReInit, since it does not change on an event by event basis.
4667 Simplified PreProcess (MCalibrationCam was searched for twice).
4668 Updated class description and comments.
4669
4670 * manalysis/Makefile, AnalysisLinkDef.h
4671 - Adapted to change above
4672
4673 * macros/starmc.C
4674 - Adapted to change above. Changed also task instance name from
4675 mccalibcalc to mccalibupdate.
4676
4677
4678
4679 2004/01/21: Raquel de los Reyes
4680
4681 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
4682 and mcamera/MCameraCalibration.h
4683 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
4684 the private data members of the class.
4685
4686
4687
4688 2004/01/20: Thomas Hengstebeck
4689
4690 * mranforest/MRanForestCalc.[h,cc]
4691 - Added member functions Grow (training of RF) and Fill (reading in
4692 trained forest from file) which simplify macros.
4693 One just needs to call them instead of using MRanForestGrow and
4694 MRanForestFill (and the related training and fill loops) in a
4695 macro.
4696
4697
4698
4699 2004/01/20: Abelardo moralejo
4700
4701 * manalysis/MMcCalibrationCalc.cc
4702 - removed call to MCalibrationPix::SetPedestal, which was not
4703 needed.
4704
4705
4706
4707 2004/01/20: Thomas Bretz
4708
4709 * Makefile:
4710 - replaced 'make' by '$(MAKE)'
4711
4712 * Makefile.rules:
4713 - added Makefile itself to dependencies
4714
4715 * mbase/MTask.cc:
4716 - added comment about ReInit
4717
4718 * mhbase/MH.cc:
4719 - do not clear pad in DrawClone if 'same' option given
4720
4721 * mhist/MHVsTime.cc:
4722 - evaluate 'same' option
4723
4724 * mfileio/MReadCurrents.[h,cc]:
4725 - obsolete, removed
4726
4727 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
4728 - added some comments
4729
4730
4731
4732 2004/01/20: Abelardo moralejo
4733
4734 * mcalib/MHCalibrationPINDiode.cc
4735 - Added call to SetDirecory(0) for histograms fHErrCharge,
4736 fHPCharge, fHPTime.
4737
4738 * manalysis/MCerPhotPix.h:
4739 - Changed position of declaration of fIsSaturated to be the last
4740 private variable. Otherwise, since in the constructor it is
4741 initialized in the last place, a warning is displayed upon
4742 compilation in some systems.
4743
4744
4745
4746 2004/01/20: Markus Gaug
4747 * mcalib/Makefile, manalysis/Makefile:
4748 - include directory ../mtools
4749
4750 * mtools/MFFT.[h,cc]
4751 - class inherits from TObject now
4752
4753
4754
4755 2004/01/19: Markus Gaug
4756
4757 * mcalib/MHCalibrationBlindPixel.[h,cc]
4758 - fixed a bug in fFitLegend due to which program crashed by calls
4759 to DrawClone
4760 - Modified way to change the fit function
4761
4762 * mcalib/MHCalibrationPixel.[h,cc]
4763 - reordered function calls
4764 - removed SetupFill
4765
4766 * mcalib/MHCalibrationPINDiode.h
4767 - reordered function calls
4768
4769 * mcalib/MCalibrationPix.[h,cc]
4770 - limits to define fFitValid now as variables in class
4771
4772 * mcalib/MCalibrationCam.[h,cc]
4773 - reordered function calls
4774 - incorporate option to exclude pixels
4775
4776 * mcalib/MCalibrationBlindPix.h
4777 - Modified way to change the fit function
4778
4779 * mcalib/MCalibrationCalc.[h,cc]
4780 - Modified way to change the fit function
4781 - incorporate option to exclude pixels from configuration file
4782
4783 * macros/calibration.C
4784 - Modified way to change the fit function
4785 - incorporate option to exclude pixels from configuration file
4786
4787
4788
4789 2004/01/19: Javier Rico
4790
4791 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
4792 - Added documentation of member functions
4793
4794
4795
4796 2004/01/19: Abelardo Moralejo
4797
4798 * manalysis/MCerPhotPix.[h,cc]
4799 - Added fIsSaturated to flag whether low gain of the pixel is
4800 saturated. Added corresponding getter and setter functions.
4801 Updated ClassDef to version 2.
4802
4803 * mcalib/MCalibrate.cc
4804 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
4805 one low gain FADC slice is saturated.
4806
4807 * mimage/MNewImagePar.[h,cc]
4808 - Added new member variable fNumSaturatedPixels to count how many
4809 pixels were saturated. Updated ClassDef to version 2.
4810
4811
4812
4813 2004/01/19: Thomas Bretz
4814
4815 * manalysis/MPedPhotCalc.[cc,h]:
4816 - fixed order of includes
4817 - removed obsolete forward declarations
4818 - removed obsolete data member fNumPixels (stored already twice in
4819 the two TArrayF)
4820 - fixed some small bugs in the documentation
4821
4822 * manalysis/MPedCalcPedRun.cc:
4823 - updated my eMail address
4824
4825
4826
4827 2004/01/19: Javier Rico
4828
4829 * macros/dohtml.C, NEWS
4830 - include some missing info
4831
4832
4833
4834 2004/01/19: Abelardo Moralejo
4835
4836 * manalysis/MExtractedSignalPix.h
4837 - added GetNumLoGainSaturated()
4838
4839
4840
4841 2004/01/19: Markus Gaug
4842
4843 * macros/dohtml.C
4844 - include calibration.C
4845
4846 * manalysis/MExtractSignal.cc
4847 - warning of logain saturation now only once per event (out of loop)
4848
4849 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
4850 - new Flag fExcluded to indicate if pixel has been excluded from
4851 further analysis
4852
4853
4854
4855 2004/01/16: Javier Rico & Pepe Flix
4856
4857 * manalysis/MPedPhotCalc.[cc,h]
4858 - added
4859 - new class for the evaluation of pedestals in units of photons
4860 using the extracted signal from pedestal runs and calibration
4861 constants defined in MCalibrate
4862
4863 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
4864 - added entries for MPedPhotCalc
4865
4866 * macros/pedphotcalc.C
4867 - added
4868 - example on how to use MPedPhotCalc task
4869
4870
4871
4872 2004/01/16: Markus Gaug
4873
4874 * mcalib/MCalibrationFits.h
4875 - removed and incorporated in MHCalibrationBlindPixel.h
4876
4877 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
4878 mcalib/MCalibrationBlindPix.h:
4879 - incorporate Fit functions
4880 - fixed a bug due to which DrawClone crashed when class was used
4881 in a compiled macro
4882
4883 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
4884 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
4885 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
4886 mcalib/MHCalibrationPixel.cc:
4887 - fixed the warns and errs in fLog's
4888
4889
4890
4891 2004/01/16: Abelardo Moralejo
4892
4893 * manalysis/MMcCalibrationCalc.cc
4894 - TMath::Max() is no longer used because it did not compile in some
4895 systems for unkown reasons. I replaced it by a safer (and may be
4896 slower) code.
4897 - Added calpix.SetFitValid();
4898
4899 * mhist/MHEvent.cc
4900 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
4901 be 1 in case of RMS:
4902 case kEvtPedestalRMS:
4903 fHist->SetCamContent(*(MCamEvent*)par, 1);
4904
4905
4906
4907 2004/01/15: Abelardo Moralejo
4908
4909 * macros/starmc.C
4910 - Added. Version of star showing new chain to get Hillas
4911 parameters (with Size calibrated in photons) from MC files.
4912
4913
4914
4915 2004/01/15: Javier Rico
4916
4917 * manalysis/MPedCalcPedRun.[h,cc]
4918 - optimize the running time
4919 - add (some) documentation
4920 - correct treatment for the case of several input files
4921
4922 * macros/pedvsevent.C
4923 - added
4924 - draw pedestal mean and rms vs event# for input pixel# and run
4925 file, and compares them to the global pedestal mean and rms
4926
4927
4928
4929 2004/01/15: Raquel de los Reyes
4930
4931 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
4932 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
4933 functions to compute the estimation of the error of the
4934 mean. It can be done calling to the function
4935 MCamEvent::SetBit(MHCamera::kVariance) in the macro
4936
4937
4938
4939 2004/01/15: Markus Gaug
4940
4941 * mhist/MHCamera.[h,cc]
4942 - incorporate Thomas's changes
4943 - replace void CreateProjection() by TH1D *Projection(const char*)
4944
4945 * macros/calibration.C
4946 - replace MHCamera->Draw("proj") by MHCamera->Projection()
4947 - produce better fits to the projection
4948
4949 * manalysis/MSimulatedAnnealing.[h,cc],
4950 mhist/MHSimulatedAnnealing.[h,cc]:
4951 - moved to directory mtools
4952 - MSimulatedAnnealing now inherits from TObject
4953
4954 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
4955 mhist/Makefile, mhist/HistLinkDef.h:
4956 - removed MSimulatedAnnealing
4957 - removed MHSimulatedAnnealing
4958
4959 * mtools/Makefile, mtools/AnalysisLinkDef.h:
4960 - added MSimulatedAnnealing
4961 - added MHSimulatedAnnealing
4962
4963
4964
4965 2004/01/15: Thomas Bretz
4966
4967 * manalysis/AnalysisLinkDef.h:
4968 - removed MCurrents
4969
4970 * mhist/MHCamera.[h,cc]:
4971 - added member function Projection
4972 - removed fYproj
4973
4974 * mreport/MReport*.*:
4975 - added more comments
4976
4977
4978
4979 2004/01/14: Markus Gaug
4980
4981 * mtools/MFFT.[h,cc]
4982 - new class to perform Fast Fourier Transforms
4983
4984 * mtools/Makefile
4985 * mtools/ToolsLinkDef.h
4986 - include MFFT
4987
4988 * manalysis/MExtractedSignalCam.h
4989 - removed variables fNumHiGainSamples and fNumLoGainSamples
4990 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
4991
4992 * manalysis/MExtractSignal.cc
4993 - updated call to SetUsedFADCSlices
4994
4995
4996
4997 2004/01/14: Abelardo Moralejo
4998
4999 * manalysis/MMcCalibrationCalc.cc:
5000 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
5001 This can happen (depending on camera simulation parameters), and
5002 rms = 0 later resulted in the pixel being eliminated in the
5003 image cleaning.
5004
5005
5006
5007 2004/01/14: Thomas Bretz
5008
5009 * Makefile:
5010 - replaced old style Makefile.depend by directory specific
5011 dependancy files
5012
5013 * Makefile.rules:
5014 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
5015 - added rule to make dependency files
5016 - added rule to remove dependancy files.
5017 - added rmdep as prerequisite to clean
5018 - include dependency file
5019
5020 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
5021 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
5022 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
5023 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
5024 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
5025 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
5026 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
5027 mtools/Makefile:
5028 - removed clean-rule, use the one in Makefile.rules instead
5029
5030 * mreport/Makefile, mreport/ReportLinkDef.h:
5031 - added MReportHelp
5032
5033 * mreport/MReportFileRead.cc:
5034 - moved code from MReportHelp to new file
5035 - removed usage of MReport class completely
5036
5037 * mfilter/MFGeomag.[h,cc]:
5038 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
5039 - changed the second loop from 0->1151 to 1152->2304
5040 - removed dummy arrays used for reading
5041 - output filename in case of 'file not found'
5042 - removed obsolete data members
5043 - removed obsolete Init function
5044 - removed forbidden underscore from member variable
5045 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
5046
5047 * mbase/MStatusDisplay.[h,cc]:
5048 - added new member function Open
5049 - added new menu entry kFileOpen
5050 - changed UpdatePSheader algorithm (the old one was much too slow)
5051
5052 * manalysis/MCurrents.[h,cc]:
5053 - removed (old outdated)
5054
5055 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
5056 - removed MCurrents
5057
5058
5059
5060 2004/01/14: Wolfgang Wittek
5061
5062 * macros/ONOFFAnalysis.C:
5063 - current version
5064
5065 * mhist/MHSigmaTheta.[h,cc]:
5066 - replace MPedestalCam by MPedPhotCam
5067
5068 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
5069 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
5070 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
5071 - replace MPedestalCam by MPedPhotCam
5072
5073 * manalysis/MPedPhotPix.[h,cc]
5074 - uncomment SetRms()
5075
5076
5077
5078 2004/01/13: Markus Gaug
5079
5080 * manalysis/MExtractSignal.h
5081 - seems that the reduced light intensity of the CT1 Pulser
5082 results in broader pulses -> Set Default time slices to [3,10]
5083
5084 * mhist/MHCamera.cc
5085 - make Stat Window in option 'proj' bigger
5086 - add comment line at beginning of Draw()
5087
5088 * mcalib/MHCalibrationBlindPixel.[h.cc]
5089 - add Function DrawClone()
5090 - fix bug in calculation of integral (GetIntegral("width"))
5091 - restrict parameters tighter
5092 - declare fit as not valid, if less than 100 events
5093 in single photo-electron peak
5094
5095 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
5096 - fit now with fixed normalization
5097
5098 * mcalib/MHCalibrationPixel.[h.cc]
5099 - new function IsEmpty()
5100 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
5101
5102 * mcalib/MCalibrationPix.[h.cc]
5103 - F-Factor corrected and added error
5104 - Histograms not fitted if they are empty
5105 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
5106
5107 * mcalib/MCalibrationCam.cc
5108 - Square Root of Reduced Sigmas not taken, if they are < 0.
5109 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
5110
5111 * mcalib/MCalibrationCalc.cc
5112 - Blind Pixel is not additionally treated as normal pixel any more
5113 - Blind Pixel Draw replaced by DrawClone
5114
5115 * macros/calibration.C
5116 - took out some unused code
5117 - some default axis labelling corrected
5118
5119
5120
5121 2004/01/13: Abelardo Moralejo
5122
5123 * manalysis/MMcPedestalCopy.cc
5124 - added check of whether input file is a MC file before executing
5125 the PreProcess.
5126
5127
5128
5129 2004/01/13: Wolfgang Wittek
5130
5131 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
5132 - change macro to handle also MC events with finite sigmabar
5133
5134 * manalysis/MPadOn.[h,cc]:
5135 - deleted, is replaced by MPad
5136
5137 * manalysis/MPadOnOFF.[h,cc]:
5138 - deleted, is replaced by MPad
5139
5140 * manalysis/MPad.[h,cc]:
5141 - new class, replacing MPadON and MPadONOFF
5142 - handle also MC events with finite sigmabar
5143
5144 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
5145 - replace MPadON and MPadONOFF by MPad
5146
5147
5148
5149 2004/01/13: Thomas Bretz
5150
5151 * mraw/MRawRunHeader.[h,cc]:
5152 - implemented new member function GetRunTypeStr
5153
5154 * Changelog.03:
5155 - added (contains entries of 2003)
5156
5157 * Changelog:
5158 - removed entries of 2003
5159
5160 * mfilter/MFGeomag.cc:
5161 - simplified open/close of input files
5162
5163 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
5164 - added some comments
5165 - added new member function GetError
5166
5167 * Makefile:
5168 - updated 'make dox' output for convinience
5169
5170 * macros/dohtml.C:
5171 - do not print Info's
5172 - added mcamera
5173 - added mpointing
5174 - added mreport
5175
5176 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
5177 - removed some obsolete comments (these comments confused THtml)
5178
5179 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
5180 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
5181 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
5182 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
5183 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
5184 - replaced MPedestalCam by MPedPhotCam
5185 - removed some obsolete includes
5186
5187 * mbase/BaseLinkDef.h, mbase/Makefile:
5188 - added MLogPlugin
5189 - added MLogHtml
5190
5191 * mbase/MLog.[h,cc]:
5192 - added use of plugins
5193
5194 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
5195 - added
5196
5197 * mbase/MStatusDisplay.[h,cc]:
5198 - added a Save-As dialog
5199
5200
5201
5202 2004/01/12: Thomas Bretz
5203
5204 * macros/rootlogon.C:
5205 - added mcamera to include path
5206 - added mpointing to include path
5207 - added mreport to include path
5208
5209 * mbase/MLog.cc:
5210 - updated my eMail address
5211
5212 * mbase/MParContainer.h:
5213 - added Read member function
5214
5215 * mbase/MStatusDisplay.[h,cc]:
5216 - changed size of ps-paper
5217 - added a user defined bottom line to the ps-files
5218 - added name (currently unused)
5219 - added title (used as possible bottom line in ps-file)
5220
5221 * mraw/MRawRunHeader.cc:
5222 - added some comments
5223
5224 * status.cc:
5225 - set name of input as bottom line of status display
5226
5227
5228
5229 2004/01/12: Abelardo Moralejo
5230
5231 * mimage/MStereoPar.cc
5232 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
5233 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
5234 Bug had no effect unless scale1 != scale2 (-> telescopes of
5235 different size).
5236
5237
5238
5239 2004/01/12: Markus Gaug
5240
5241 * manalysis/MExtractSignal.[h,cc]
5242 - take out some uncommented code
5243 - replace logainshift by two independent variables:
5244 logainfirst, logainlast
5245 - because in most data, maximum occurs in slice 4, shift default
5246 from slices 4-9 to slices 3-8.
5247
5248 * manalysis/MExtractedSignalPix.[h,cc]
5249 - took out some uncommented code
5250 - new initializers: instead of -1. now 99999.9
5251
5252
5253
5254 2004/01/09: Markus Gaug
5255
5256 * mcalib/MCalibrationCam.[h,cc]
5257 - take out 1-dim histos because we can use
5258 the projections in MHCamera (s.b.)
5259
5260 * mcalib/MHCalibrationBlindPixel.h
5261 - make the fit by default quiet
5262
5263 * mcalib/MHCalibrationPixel.[h,cc]
5264 * mcalib/MCalibrationPix.[h,cc]
5265 - Ranges of time slices stored independently for HiGain and LoGain
5266 in order to allow consecutive checks
5267
5268 * mhist/MHCamera.[h.cc]
5269 - add the possibility to call a Draw("proj") which will
5270 draw a Y-Projection of the histogram
5271
5272 * macros/calibration.C
5273 - apply the drawing of the projections and fit them
5274
5275 * mcalib/MCalibrationCalc.cc
5276 - catch the possibility of a calibration file,
5277 unintendedly being a pedestal or cosmic file.
5278 Program now exits with an error before doing the fits
5279
5280 * mcalib/MCalibrationPix.[h,cc]
5281 - fixed a bug in calculation of fFitValid.
5282 before, a call to IsFitValid() always returned false
5283
5284
5285
5286 2004/01/09: Javier L¢pez
5287
5288 * macros/bootcampstandardanalysis.C
5289 - added new macro that holds the main scheleton discussed in the
5290 december bootcamp in Wuerzburg. It runs first over a pedestal
5291 run, then over a calibration run, again over the pedestal run
5292 to compute de pedestal in number of photons and finally over a
5293 data run to calibrate the data.
5294
5295
5296
5297 2004/01/06: Sebastian Raducci
5298
5299 * manalysis/MArrivalTime.[h,cc]
5300 - added new method to calculate photon arrival times. It uses the
5301 TSpline5 Root Class to interpolate the Fadc Slices. The time is
5302 the abscissa value of the absolute maximum of the interpolation
5303 - added new method to find clusters with similar arrival times.
5304 For now it's a preliminary version. It simply search for adiacent
5305 pixels having the same arrival time (color).
5306
5307 * manalysis/MArrivalTimeCalc.[h,cc]
5308 - modified the Process() method according to the changes in the
5309 Arrival Time Cointainer
5310
5311 * mmain/MEventDisplay.cc
5312 - added new tab in the camera event display to show the arrival
5313 time. This arrival time is calculated with the spline method
5314 - the old Arrival Time pad now it's called Max Slice Idx, because
5315 it's only the index of the slice with the max content.
5316
5317 * mhist/MHEvent.[h,cc]
5318 - added new fType in te enumeration to handle the arrival time
5319 histos
Note: See TracBrowser for help on using the repository browser.