source: trunk/MagicSoft/Mars/Changelog@ 4178

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