source: trunk/MagicSoft/Mars/Changelog@ 4163

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