source: trunk/MagicSoft/Mars/Changelog@ 3546

Last change on this file since 3546 was 3546, checked in by reyes, 21 years ago
*** empty log message ***
File size: 105.3 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 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 2004/03/18: Raquel de los Reyes
21
22 * macros/DAQDataCheck.C
23 - macro to check the data from the DAQ system (.raw files).
24
25 2004/03/18: Thomas Bretz
26
27 * manalysis/AnalysisIncl.h:
28 - added TVector2
29
30 * manalysis/MSrcPosCam.[h,cc]:
31 - added Getter/Setter using TVector2
32
33 * mhbase/MH.cc:
34 - fixed GetMinimumGT for TH2 and TH3
35
36 * mpointing/MPointingPos.h:
37 - added Getter/Setter for Ra/Dec
38
39 * mpointing/MPointingPosCalc.cc:
40 - fill Ra/Dec into MPointingPos
41
42 2004/03/18: Markus Gaug
43
44 * mgeom/MGeomCam.[h,cc]
45 - replace fMaxRadius by a TArrayF of pixel area types
46 - new TArrayF fMinRadius of each pixel area type
47 - backward compatibility should be given,
48 call to GetMaxRadius() return fMaxRadius.At(fNumAreas-1)
49 (which corresponds to the previous value for the Magic camera)
50
51
52 * mimage/MConcentration.cc
53 - fixed on flog to fLog in order to compile
54
55
56
57 2004/03/17: Thomas Bretz
58
59 * mastro/MAstroCatalog.[h,cc]:
60 - some simplifications and changes
61
62 * mastro/MAstroCatalog.[h,cc]:
63 - some simplifications and changes
64
65 * mastro/MAstroSky2Local.[h,cc]:
66 - rotation matrix from sky to local coordinates
67 - added
68
69 * mastro/Makefile, mastro/AstroLinkDef.h:
70 - MAstroSky2Local added
71
72 * mraw/MRawEvtPixelIter.cc:
73 - GetIdxMaxLoGainSample(const Byte_t lofirst) const
74 accelerated and fixed (the first slice was compared to itself
75 and the last slice was not taken into account)
76
77 * manalysis/MCerPhotAnal2.cc:
78 - fixed a bug in the new treatment of lo-gains
79
80 * mhvstime/MHPixVsTime.cc:
81 - fixed missing initialization of fTypeErr in constructor
82
83 * mimage/MHillas.[h,cc]:
84 - implemented member function which returns MeanX/Y as TVector2
85
86 * mimage/ImageIncl.h:
87 - added TVector2
88
89 * manalysis/MCerPhotEvt.[h,cc]:
90 - fixed a bug in AddPixels which - in some special circumstances -
91 cutted pixels with high pixel indices
92
93
94
95 2004/03/17: Antonio Stamerra
96
97 * macros/datatrigcheck.C
98 - added macro for time and trigger data-checking
99
100
101
102 2004/03/17: Abelardo Moralejo
103
104 * manalysis/MSourcePosfromStarPos.cc
105 - added cast fabs((Double_t)ival), line 703. Otherwise it does not
106 compile.
107
108 * macros/starmc.C
109 - added parameter accepted_fraction to select fraction of events
110 to be processed (useful to make smaller outputs).
111
112
113
114 2004/03/17: Wolfgang Wittek
115
116 * manalysis/MSigmabar.[h,cc]
117 - correct calculation of sector, which was wrong
118
119
120
121 2004/03/16: Markus Gaug
122
123 * mhist/MHCamera.[h,cc]
124 - added function RadialProfile which returns a TProfile of the
125 value along the radius from the camera center
126
127
128
129 2004/03/16: Oscar Blanch Bigas
130
131 * mimage/MConcentration.[h,cc]
132 - new class for Concentration stuff.
133 - It computes and stores Concentration 1-8
134
135 * mimage/MNewImagePar.[h,cc]
136 - New Concentration stuff is moved to MConcentration.
137
138 * mimage/MHillasCalc.[h,cc], Makefile, ImageLinkDef.h
139 - Modifications needed to support and compile new
140 MConcentration class.
141
142
143
144 2004/03/16: Thomas Bretz
145
146 * mjobs/MJ*.[h,cc]
147 - removed some obsolete comments
148 - removed projections from Directory (SetDirectory(0))
149
150
151
152 2004/03/16: Wolfgang Wittek
153
154 * manalysis/MSigmabar.[h,cc]
155 - calculate sigmabar as mean of individual pedestalRMS
156 instead of sqrt of mean pedestalRMS^2
157
158
159
160 2004/03/16: Oscar Blanch
161
162 * mimage/MNewImagePar.[h,cc]
163 - New variables members added: fInnerSize, fInnerLeakage[1,2],
164 fConc[3-8].
165 - It is only ready for Magic Camera geometry. It has to be done
166 MGeomCam base.
167 - The version ahs not been updated since it was done on the
168 2004/03/10 by Abelardo.
169
170
171
172 2004/03/15: Markus Gaug
173
174 * mcalib/MCalibrationChargePix.[h,cc],
175 mcalib/MCalibrationChargeCam.[h,cc],
176 mcalib/MCalibrationChargeCalc.cc:
177 - conversion from hi- to logain now not applied until the value is
178 exported outside the class. This is necessary for the error
179 propagation in the F-Factor method: In the calculation of the
180 number of Phe, the conversion factors cancel out and do not
181 enlarge the errors
182 - pixels with number of phe's outside the range defined by
183 fPheFFactorRelErrLimit are not any more declared as:
184 MCalibrationChargePix::IsFFactorMethodValid() == kFALSE ,
185 but instead as:
186 MBadPixelsPix::IsSuitableRun(MBadPixelsPix::kUnreliableRun) == kTRUE,
187 Like this, everybody is allowed to calibrate pixels which give
188 no reasonable results in the calibration without bothering that
189 too many pixels fall out. Enjoy!
190 - In that procedure, the classes passed _internally_ from calculation
191 of sigmas to calculation of variances which saves all the useless
192 square rooting.
193 - took out pointers to MCalibrationChargeBlindPix and
194 MCalibrationChargePINDiode in MCalibrationChargeCam.
195
196
197
198 2004/03/15: Abelardo Moralejo
199
200 * mmc/MMcEvt.hxx
201 - added getter function for fZFirstInteraction
202
203
204
205 2004/03/15: Wolfgang Wittek
206
207 * mastro/MObservatory.[h,cc]
208 - remove bugs in RotationAngle(theta, phi, sin, cos)
209 replaced
210 cos = sinl + cosl*cosp /denom;
211 by
212 cos = (sinl - cosl*cosp) /denom;
213
214
215
216 2004/03/15: Thomas Bretz
217
218 * mastro/MObservatory.[h,cc]:
219 - implemented RotationAngle(ra, dec, time)
220
221 * mbase/MTask.[h,cc]:
222 - implemented usage of a TStopwatch to retriev time consumtion
223 informations
224 - changed PrintStatistics not to print classes having no
225 Process() function
226
227 * mbase/MTaskList.[h,cc], mfileio/MReadReports.[h,cc]:
228 - changed PrintStatistics according to changes in MTask
229
230 * mraw/MRawEvtHeader.cc:
231 - added a comment to Fill member function
232
233 * manalysis/MCerPhotEvt.[h,cc]:
234 - added fLut.Set to FixSize and resize fLut by a factor of 2
235 instead of +1 which acelerates creation of all pixels a lot
236
237 * mbadpixels/MBadPixelsPix.cc:
238 - fixed a typo
239
240 * mfilter/MFSoftwareTrigger.cc:
241 - made statistics output meaning independant of usage of filter!
242
243 * mhbase/MFill.[h,cc]:
244 - added possibility to give tab a different name
245
246 * mhist/MHCamera.cc:
247 - fixed a bug when determin scale for same-option
248
249 * mjobs/MJCalibration.cc:
250 - changed tab names for MFillH
251
252 * mjobs/MJExtactSignal.cc:
253 - added MRawEvtHeader to output
254
255 * mbase/MStatusDisplay.[h,cc]:
256 - changed displayed year
257 - read and store MStatusArray to and from files
258
259 * mfileio/MReadTree.cc:
260 - enhanced output
261
262 * mmain/MCameraDisplay.cc, mmain/MEventDisplay.[h,cc]:
263 - added preliminary mode to display F1/F2/F3-files
264
265 * mbase/MStatusArray.[h,cc]:
266 - added
267
268 * mbase/Makefile, mbase/BaseLinkDef.h:
269 - added MStatusArray
270
271 * mhits/MHCamera.[h,cc], mgui/MHexagon.[h,cc]:
272 - improved drawing MHCamera with 'same' option
273
274
275
276 2004/03/13: Markus Gaug
277
278 * mcalib/MCalibrationChargeCalc.cc, mcalib/MCalibrationChargeCam.cc,
279 mcalib/MCalibrationChargePix.[h,cc],
280 mcalib/MHCalibrationChargeCam.cc,
281 mcalib/MHCalibrationChargeLoGainPix.cc:
282 - fixed Low Gain calibration
283
284 * mcalib/MHGausEvents.cc:
285 - changed default fit prob. limit from 0.005 to 0.001
286
287 * mbadpixels/MBadPixelsPix.h :
288 - IsCalibrationResultOK does not ask for FitOK any more
289
290 * mcalib/MHCalibrationChargeCam.cc:
291 - replaced Rel. Err. Limit for outliers in Phe's from 5 sigma to 7
292
293 * mraw/MRawEvtPixelIter.[h,cc]:
294 - function GetIdxMaxLoGainSamples can be called optionally with
295 offset (because first "loGain" samples are often in reality
296 hiGain with high values.
297
298
299
300 2004/03/12: Sebastian Raducci
301
302 * manalysis/Makefile
303 - added mastro in the include directories
304
305
306
307 2004/03/12: Thomas Bretz
308
309 * merpp.cc:
310 - added 'force' option
311
312 * manalysis/MCerPhotAnal2.cc:
313 - extract pedestal and pedestal rms from lo-gain if hi-gain not
314 above a certain athreshold
315
316 * mastro/MAstroCatalog.[h,c]:
317 - added text argument to DrawStar
318
319 * mbase/MStatusDisplay.cc:
320 - some small changes to output of SaveAsPS
321
322 * mfilter/MFCosmics.cc:
323 - changed output of filter statistics
324
325 * mbadpixels/MBadPixelsTreat.[h,cc]:
326 - fixed some problems with the code - now it should work like
327 expected
328 - added a new member function to be able to change the number
329 of required neighbors
330
331
332
333 2004/03/12: Wolfgang Wittek
334
335 * manalysis/Makefile
336 - include 'mastro'
337
338 * manalysis/MSourcePosfromStarPos.[h,cc]
339 - include MObservatory.h
340 - call member function Rotationangle() of MObservatory
341
342
343
344 2004/03/12: Markus Gaug
345
346 * mjobs/MJCalibration.cc
347 - updated call in displays to the corr. Cams.
348
349 * macros/calibrate_data.C
350 - macro to study calibrate and study data used in Munich and IFAE
351
352
353
354 2004/03/12: Antonio Stamerra
355
356 * mraw/MRawEvtHeader.[h,cc]
357 - Added the method GetTriggerID() to decode the trigger pattern.
358
359
360
361 2004/03/11: Abelardo Moralejo
362
363 * mimage/MHillasCalc.cc
364 - Added some printout in PostProcess, to better express the reasons
365 for which the reconstruction of some events did not succeed.
366
367
368
369 2004/03/11: Thomas Bretz
370
371 * status.cc:
372 - updated
373
374 * manalysis/MCerPhotAnal2.cc:
375 - removed an obsolete debug output
376
377 * mhist/MHCamera.[h,cc]:
378 - added same-option to camera display
379
380 * mbadpixels/MBadPixelsCalc.[h,cc], mbadpixels/MBadPixelsTreat.[h,cc]:
381 - implemented functionality of MBlindPixelsCalc2
382
383 * mbadpixels/MBadPixelsCam.[h,cc], mbadpixels/MBadPixelsPix.[h,cc],
384 mbadpixels/MMcBadPixelsSet.cc, mcalib/MCalibrationChargeCalc.cc,
385 mcalib/MCalibrationChargePix.cc, mcalib/MHCalibrationChargeCam.cc:
386 - replaced several Set/GetUnsuitable* by a single member function
387
388
389
390 2004/03/11: Markus Gaug
391
392 * mbadpixels/MBadPixelsPix.h
393 - removed bits about validity of calibration methods
394 - IsCalibrationResultOK asks also from IsSuitableRun
395
396 * mbadpixels/MBadPixelsCam.cc
397 - updated GetPixelContent
398 - added Print function
399
400 * mcalib/MCalibrationChargeCam.[h,cc]
401 * mcalib/MCalibrationChargePix.h
402 * mcalib/MCalibrationChargeCalc.cc
403 - removed pointers to MGeomCam and MBadPixelsCam in MCalibrationChargeCam
404 - use two loops over pixels in order to determine mean flux of phe;s to
405 discard pixels far outside the normal distribution
406
407 * mcalib/MCalibrate.cc
408 - added case that no MBadPixelsCam is available.
409
410 * mcalib/MHCalibrationChargeCam.cc
411 - adapted to new MBadPixelsPix::SetUnsuitable function
412
413
414 2004/03/10: Abelardo Moralejo
415
416 * manalysis/MCerPhotPix.[h,cc]
417 - Added member fIsHGSaturated, and setter/getter functions.
418 Updated class version to 4.
419
420 * mcalib/MCalibrate.cc, MCalibrateData.cc
421 - Added setting of MCerPhotPix.fIsHGSaturated if one or more HG
422 slices saturate.
423
424 * mimage/MNewImagePar.[h,cc]
425 - Added member fNumHGSaturatedPixels to count the number of pixels
426 in which high gain saturates. Added getter funciton for it.
427 Updated class version to 3.
428
429
430
431 2004/03/10: Markus Gaug
432
433 * mcalib/MCalibrationChargeCalc.cc,
434 mcalib/MCalibrationChargePix.[h,cc],
435 mcalib/MCalibrationChargeCam.[h,cc]:
436 - calculation of conversion factor with F-Factor method from
437 same mean number of photons, derived from weighted mean number
438 of photo-electrons from inner and outer pixels, respectively
439
440 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
441 - fixed the projections (did only display inner pixels up to now)
442
443 * macros/calibration.C
444 - small bug fixed in display of rel. arrival times
445 ( used MArrivalTimeCam instead of MHCalibrationRelTimeCam)
446
447 * mbadpixels/MBadPixelsCam.cc
448 - replaced some InitSize(idx) by InitSize(idx+1) in order not to crash
449 to program when reading from an ascii-file.
450
451 * mbadpixels/MBadPixelsCalc.cc
452 - replaced one SetUnsuitableRun(....) by the new version without
453 argument.
454
455
456
457 2004/03/10: Thomas Bretz
458
459 * mfilter/MFSoftwareTrigger.[h,cc]:
460 - changed to support also a predifined number of NN
461
462 * mastro/MAstroCatalog.[h,cc]:
463 - many enhancements
464 - many speed improvements
465
466 * mbadpixels/MBadPixelsPix.[h,cc]:
467 - fixed
468
469
470
471 2004/03/10: Ester Aliu
472
473 * mtemp/MIslands.[h,cc]
474 - New MParContainer to hold information about islands
475 (number of islands, pixels in each Island, Signal/Noise of
476 each Island).
477
478 * mtemp/MIslandCalc.[h,cc]
479 - New MTask to count and characterize Islands.
480
481
482
483 2004/03/09: Thomas Bretz
484
485 * Makefile.rules:
486 - replaced *.o by $(...) for building archives
487
488 * mjobs/MJCalibration.cc:
489 - exchanged apply and merge task
490
491 * mjobs/MJCalibration.h, mjobs/MJExtractSignal.h, mjobs/MJPedestal.h:
492 - fixed some const-qualifiers
493
494 * mcalib/MHCalibrationChargeBlindPix.cc,
495 mcalib/MHCalibrationChargeCam.cc,
496 mcalib/MHCalibrationChargePINDiode.cc
497 - removed some obsolete output when calling FindCreateObj
498 - changed some 'not found' output messages to be 'Mars-compliant'
499 - replaced some gLog by *fLog
500
501
502
503 2004/03/08: Markus Gaug
504
505 * mbadpixels/MBadPixelsPix.h
506 - small modifications for better readability
507 - remove Getters for calibration methods
508 - added flag "UnReliableRun" in fInfo[0]
509
510 * mcalib/MHCalibrationChargeCam.cc, mcalib/MCalibrationChargePix.cc:
511 - fill MBadPixelsPix with UnReliableRun or UnSuitableRun when
512 calibration does not succeed.
513
514 * mcalib/MCalibrationChargeCam.cc
515 - displaying saturation also for not-valid pixels in GetPixelContent
516
517 * msignal/MExtractedSignalCam.[h,cc], msignal/MExtractSignal.[h,cc],
518 msignal/MExtractSignal2.[h,cc], mananlysis/MHPedestalCam.cc,
519 mcalib/MCalibrationChargeCalc.[h,cc]:
520 - in SetUsedFADCSlices, also the window (hi-and logain) is set.
521 This because MExtractSignal2 set the whole window which was much
522 bigger than the actually used one. This bug is now removed.
523
524
525
526 2004/03/08: Thomas Bretz
527
528 * merpp.cc:
529 - fixed a bug in the screen output
530
531 * mgeom/MGeomMirror.cc:
532 - added comment
533
534 * mmc/MMcConfigRunHeader.h:
535 - added member function GetMirrors
536
537
538
539 2004/03/08: Abelardo Moralejo
540
541 * macros/starmc.C, starmcstereo.C, mccalibrate.C
542 - adapted to m. Gaug's changes: now one MBadPixelsCam containers is
543 added for each telescope to the parameter list.
544
545 * mmain/MEventDisplay.cc, Makefile
546 - added MBadPixelsCam to par list, and mbadpixels/ to includes.
547 Necessary due to changes in MCalibrate.
548
549
550
551 2004/03/06: Markus Gaug
552
553 * macros/calibration.C
554 - adapted call to MHCamera::ProjectionS to the new version
555
556 * mcalib/Makefile
557 - include directory mbadpixels
558
559 * manalysis/Makefile
560 - include directory mbadpixels
561
562 * mcalib/MCalibrationChargeCalc.[h,cc]
563 - include MBadPixelsCam
564 - remove exclusion of pixels from ascii-file
565 (now accessible from MBadPixelsCam)
566
567 * mcalib/MCalibrationChargePix.[h,cc]
568 - include MBadPixelsCam
569
570 * mcalib/MCalibrationChargeCam.[h,cc]
571 - include MBadPixelsCam
572
573 * mcalib/MHCalibrationChargeCam.[h,cc]
574 - include MBadPixelsCam
575 - include one additional MBadPixelsPix for the average inner and
576 outer pixel, respectively
577
578 * mcalib/MHCalibrationChargePix.[h,cc]
579 - make fSaturated and fPickup a Float_t (for average pixel)
580
581 * mbadpixels/MBadPixelsPix.h
582 - include the CalibrationType_t infos
583 - exchange "SetUnsuitable" by "SetUnsuitableRun"
584
585 * mbadpixels/MBadPixelsCam.cc, mbadpixels/MMcBadPixelsSet.cc:
586 - exchange "SetUnsuitable" by "SetUnsuitableRun"
587
588 * mbadpixels/MBadPixelsCalc.cc:
589 - exchange "SetUnsuitable" by "SetUnsuitableEvt"
590
591 * manalysis/MGeomApply.cc
592 - remove obsolete MArrivalTime
593 - add MBadPixelsCam
594
595 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc]
596 - implemented calls to MBadPixelsCam
597
598 * macros/calibration.C, macros/bootcampstandardanalysis.C,
599 macros/pedphotcalc.C
600 - implemented calls to MBadPixelsCam
601
602 * mjobs/MJCalibration.cc
603 - call to MBadPixelsCam
604
605
606
607 2004/03/05: Nadia Tonello
608
609 * manalysis/MBlindPixelsCalc2.[h,cc], manalysis/AnalysisLinkDef.h,
610 manalysis/Makefile
611 - Temporary class added (will be included in mbadpixels/ soon)
612 - All the functions of MBlindPixelCalc are kept(with small improvements)
613 - New function added: SetCheckPedestalRms
614
615 * manalysis/MCerPhotPix.h
616 - Status Unmapped added (not include the pixel in the cleaned image)
617
618 * mimage/MImgCleanStd.cc
619 - Checks for Unmapped status added
620
621 * mastro/MAstroCatalog.cc, msql/MSQLServer.cc:
622 - include <stdlib.h> to solve compilation error
623
624
625
626 2004/03/05: Sebastian Raducci
627
628 * msignal/MArrivalTimeCalc.cc
629 - fixed a little bug (exchanged a - with a + in the Calc() method)
630
631
632
633 2004/03/05: Markus Gaug
634
635 * mcalib/MCalibraitonChargeCalc.cc
636 - remove some runheader line:
637 if (runheader->IsMonteCarloRun())
638 return kTRUE;
639 which gave always true since this week, don't know why.
640 - added some information in class description
641
642
643
644 2004/03/04: Sebastian Raducci
645
646 * msignal/MArrivalTimeCalc.cc
647 - fixed a memory leak (the spline was not deleted...)
648
649
650
651 2004/03/04: Thomas Bretz
652
653 * mgeom/MGeomCam.[h,cc]:
654 - added new data member fNumAreas
655 - added new function CalcNumAreas
656 - increased class version to 3
657
658 * mgeom/MGeomCamMagic.cc:
659 - added setting of area index
660
661 * mgeom/MGeomPix.[h,cc]:
662 - added fAidx data member
663 - added getter function fAidx
664 - increased class version to 3
665
666 * macros/sectorvstime.C:
667 - added example of how to plot the evolution of a sector vs time
668
669 * mhist/MHVsTime.[h,cc], mhist/MHPixVsTime.[h,cc]:
670 - moved to mhvstime
671
672 * mhvstime/MHSectorVsTime.[h,cc]:
673 - added
674
675 * Makefile:
676 - added mhvstime
677
678 * mhvstime/Makefile, mhvstime/HVsTimeLinkDef.h,
679 mhvstime/HVsTimeIncl.h:
680 - added
681
682 * mhist/Makefile, mhist/HistLinkDef.h,
683 - removed MHVsTime
684 - removed MHPixVsTime
685
686 * macros/rootlogon.C, macros/dohtml.C:
687 - added new directory mhvstime
688
689 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
690 - changes such, that it doesn't crash if signal has no lo-gain
691 (This might still give wrong results!)
692
693 * macros/dohtml.C:
694 - added pixvstime.C
695 - added sectorvstime.C
696
697 * manalysis/MMcCalibrationUpdate.cc:
698 - some changes on file consistency check done by Abelardo,
699 he may comment on it
700
701 * mhist/MHCamera.[h,cc]:
702 - changed to support also dividing the camera in pixels area indices
703
704 * mhist/MHEvent.cc:
705 - minor change
706
707 * mjobs/MJPedestal.cc:
708 - adapted to changes in MHCamera
709
710 * mastro/MAstroCatalog.[h,cc]:
711 - added preliminary catalog
712
713 * mastro/Makefile, mastro/AstroLinkDef.h:
714 - added MAstroCatalog
715
716
717
718 2004/03/03: Thomas Bretz
719
720 * mgeom/MGeomCam.cc:
721 - give a name and title also if the default constructor is used
722
723 * mgeom/MGeomMirror.[h,cc]:
724 - added member function GetReflection
725 - added persistent data member fReflector
726
727 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, mjobs/MJPedestal.cc:
728 - fixed a typo in the output
729
730 * mraw/MRawFileWrite.cc:
731 - added the missing '.' to MRawRunHeader. Because of the design of
732 MReadTree this is backward compatible
733
734 * mraw/MRawRunHeader.h:
735 - removed last change from Abelardo. '>255' is the correct
736 check for MC files following the definition that all MC files
737 have run types >255 which was made in the past.
738
739 * manalysis/MCerPhotAnal.[h,cc], manalysis/MCerPhotAnal2.[h,cc]:
740 - created ReInit member function to hold all code (moved from
741 PreProcess) accessing the run header. The run header is not
742 available in PreProcess. That it was working before was only
743 by chance, because the run type is initialized with 65535 which
744 is != 255 but not >255.
745
746
747
748 2004/03/03: Sebastian Raducci
749
750 * msignal/MArrivalTimeCalc.cc
751 - The calculation of the arrival times is made only when needed
752 (when the HalfMax is over the pedestal)
753
754 * mtools/MCubicSpline.cc
755 - Commented out an annoying warn
756
757
758
759 2004/03/03: Abelardo Moralejo
760
761 * mraw/MRawRunHeader.h
762 - Replaced
763 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by
764 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
765 since the latter is the exact translation of what the function
766 intends to do. I do not know why, but the display of real data
767 did not work with the upper line!
768
769 * mgeom/MGeomCam.cc
770 - Undid yesterday change! I do not know why, display completely
771 fails after that change, both for old and new camera files.
772 Put back fPixels[i] = new MGeomPix; in constructor.
773
774
775
776 2004/03/02: Abelardo Moralejo
777
778 * mmc/MMcCorsikaRunHeader.[h,cc]
779 - Added operator [] to get references to the objects in
780 TObjArray fTelescopes.
781 - Added Print() function.
782 - Added GetNumCT() function.
783 - Replaced
784 fTelescopes[i]= new MGeomCorsikaCT;
785 by
786 MGeomCorsikaCT* dummy = new MGeomCorsikaCT();
787 fTelescopes.Add(dummy);
788
789 * mgeom/MGeomCorsikaCT.[h,cc]
790 - Added getter functions for telescope coordinates.
791 - Added Print() function.
792
793 * mgeom/MGeomCam.cc => NOTE: this change was undone later!
794 - Replaced
795 fPixels[i] = new MGeomPix;
796 by
797 MGeomPix* dummy = new MGeomPix();
798 fPixels.Add(dummy);
799
800
801
802 2004/03/02: Thomas Bretz
803
804 * mcalib/MCalibrateData.cc:
805 - removed usage of MGeomCam (you have MGeomApply for this!)
806
807
808
809 2004/03/01: Nadia Tonello
810
811 * manalysis/MCerPhotEvt.cc
812 - TObject *MCerPhotEvtIter::Next() now returns Used pixels
813 only if fUsedonly=kTRUE, otherwise it returns all the pixels
814 in the array
815
816
817
818 2004/03/01: Sebastian Raducci
819
820 * msignal/MArrivalTimeCalc.[cc,h]
821 - now the arrival time is at the half max of the spline:
822 half max = (maximum - pedestal)/2
823
824 * mmain/MEventDisplay.cc
825 - fixed an include (from MArrivalTime.h to MArrivalTimeCam.h)
826
827
828
829 2004/03/01: Wolfgang Wittek
830
831 * mhist/MHStarMap.[h,cc]
832 - remove bugs
833 - change GetRotationAngle() such that it can be called from outside
834
835
836
837 2004/03/01: Thomas Bretz
838
839 * Makefile:
840 - enhanced all calls to subsequent makes by '-f Makefile' to
841 make sure the correct Makefile is called
842
843 * merpp.cc:
844 - enhanced interpretation of time
845 - fixed a bug in determin the file-type
846
847 * mbase/MTime.[h,cc]:
848 - added GetGmst() member function
849
850 * mastro/MAstro.[h,cc]:
851 - added Coordinate2Angle
852 - added AngularDistance
853 - implemented UT2GMST
854 - replaced defined by TMath::Pi()
855
856 * mastro/MObservatory.[h,cc]:
857 - added data members for sin-/cos-component of latitude
858 - added calculation of rotation angle
859
860 * mhist/MHStarMap.[h,cc]:
861 - changes to use MObservatory member function
862
863 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotAnal2.cc,
864 manalysis/MCerPhotCalc.cc, manalysis/MMcCalibrationUpdate.cc,
865 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalNSBAdd.cc,
866 manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc,
867 mcalib/MCalibrationChargeCalc.cc, mcalib/MMcCalibrationCalc.cc
868 - changed to use IsMonteCarloRun() now
869
870 * manalysis/MMcCalibrationUpdate.cc:
871 - unified output to log-stream
872 - replaced sqrt by TMath::Sqrt
873
874 * mcalib/MCalibrationChargeCalc.cc:
875 - unified output to log-stream
876 - removed .Data() from TString where obsolete
877 - fixed memory leak using gSystem->ExpandPathName
878
879 * mpointing/MPointingPosCalc.cc, mraw/MRawFileWrite.cc:
880 - adde class name to used kRT*/kTT* enums
881
882 * mraw/MRawEvtHeader.h:
883 - made enum data member of class
884
885 * mraw/MRawRunHeader.[h,cc]:
886 - made kMagicNumber and kMaxFormatVersion a static data
887 member of the class
888 - added IsMonteCarloRun member function
889
890
891
892 2004/02/27: Markus Gaug
893
894 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
895 - put in call to MHCamera::Projection the name of the calling
896 class, otherwise the projected hsitogram will be overwritten by
897 an empyt one.
898
899 * mcalib/MHCalibrationChargePix.[h,cc],
900 mcalib/MHCalibrationHiGainChargePix.[h,cc],
901 mcalib/MHCalibrationLoGainChargePix.[h,cc]:
902 - histogram name setting and title setting moved to constructor,
903 Functions Init and ChangeHistId derive directly from
904 MHcalibrationChargePix
905
906 * mcalib/MHCalibrationChargeCam.[h,cc],
907 mcalib/MCalibrationChargeCam.[h,cc],
908 mcalib/MCalibrationChargeCalc.[h,cc]:
909 - introduced "average inner" and "average outer" higain and logain
910 pixels.
911
912
913
914 2004/02/27: Raducci Sebastian
915
916 * mhist/Makefile
917 - added mastro in the include list
918
919
920
921 2004/02/27: Abelardo Moralejo
922
923 * mmain/MEventDisplay.cc
924 - replaced in fill8 obsolete MArrivalTime with MArrivalTimeCam.
925 - Updated display of MC data: removed MCerPhotCalc, and replaced
926 it by MExtractSignal+MMcCalibrationUpdate+MCalibrate. Now
927 MPedPhotCam is filled and all the camera display tabs are shown
928 correctly (most were not working for MC events since a while
929 ago).
930
931 * mmain/Makefile
932 - Added mcalib to list of include directories.
933
934 * manalysis/MMcCalibrationUpdate.[h,cc]
935 - Added member variable Bool_t fOuterPixelsScaling, which is
936 kTRUE by default. If set to kFALSE, MCalibrationCam is filled
937 such that MCerPhotEvt will later be filled with the signal as it
938 is, not corrected for the (possibly) different gain of the outer
939 pixels electronic chain. This option was necessary to allow for
940 the change in the camera display (see above).
941
942 * macros/starmc.C
943 - added (optional) division of output into two, for use as train
944 and test samples in g/h separation studies.
945
946
947
948 2004/02/26: Hendrik Bartko
949
950 * macros/dohtml.C
951 - included the path msignals/
952
953
954
955 2004/02/26: Abelardo Moralejo
956
957 * macros/starmcstereo.C
958 - changed filters to divide data between train and test sample for
959 gamma hadron separation studies. Now we use the modulus operator
960 applied to (Corsika) event number:
961 MF filter1("{MMcEvt;1.fEvtNumber%2}<0.5");
962 MF filter2("{MMcEvt;1.fEvtNumber%2}>0.5");
963 - cleaned up a bit the way the CT coordinates are fed to the task
964 MStereoCalc.
965 - Changed default FADC integration range (center range to adapt to
966 new camera).
967
968
969
970 2004/02/26: Thomas Bretz
971
972 * mhist/MHCamera.cc:
973 - fixed a function description
974
975 * mreport/MReport.cc, mreport/MReportFileRead.cc:
976 - introduced return case -1
977
978 * Makefile.rules:
979 - remove all dependancy files when calling 'rmdep'
980
981 * mbase/MAGIC.h, mmc/MMcEvt.hxx:
982 - moved ParticleId_t to MMcEvt
983 - implemented MMcEvt::GetParticleName
984 - implemented MMcEvt::GetEnergyStr
985
986 * mfilter/MFGeomag.cc, mfilter/MFParticleId.cc, mhist/MHCompProb.cc,
987 mhist/MHEvent.cc, mhist/MHHadronness.cc,
988 mmontecarlo/MMcTriggerRateCalc.cc, mranforest/MHRanForest.cc:
989 - fixed usage of ParticleId_t
990
991 * msignal/Makefile:
992 - removed obsolete includes
993
994 * mastro/Makefile, mastro/AstroLinkDef.h, mastro/MAstro.[h,cc],
995 mastro/MObservatory.[h,cc]:
996 - added
997
998 * mbase/MAstro.[h,cc]:
999 - removed
1000
1001 * mbase/Makefile, mbase/BaseLinkDef.h:
1002 - removed MAstro
1003
1004 * Makefile:
1005 - added mastro
1006 - added msql
1007 - added mfbase
1008
1009 * mtemp/MObservatory.[h,cc], mtemp/MObservatoryLocation.[h,cc]:
1010 - removed
1011
1012 * merpp.cc:
1013 - added Sql support
1014
1015 * mraw/MRawFileRead.h:
1016 - added GetFileName
1017
1018 * msql/Makefile, msql/SqlLinkDef.h, msql/SqlIncl.h,
1019 MSQLServer.[h,cc], MSqlInsertRun.[h,cc]:
1020 - added
1021
1022 * mfilter/MF.[h,cc], mfilter/MFDataChain.[h,cc],
1023 mfilter/MFDataMember.[h,cc], mfilter/MFEventSelector.[h,cc],
1024 mfilter/MFEventSelector2.[h,cc], mfilter/MFRealTimePeriod.[h,cc]:
1025 - moved to mfbase
1026
1027 * mfbase/Makefile, mfbase/FBaseLinkDef.h, mfbase/FBaseIncl.h:
1028 - added
1029
1030 * merpp.cc:
1031 - implemented control of gDebug (root debugging)
1032
1033 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc],
1034 mfileio/MWriteRootFile.[h,cc]:
1035 - implemented CheckAndWrite return value
1036
1037 * mfileio/MWriteRootFile.cc:
1038 - fixed updating already existing branches (eg concatenating report
1039 files)
1040
1041 * macros/dohtml.C, macros/rootlogon.C:
1042 - added mastro
1043 - added mfbase
1044 - added msql
1045
1046 * mraw/MRawEvtHeader.h:
1047 - implemented GetNumTrigLvl1
1048 - implemented GetNumTrigLvl2
1049
1050
1051
1052 2004/02/25: Markus Gaug
1053
1054 * mcalib/MExtractBlindPixel.[h,cc],
1055 mcalib/MExtractPINDiode.[h,cc],
1056 mcalib/MExtractedSignalBlindPixel.[h,cc],
1057 mcalib/MExtractedSignalPINDiode.[h,cc],
1058 mcalib/Makefile, msignal/Makefile, mcalib/CalibLinkDef.h,
1059 msignal/SignalLinkDef.h:
1060 - moved blindpixel and PINdiode extractors to msignal
1061
1062
1063 * mcalib/MCalibrationQECam.[h,cc], mcalib/MCalibrationQEPix.[h,cc]:
1064 - two new classes to hold the quantum efficieny information of the
1065 calibration
1066
1067 * msignal/MArrivalTimeCalc.[h,cc]
1068 - fill now MArrivalTimePix instead of MArrivalTime
1069
1070 * mcalib/MHCalibrationChargeCam.cc
1071 - display only valid pixels for the corr. values in GetPixelContent
1072
1073 * mcalib/MHCalibrationRelTimeCam.cc
1074 - is now filled from MArrivalTimeCam instead of MArrivalTime
1075
1076 * macros/calibration.C
1077 - divided into two macros: calibration.C using the MJPedestal
1078 standard procedure and pedestalstudies.C using the old
1079 procedures
1080
1081 * macros/pedestalstudies.C
1082 - new macro containing the first previous part of calibration.C
1083
1084 * mcalib/MCalibrationChargeBlindPix.h,
1085 mcalib/MCalibrationChargePINDiode.h, mbase/MAGIC.h,
1086 mjobs/MJCalibration.cc:
1087 - definition of PulserColot_t in MAGIC.h.
1088
1089
1090
1091 2004/02/25: Hendrik Bartko
1092
1093 * macros/rootlogon.C
1094 - set the include path also to msignals/
1095
1096 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractSignal2.[h,cc],
1097 manalysis/MExtractedSignalCam.[h,cc],
1098 manalysis/MExtractedSignalPix.[h,cc],
1099 manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc],
1100 manalysis/MArrivalTimeCalc2.[h,cc]:
1101 - removed
1102
1103 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1104 - removed classes mentioned above
1105
1106 * msignal/MExtractSignal.[h,cc], msignal/MExtractSignal2.[h,cc],
1107 msignal/MExtractedSignalCam.[h,cc],
1108 msignal/MExtractedSignalPix.[h,cc],
1109 msignal/MArrivalTime.[h,cc], msignal/MArrivalTimeCalc.[h,cc],
1110 msignal/MArrivalTimeCalc2.[h,cc]:
1111 - added
1112
1113 * msignal/Makefile, msignal/AnalysisLinkDef.h:
1114 - added classes mentioned above
1115
1116 * mfilter/Makefile, mcalib/Makefile, mjobs/Makefile, mmain/Makefile:
1117 - added include msignal
1118
1119
1120
1121
1122 2004/02/25: Wolfgang Wittek
1123
1124 * mcalib/MCalibrateData.[h,cc]
1125 - initialize size for MPedPhotCam
1126
1127
1128
1129 2004/02/24: Wolfgang Wittek
1130
1131 * manalysis/MSourcPosfromStarPos.[h,cc]
1132 - change member function SetSourceAndStarPosition() to expect sky
1133 coordinates in the standard units
1134 - generalize to more than 1 star
1135 - the class is not yet fully tested
1136
1137 * mfilter/MFSelBasic.[h,cc]
1138 - change default values of cuts
1139
1140
1141
1142 2004/02/24: Markus Gaug
1143
1144 * mjobs/MJCalibration.cc, macros/calibration.C,
1145 macros/bootcampstandardanalysis.C, macros/pedphotcalc.C:
1146 - added MCalibrationChargeBlindPix to plist
1147 - added new filling of histograms with MFillH
1148 - changed SetPulserColor to MCalibrationChargeBlindPix and
1149 MCalibrationChargePINDiode
1150
1151 * mcalib/MHCalibrationChargeBlindPix.[h,cc]:
1152 - receives a pointer to MCalibrationChargePINDiode which is filled
1153 with the results and told to calculate the fluxes in the
1154 Finalize function
1155 - is filled via MFillH from MExtractBlindPixel
1156 - SetPulserColor directly in this class
1157
1158 * mcalib/MCalibrationChargeBlindPix.[h,cc]
1159 - new storage container of the blind pxiel resutls, replaces
1160 MCalibrationBlindPix
1161
1162 * mcalib/MCalibrationChargeCalc.[h,cc]:
1163 - does not fill the histograms any more, but does ony the
1164 calculations in the postprocess. No pointer to MExtractPINDidoe
1165 or MExtractBlindPixel any more.
1166
1167 * mcalib/MCalibrationChargePix.cc
1168 - discovered an error in the calculation of phe's in
1169 CalcFFactorMethod(). The average QE was applied twice.
1170 This error had been introduced on 13/02/04
1171 - loosened criterium convFFactorRelErrLimit from 0.1 to 0.2
1172 - CalcFFactor asks for IsChargeValid before calculating anything
1173
1174 * mcalib/MCalibrationChargePINDiode.[h,cc]
1175 - added function SetFluxOutsidePlexiglassAvailable
1176 - SetPulserColor directly in this class
1177
1178 * mcalib/MCalibrationChargeCam.cc
1179 - removed function SetPulserColor from here
1180
1181 * mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationConfig.h,
1182 mcalib/MHCalibrationPINDiode.[h,cc],
1183 mcalib/MCalibrationBlindPix.[h,cc],
1184 mcalib/MHCalibrationBlindPixel.[h,cc]:
1185 - removed since obsolote
1186
1187 * mcalib/MHCalibrationChargePix.cc
1188 - make fPickup an Int_t
1189
1190 * mcalib/MCalibrate.cc
1191 - test validity of every calibration method before retrieving
1192 conversion factors
1193
1194 * mcalib/MHGausEvents.[h,cc]
1195 - add possibility to set fit ranges in call to FitGaus
1196 - make function CreateXaxis protected
1197
1198
1199
1200 2004/02/23: Markus Gaug
1201
1202 * mraw/MRawEvtPixelIter.h
1203 - include GetNumHiGainSamples and GetNumLoGainSamples
1204
1205 * mcalib/MExtractedSignalBlindPixel.h,
1206 mcalib/MExtractBlindPixel.[h,cc]:
1207 - included storage of pedestal
1208
1209 * mcalib/MHGausEvents.[h,cc]
1210 - make the fit functions protected
1211
1212
1213
1214 2004/02/22: Markus Gaug
1215
1216 * mfilter/MFCosmics.[h,cc]
1217 - fMaxNumEmpty changed from absolute number to relative number of
1218 pixels
1219
1220 * mcalib/MHGausEvents.h
1221 - remove the "->" from the pointers which are initialized only
1222 in certain cases. The streamer did not work in case that
1223 MFGausFit was left at the NULL pointer.
1224
1225
1226
1227 2004/02/21: Markus Gaug
1228
1229 * manalysis/MExtractedSignalPix.[h,cc]
1230 - changed variable fIsLoGainUsed to fLoGainUsed
1231 - added function GetNumHiGainSaturated()
1232
1233
1234 2004/02/20: Markus Gaug
1235
1236 * mcalib/MHCalibrationChargeHiGainPix.[h,cc], mcalib/Makefile,
1237 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
1238 mcalib/CalibLinkDef.h
1239 - new class to replace MHCalibrationPixel,
1240 based on MHCalibrationChargePix
1241
1242 * mcalib/MCalibrationChargeCalc.[h,cc]
1243 mcalib/MCalibrationChargeCam.[h,cc]
1244 mcalib/MCalibrationChargePix.[h,cc]
1245 mcalib/MCalibrationChargePINDiode.[h,cc]
1246 mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
1247 mcalib/MCalibrationPINDiode.[h,cc]:
1248 - added the "charge" versions, remove the old ones. The histograms
1249 should be filled in the MH... versions independently of
1250 MCalibrationChargeCalc. This is fully realized for the PIN Didoe
1251 now and will later be so for the pixels and the blind pixel.
1252
1253 * mcalib/MHCalibrationChargePINDiode.[h,cc]
1254 - receives a pointer to MCalibrationChargePINDiode which is filled
1255 with the results and told to calculate the fluxes in the
1256 Finalize function
1257
1258 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc],
1259 mcalib/MMcCalibrationCalc.[h,cc], mjobs/MJCalibration.[h,cc],
1260 manalysis/MMcCalibrationUpdate.[h,cc],
1261 mjobs/MJExtractSignal.[h,cc], manalysis/MGeomApply.cc,
1262 mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C,
1263 macros/bootcampstandardanalysis.C,
1264 macros/pedphotcalc.C:
1265 - replace MCalibrationCam by MCalibrationChargeCam
1266 - replace MCalibrationCalc by MCalibrationChargeCalc
1267
1268
1269
1270 2004/02/19: Markus Gaug
1271
1272 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc,
1273 mcalib/MCalibrate.cc, mcalib/MCalibrateDate.cc,
1274 manalysis/MMcCalibrationUpdate.cc:
1275 - standardized naming of variables containing "Error", this also affected
1276 the calling functions MCalibrate, MMcCalibrationUpdate and MCalibrateData
1277
1278 * mcalib/MCalibrationCam.cc, mcalib/MCalibrationPix.cc,
1279 mcalib/MCalibrationCalc.cc, mcalib/MCalibrate.cc,
1280 mcalib/MCalibrateData.cc, mcalib/MCalibrationConfig.h:
1281 - took out some configuration numbers and put them directly into
1282 the class
1283 - remove completely MCalibrationConfig.h
1284
1285
1286
1287 2004/02/19: Abelardo Moralejo
1288
1289 * mhist/MHEvent.[h,cc]:
1290 - Changed names of Event "types" to make them more descriptive.
1291 Former kEvtSignal is now called kEvtSignalDensity, and indicates
1292 pixel content scaled by area. Added kEvtSignalRaw, which
1293 corresponds to pixel content (with no scaling) in whatever units
1294 (this depends on how the MHEvent object is filled!). The default
1295 constructor initializes type=kEvtSignalRaw.
1296
1297 * mmain/MEventDisplay.cc
1298 - Changed filling of evt1 and evt2. Now they are filled with raw
1299 content of MCerPhotEvt. Since in MEventDisplay, MCerPhotEvt is
1300 still filled uncalibrated (hence in ADC counts), this means that
1301 what will be now shown in Mars' camera display is now the signal
1302 in each pixel without scaling with pixel area. Given that the
1303 default flat fielding is such that equal light density
1304 corresponds to equal absolute signal (in ADC counts), this is
1305 more reasonable, and allows to check for instance how the
1306 relative pixel gains are adjusted by looking at calibration
1307 events. To be FIXED: there is however an "inconsistency" in
1308 MEventDisplay, and it is that MCerPhotEvt is still used to keep
1309 uncalibrated signals. To be replaced by MExtractedSignalCam?
1310
1311
1312
1313 2004/02/19: Thomas Bretz
1314
1315 * manalysis/MCerPhotEvt.h:
1316 - added operator= to MCerPhotEvtIter -- is this correct?
1317
1318 * mhist/MHCamera.[h,cc]:
1319 - added member function to calculate minimum content and
1320 maximum content for a single sector
1321 - Added possibility to get a projection for a single sector.
1322 - GetMinimum/GetMaximum now only takes used pixels into account
1323 (you can request all pixels using a different member function)
1324 - fixed projection (projection only took pixels with contents!=0
1325 instead of 'used' pixels
1326 - Don't call Sumw2() anymore for projection
1327
1328 * mjobs/MJPedestal.cc:
1329 - added MPedestalCam to output again - MPedestalCam was fixed
1330 yesterday
1331 - Added Histograms for the two camera halves
1332
1333
1334
1335 2004/02/18: Markus Gaug
1336
1337 * macros/calibration.C
1338 - fixed a buggy display of the F-Factor method
1339
1340 * mcalib/MCalibrationCalc.cc
1341 - calculate the F-Factor method already in the post-Process
1342
1343 * mcalib/MCalibrationPix.h
1344 - move CalcFFactorMethod to public
1345
1346
1347
1348 2004/02/18: Abelardo Moralejo
1349
1350 * mtools/MCubicSpline.cc
1351 - in Init, corrected initialization of arrays temp and ysd, which
1352 was done with n-1 elements instead of n.
1353
1354 * mgui/MHexagon.cc
1355 - added comment explaining the algorithm.
1356 - changed explicit values of Sin and Cos 60 degrees by const
1357 variables (more readable).
1358
1359
1360
1361 2004/02/18: Hendrik Bartko
1362
1363 * msignal/:
1364 - removed the backup files *~
1365 - removed the object files *.o
1366 - removed the files SignalCint.*
1367
1368 * mgui/MHexagon.cc
1369 - added comment explaining the algorithm.
1370
1371
1372
1373 2004/02/18: Thomas Bretz
1374
1375 * manalysis/MPedestalCam.[h,cc]:
1376 - Changed order of derivements - seems to be VERY important!
1377 - changed GetSize from UInt_t to Int_t which is the type
1378 of TClonesArray::GetSize() !
1379
1380 * mfileio/MReadReports.cc:
1381 - skip trees with no entries
1382
1383 * mgui/MCamEvent.cc:
1384 - added a comment
1385
1386 * mhbase/MFillH.cc:
1387 - in case SetupFill returns kFALSE and kCanSkip is set
1388 Skip task
1389
1390 * mraw/MRawFileRead.cc:
1391 - don't print warning in case of none executions
1392
1393 * manalysis/MArrivalTimeCalc2.cc:
1394 - added some const-qualifiers
1395
1396
1397
1398 2004/02/17: Raquel de los Reyes
1399
1400 * macros/CCDataCheck.C
1401 - Added some improvements in the plots.
1402
1403
1404
1405 2004/02/17: Abelardo Moralejo
1406
1407 * macros/readrfl.C
1408 - Added missing gPad->cd(1), otherwise the display of events was
1409 not updated.
1410
1411 * mgui/MHexagon.cc
1412 - DistanceToPrimitive(Float_t px, Float_t py) Changed check of
1413 whether px,py is inside the pixel or not. Previous algorithm
1414 was just an approximation.
1415
1416
1417
1418 2004/02/17: Raquel de los Reyes
1419
1420 * mcamera/MCameraHV.h
1421 - Now it derives from a MCamEvent class and implemented the
1422 GetPixContent() and DrawPixelContent() functions. Added the
1423 GetMean function to get the mean HV settings of the camera.
1424
1425 * macros/CCDataCheck.C
1426 - Added the HV settings plots.
1427
1428
1429
1430 2004/02/17: Hendrik Bartko
1431
1432 * msignal:
1433 - new: directory for all signal and time extraction classes
1434
1435 * msignal/MArrivalTimeCam.[h,cc], manalysis/Makefile,
1436 msignal/AnalysisLinkDef.h, MGeomApply.cc:
1437 - new: Storage Container for the ArrivalTime in the camera
1438
1439 * msignal/MArrivalTimePix.[h,cc], manalysis/Makefile,
1440 msignal/AnalysisLinkDef.h:
1441 - new: Storage Container for ArrivalTime information of one pixel
1442
1443 * msignal/Makefile, SignalCint.[h,cc], SignalDep.d, SignalIncl.h,
1444 SignalLinkDef.h
1445 - auxiliary files for msignal directory
1446
1447 * manalysis/MArrivalTimeCalc2.[h,cc]:
1448 - added functionality to compute error of the extracted ArrivalTime
1449 - calculated ArrivalTime is stored in MArrivalTimeCam
1450
1451 * manalysis/MGeomApply.cc
1452 - geometry is applied to MArrivalTimeCam
1453
1454 * Makefile:
1455 - directory msignal is included
1456
1457
1458
1459 2004/02/17: Sebastian Raducci
1460
1461 * mtools/MCubicSpline.[h,cc]
1462 - little corrections in minimums evalustion methods
1463 - changed constructors (they require the fadc slices to be const)
1464
1465 * macros/spline.C
1466 - changed according to the MCubicSpline new constructors
1467
1468 * manalysis/MArrivalTimeCalc.[h,cc]
1469 - changed to use the MCubicSpline class intead of the TSpline class
1470 - warning: now the arrival time is again the maximum of the spline,
1471 soon it will be changed to half maximum
1472
1473
1474
1475 2004/02/17: Wolfgang Wittek
1476
1477 * manalysis/MSourcPosfromStarPos.[h,cc]
1478 - new class; calculates the position of the source in the camera from
1479 the position of a star in the camera and puts it into
1480 MSrcPosCam
1481
1482
1483
1484 2004/02/16: Abelardo Moralejo
1485
1486 * mcalib/MMcCalibrationCalc.cc
1487 - Fixed two typos in screen output.
1488
1489
1490
1491 2004/02/16: Markus Gaug
1492
1493 * mcalib/MCalibrationPix.cc
1494 - documentation from David's email added
1495 - EffectiveQE decreased from 0.2 to 0.18 (see documentation)
1496
1497 * mcalib/Makefile, mcalib/CalibLinkDef.h:
1498 - added MExtractBlindPixel and MExtractedSignalBlindPixel
1499
1500 * mcalib/MExtractBlindPixel.[h,cc]
1501 - new signal extractor for the Blind Pixel
1502
1503 * mcalib/MExtractedSignalBlindPixel.[h,cc]
1504 - new container for the extracted signal of the BlindPixel
1505
1506 * mcalib/MCalibrationCalc.[h,cc]
1507 - does not extract signal from Blind Pixel any more, searches
1508 for MExtractedSignalBlindPixel and fills the hists from there
1509
1510 * macros/calibration.C, macros/bootcampstandardanalysis.C,
1511 macros/pedphotcalc.C, mjobs/MJCalibration.cc:
1512 - introduce the blind pixel and PIN diode extraction in the macro
1513
1514 * manalysis/MPedestalCam.h
1515 - changed type of fTotalEntries from ULong_t to UInt_t
1516 - fixed documentation of fTotalEntries
1517
1518 * manalysis/MPedCalcPedRun.h
1519 - changed type of fNumSamplesTot from ULong_t to UInt_t
1520
1521 * mcalib/MHGausEvents.h
1522 - changed type of fCurrentSize from ULong_t to UInt_t
1523
1524 * mcalib/MCalibrationConfig.h
1525 - removed gkConversionHiLo and gkConversionHiLoErr which is now
1526 directly in the class MCalibrationPix
1527
1528
1529
1530 2004/02/16: Thomas Bretz
1531
1532 * manalysis/AnalysisLinkDef.h:
1533 - added missing MCerPhotEvtIter
1534
1535 * merpp.cc:
1536 - added possible usage of database
1537
1538 * star.cc:
1539 - moved source code into new class MJStar - preliminary
1540
1541 * manalysis/MCerPhotPix.cc:
1542 - updated class header
1543 - fixed Print-output
1544
1545 * mbase/MAGIC.h:
1546 - removed definition of MLog
1547
1548 * mbase/MArgs.h:
1549 - removed include of MAGIC.h
1550
1551 * mbase/MLog.h:
1552 - added extern definition of gLog
1553
1554 * mbase/MParContainer.[h,cc]:
1555 - move body of constructors to source file
1556
1557 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
1558 mraw/MRawCrateArray.cc, mraw/MRawCrateData.cc,
1559 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawRead.cc,
1560 mraw/MRawEvtPixelIter.cc, mraw/MRawFileWrite.cc:
1561 - fixed documentation header
1562
1563 * mcalib/MMcCalibrationCalc.[h,cc]:
1564 - fixed documentation header
1565 - fixed usage of FindCreateObj and FindObject
1566 - removed data member to count entries (use histogram instead)
1567 - use TH1 function Integral instead of doing it manually
1568
1569 * mfilter/MFCosmics.cc:
1570 - fixed documentation
1571
1572 * mimage/MHillas.cc, mimage/MImgCleanStd.cc,
1573 mimage/MNewImagePar.[h,cc]:
1574 - replaced for-loops by Iterators
1575
1576 * mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc:
1577 - fixed documentation header
1578 - check return value of MRawRunHeader::ReadEvt
1579
1580 * mraw/mraw/MRawRunHeader.[h,cc]:
1581 - fixed documentation header
1582 - added return value to MRawRunHeader::ReadEvt
1583 - added constant number for max format version - preliminary
1584 (should by a static data member)
1585
1586 * mcalib/MHCalibrationPINDiode.cc:
1587 - do not delete pointers in the destructor which are already
1588 deleted in the base class
1589 - reset histograms in Clear()
1590
1591 * mcalib/MHCalibrationPixel.cc:
1592 - after deletion of instances in Clear() initialize pointer to NULL
1593
1594 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
1595 - fixed usage of logging stream output levels
1596
1597 * manalysis/MPedCalcPedRun.[h,cc]:
1598 - removed obsolete fSignals
1599
1600 - removed obsolete fNumPixels
1601
1602 * manalysis/MPedestalCam.h:
1603 - added '->' to fArray
1604
1605 * mfileio/MWriteRootFile.cc:
1606 - changed some output to make debugging easier
1607
1608 * mjobs/MJCalibration.cc:
1609 - fixed a bug in drawing
1610
1611 * mjobs/MJExtractSignal.cc:
1612 - removed MPedestalCam from MWriteRootFile output.
1613 When creating the branch it crashes - reason unknown I'll
1614 investigate further
1615
1616
1617
1618 2004/02/16: Markus Gaug
1619
1620 * mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C:
1621 - added MHCalibrationRelTimePix
1622
1623 * mcalib/MHCalibrationRelTimePix.[h,cc],
1624 mcalib/MHCalibrationRelTimeCam.[h,cc]:
1625 - new classes to fit and display the relative arrival times.
1626 - filled from MArrivalTime
1627 - need: MFillH("MHCalibrationRelTimeCam","MArrivalTime")
1628
1629 * manalysis/MCalibrationCalc.cc
1630 - take out all uncommented code referring to the relative arrival time
1631
1632 * manalysis/MArrivalTime.h
1633 - changed function GetNumPixels to GetSize
1634
1635 * macros/bootcampstandardanalysis.C, macros/pedphotcalc.C
1636 - included cosmics rejection which was in MCalibrationCalc before
1637
1638
1639
1640 2004/02/14: Markus Gaug
1641
1642 * mcalib/Makefile, mcalib/CalibLinkDef.h:
1643 - added MHCalibrationChargePINDiode
1644
1645 * mcalib/MHCalibrationChargePINDiode.[h,cc]
1646 - new class to fill the PIN Diode histograms. Derives from
1647 MHCalibrationChargePix and is filled with MFillH from the
1648 container MExtractedSignalPINDiode.
1649 Will replace MHCalibrationPINDiode entirely soon.
1650
1651 * mcalib/MHCalibrationChargePix.[h,cc]
1652 - new base class for the calibration charges histogram pixel.
1653 Derives from MH and can be filled with the MH with the MH
1654 functions.
1655
1656 * mcalib/MExtractPINDiode.[h,cc]
1657 - new signal extractor for the PIN Diode
1658
1659 * mcalib/MExtractedSignalPINDiode.[h,cc]
1660 - new container for the extracted signal of the PIN Diode
1661
1662 * mcalib/MCalibrationCalc.[h,cc]
1663 - remove the PIN Diode signal extraction
1664
1665 * manalysis/MHPedestalPix.[h,cc]
1666 - new version of MHPedestalPixel, deriving from MHGausEvents.
1667
1668 * manalysis/MHPedestalPixel.[h,cc]
1669 - old version removed, since obsolete (and erroneous)
1670
1671 * manalysis/MHPedestalCam.[h,cc]
1672 - histogramming part of MPedestalCam now in own class
1673
1674 * manalysis/MPedestalPix.h
1675 - removed include of MHPedestalPixel
1676
1677 * macros/calibration.C
1678 - changed pedestal displays accordingly
1679
1680 * mjobs/MJPedestal.h
1681 - class TCanvas included (did not compile otherwise)
1682
1683 * mhbase/MH.cc
1684 - included call to FindGoodLimits(..) in CutEdges()
1685 - axe from pointer to reference
1686 - "CutEdges" renamed to "StripZeros"
1687
1688 * manalysis/MHPedestalPixel.cc, mcalib/MHCalibrationPixel.cc,
1689 mcalib/MHCalibrationBlindPixel.cc:
1690 - "CutEdges" renamed to "StripZeros"
1691
1692 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
1693 - replaced by the improved version: MHGausEvents.[h,cc]
1694
1695
1696
1697 2004/02/14: Thomas Bretz
1698
1699 * manalysis/MCerPhotEvt.[h,cc]:
1700 - added 'Iterator' facility, this will replace some for-loops
1701 in the near future
1702
1703 * mbase/MTime.[h,cc]:
1704 - added a more powerfull interface to get and interprete the
1705 MTime contents as string
1706 - added a new constructor
1707
1708 * mreport/MReportTrigger.h:
1709 - fixed GetPixContent
1710
1711 * mtools/MCubicCoeff.cc, mtools/MCubicSpline.[h,cc]:
1712 - many small changes to simple details (like order of includes)
1713 - some speed improvements
1714 - many small simplifications
1715 - changed parts of the code to be more C++ like (eg Iterators
1716 instead of for-loops)
1717 - disentangles some if-cases
1718 - replaced some math.h function by TMath::
1719 - removed data-member fN (obsolete with iterators)
1720
1721
1722
1723 2004/02/13: Wolfgang Wittek
1724
1725 * mcalib/MCalibrateData.[h,cc]
1726 - new class;
1727 like MCalibrate, but in ReInit it fills the MPedPhot container
1728 using informations from MPedestal, MExtracteSignalCam and
1729 MCalibrationCam
1730
1731 * mcalib/Makefile, mcalib/CalibLinkDef.h
1732 - added MCalibrateData
1733
1734 * manalysis/MPedestalWorkaround.[h,cc]
1735 - create MMcEvt container and fill with theta = 10.0
1736 - set pedestalRMS = 0. if it is > 10.0
1737
1738 * manalysis/MSupercuts.[h,cc]
1739 - change default values of parameters
1740
1741 * manalysis/MSupercutsCalc.[h,cc]
1742 - change dNOMLOGSIZE from 4.1 to 5.0
1743
1744 * mhist/MHBlindPixels.[h,cc]
1745 - change MPedestalCam to MPedPhotCam
1746
1747 * mhist/MHSigmaTheta.[h,cc]
1748 - automatic binning for pixel number doesn't work
1749 use default binning
1750
1751
1752
1753 2004/02/13: Markus Gaug
1754
1755 * mcalib/MCalibrationPix.[h,cc]
1756 - added variables gkAverageQE, gkAverageQEErr, and fAverageQE,
1757 fAverageQEErr
1758 - gkAverageQE initializes to 0.2 (according to David)
1759 - gkAverageQEErr initializes to 0.02 (dito)
1760 - added new member function: SetAverageQE
1761 - call to GetMeanConversionFFactorMethod returns:
1762 fMeanConversionFFactorMethod/fAverageQE.
1763 - call to GetErrorConversionFFactorMethod returns:
1764 errors of fMeanConversionFFactorMethod and fAverageQEErr added
1765 quadratically
1766
1767 * mcalib/Makefile
1768 - split into two parts one comment line
1769
1770
1771 2004/02/13: Thomas Bretz
1772
1773 * mbadpixels/MBadPixelsTreat.[h.cc]:
1774 - added for new bad pixel treatment
1775
1776 * mbadpixels/Makefile, mbadpixels/BadPixelsLinkDef.h:
1777 - added MBadPixelsTreat
1778
1779 * merpp.cc:
1780 - changed the name of the "DC" tree to "Currents" to make
1781 MReportRead work correctly with this tree
1782
1783 * mbase/MTime.[h,cc]:
1784 - Changed UpDMagicTime to support nanosec instead of millisec
1785 - exchanged Reset() by Clear() not to clear the yy/mm/dd
1786 information away in an eventloop
1787
1788 * mraw/MRawEvtHeader.[h,cc]:
1789 - implemented decoding of the time-stamp for raw-data files
1790 with version>2. Thanks to Marcos.
1791
1792 * mraw/MRawRead.[h,c]:
1793 - pipe file version number to MRawEvtHeader::ReadEvt
1794 - create fake time for file-version<3
1795
1796 * macros/readMagic.C:
1797 - changed to use MInteractiveTask
1798
1799 * mbase/MPrint.cc:
1800 - fixed debugging level of some output
1801
1802 * mhist/MHCamera.[h,cc]:
1803 - fixed handling in AddNotify (necessayr due to change of
1804 inheritance from MCamEvent)
1805 - replaced cout by gLog
1806 - added fNotify to list of cleanups
1807
1808 * mhist/MHEvent.cc, mjobs/MJCalibration.cc,
1809 mjobs/MJPedestal.cc:
1810 - fixed usage of AddNotify
1811
1812 * mfileio/MReadReports.cc:
1813 - use a different way to determin whether the tree is a valid tree,
1814 skip invalid trees
1815
1816 * mfileio/MReadTree.cc:
1817 - added another sanity check at the beginning of PreProcess
1818
1819 * mhbase/MFillH.[h,cc]:
1820 - added bit kCanSkip which skips MFillH in case the necessary container
1821 wasn't found.
1822 - cd into the corresponding canvas before filling the MH
1823
1824
1825
1826 2004/02/12: Markus Gaug
1827
1828 * mbase/MArray.[h,cc]:
1829 - changed name of StripZeros
1830
1831 * mcalib/MHGausEvent.cc:
1832 - corrected call to StripZeros
1833
1834 * mcalib/MCalibrationPix.[h,cc]
1835 - implemented dummy for combined method
1836
1837 * mcalib/MCalibrate.[h,cc]
1838 - implemented a dummy for calibration factor 1. (requested by
1839 Javier Rico)
1840 - implemented combined method
1841 - check for valid methods moved to ReInit
1842
1843 * mcalib/MCalibrationCalc.cc
1844 - removed initialization of non-used nsamples
1845
1846 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.[h,cc],
1847 mcalib/MCalibrationCalc.[h,cc]
1848 macros/calibration.C
1849 - implemented new histograms:
1850 HSinglePheFADCSlices and HPedestalFADCSlices
1851 They are filled with the FADC slice values of either a s.phe.
1852 event or a pedestal event. The decision is taken with the
1853 variable: MCalibrationCalc::fBlindPixelSinglePheCut, to be set
1854 with a setter
1855
1856 * mtools/MFFT.[h,cc]
1857 - PowerSpectrumDensity of TArrayI implemented
1858
1859
1860
1861 2004/02/12: Thomas Bretz
1862
1863 * mbase/MArray.[h,cc]:
1864 - changed argument of CutEdges from pointer to reference
1865
1866 * mgeom/MGeomPix.h:
1867 - fixed calculation of area of pixel. It was too big for a
1868 factor of 2
1869
1870 * mjobs/MJCalibration.cc:
1871 - slight change of name of a MHCamera
1872
1873 * manalysis/MExtractSignal.cc:
1874 - slight change to the creation of the satpixels list
1875
1876 * mcalib/MHCalibrationBlindPixel.cc, mcalib/MHCalibrationPixel.cc,
1877 mcalib/MHGausEvent.cc:
1878 - corrected call to ProjectArray
1879 - corrected call to CutEdges
1880
1881 * mfilter/MFCosmics.[h,cc]:
1882 - small fixes to logging output
1883 - small simplification to return statement
1884 - declared CosmicsRejection const
1885
1886 * mhbase/MH.[h,cc]:
1887 - changed argument of ProjectArray from pointer to reference
1888 - added missing calcualtion of minimum
1889 - removed obsolete SetEntries
1890 - changed SetDirectory from NULL to gROOT
1891
1892
1893
1894 2004/02/12: Javier López
1895
1896 * macros/pointspreadfunction.C
1897 - added new macro that fits with a 2D gaussian the DC spot for an
1898 star. It gives you the RMS of the PSF and the center of the star,
1899 very useful for misspointing studies.
1900
1901
1902
1903 2004/02/11: Hendrik Bartko
1904
1905 * manalysis/MExtractSignal2.cc:
1906 - introduced a validity check for the set-function of the window
1907 size (even number of slices, WindowSize < NumberSlices)
1908
1909 * manalysis/MArrivalTimeCalc2.[h,cc], manalysis/Makefile,
1910 manalysis/AnalysisLinkDef.h:
1911 - new: introduced the calculation of the arrival time as the signal
1912 weighted mean of the time slices in the maximum window
1913
1914
1915
1916 2004/02/11: Markus Gaug
1917
1918 * mcalib/MCalibrationCalc.cc:
1919 - the blind pixel signal extractor introduced one week ago, counted
1920 one FADC slice too little, thus the normalization w.r.t. pedestals
1921 was wrong. Now corrected.
1922
1923 * manalysis/MExtractSignal.cc, manalysis/MExtractSignal2.cc:
1924 - when "WARNING - Lo Gain saturated" occurs, display also the
1925 corr. pixel numbers.
1926
1927 * mbase/MArray.[h,cc]:
1928 - introduced function to cut array edges with zeros.
1929 (Thomas, should we keep it there or move it to another class? )
1930
1931 * mcalib/MCalibrationCalc.[h,cc]:
1932 - new function SetBlindPixelRange to set start and end of FADC slices
1933 used for the blind pixel signal extraction.
1934 - remove fEvents which are not necessary any more after the shift
1935 to MFCosmics.
1936
1937 * mcalib/MHCalibration(Blind)Pixel.[h,cc]:
1938 - show the fourier spectrum now with axes in frequency [Hz] instead
1939 of inverted events.
1940
1941 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
1942 - new base class for all kind of events with variables having a
1943 Gaussian distribution. Will serve as base class for the
1944 existing and new calibration histogram classes.
1945
1946
1947
1948 2004/02/11: Abelardo Moralejo
1949
1950 * mmain/MEventDisplay.cc
1951 - Switched order of MMcPedestalCopy and MCerPhotCalc in tasklist:
1952 MMcPedestalCopy must be executed earlier!
1953
1954
1955
1956 2004/02/10: Raquel de los Reyes
1957
1958 * mhist/MHPixVsTime.[h,cc]:
1959 - Added a default draw function and replaced the TGraph object
1960 by a pointer to a TGraph object.
1961
1962 * mreport/MReportTrigger.h:
1963 - Now it dereives from a MCamEvent class and implemented the
1964 GetPixContent() and DrawPixelContent() functions.
1965
1966 * maccros/CCDataCheck.C:
1967 - An update of the previous macro. New plots: subsystems status and
1968 macrocells trigger.
1969
1970
1971
1972 2004/02/10: Markus Gaug
1973
1974 * mcalib/MCalibrationCam.cc:
1975 - fixed documentation
1976
1977 * mhbase/MH.[h,cc]:
1978 - new function ProjectArray
1979
1980 * mcalib/MHCalibrationPixel.[h,cc],
1981 mcalib/MHCalibrationBlindPixel.[h,cc]:
1982 - use ProjectArray from MH to plot the projection of the fourier
1983 spectrum
1984
1985 * mfilter/MFCosmics.[h,cc], mfilter/Makefile,
1986 mfilter/FilterLinkDef.h:
1987 - new filter removing cosmics, the same as in MCalibrationCalc
1988 where it was removed now.
1989 Call: MFCosmics cosmics;
1990 MContinue cont(&cosmics);
1991 tlist.AddToList(&cont);
1992
1993 * mcalib/MCalibrationCalc.[h,cc]:
1994 - removed cosmics rejection from there
1995
1996 * macros/calibration.C, mjobs/MJCalibration.cc:
1997 - changed cosmics rejection to the filter algorithm
1998
1999
2000
2001 2004/02/09: Markus Gaug
2002
2003 * mcalib/MCalibrationBlindPix.[h,cc]:
2004 - added histogram to display the average in FADC slices of all
2005 single and double phe events
2006
2007 * mcalib/MCalibrationCalc.cc:
2008 - fill histograms of single-phe events with higain and logain
2009 sampls
2010
2011 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationCalc.cc,
2012 mcalib/MCalibrationConfig.h:
2013 - take all pixel areas out of MGeomPix::GetA(), remove all previous
2014 areas
2015 - calculate photon fluxes from blind pixel and PIN diode, use
2016 area only to fill the conversion factors in MCalibrationPix
2017
2018
2019 * mcalib/MJCalibration.cc:
2020 - display of number of photons for Blindpixel and PIN Diode Method
2021 changed to display of photon flux which is the actually
2022 calculated quantity
2023
2024
2025
2026 2004/02/09: Thomas Bretz
2027
2028 * mbadpixels/*:
2029 - added
2030
2031 * Makefile:
2032 - added MBadPixels
2033
2034 * manalysis/MGeomApply.cc:
2035 - fixed class description
2036
2037 * mjobs/MJCalibration.[h,cc], mjobs/MJExtractSignal.[h,cc]:
2038 - added bad pixel treatment
2039
2040 * mjobs/MJPedestal.[h,cc]:
2041 - reorganized order of functions
2042 - removed a nonsense scrren output (some BLABABLA or so)
2043
2044 * mjobs/Makefile:
2045 - added include for mbadpixels
2046
2047 * mmain/MBrowser.cc:
2048 - do not call construtor of TGTReeLBEntry if pic0=0
2049
2050
2051
2052 2004/02/09: Raquel de los Reyes
2053
2054 * mcamera/MCameraLids.h, mreport/MReportCamera.h
2055 - Added the "Get" functions to access the private data
2056 members of the class.
2057
2058
2059
2060 2004/02/09: Markus Gaug
2061
2062 * MMcCalibrationUpdate.cc, MCalibrate.cc, MCalibrationPix.cc,
2063 MCalibrationPix.h:
2064 - replace MCalibrationPix->IsChargeFitValid() by IsChargeValid()
2065 because we can calibrate with the histogram mean and RMS even
2066 if the fit is not OK. Thus, there is a question: IsFitted() and
2067 IsChargeValid(), i.e. does the charge make any sense?
2068
2069 * MCalibrationCam.cc, MCalibrationConfig.h, MCalibrationCalc.cc:
2070 - found serious bug in calculation of conversion factors for the
2071 outer pixels:
2072 GetMeanConversionBlindPixelMethod and
2073 GetMeanConversionPINDiodeMethod
2074 did not correct for the area of the outer pixel, this did only
2075 MCalibrationCam::GetPixelContent which is not used by MCalibrate
2076
2077
2078
2079 2004/02/06: Markus Gaug
2080
2081 * mgeom/MGeomCam.h
2082 - replaced in Comment of fPixRatio:
2083 "ratio between size of pixel idx and pixel 0" by
2084 "ratio between size of pixel 0 and pixel idx"
2085
2086 * manalysis/MPedestalCam.cc
2087 - catch calls to MHPedestalPixel in case that they are not filled
2088 This led previous calls to segmentation violations
2089 - remove include of MHExtractedSignalPix
2090
2091 * manalysis/MHExtractedSignalPix.[h,cc]
2092 - is everything in MHPedestalPixel, so removed it again
2093
2094 * mjobs/MJPedestal.cc
2095 - put the projections into Display()
2096 - correct the input of Display (0: pedestal, 1: pedestalerror,
2097 2: pedRMS, 3: pedRMSerror)
2098
2099 * manalysis/MHPedestalPixel.cc
2100 - increased number of bins in for charges plot
2101
2102 * mtools/MFFT.[h,cc]
2103 - possibility to have PSD directly from TArray
2104
2105 * mjobs/MJCalibration.[h,cc]
2106 - fixed displays
2107 - replaced MExtractSignal by MExtractSignal2
2108
2109 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc],
2110 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationBlindPix.[h,cc],
2111 mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationPINDiode.[h,cc]:
2112 - remove histograms MHChargevsN..., now keep TArrays directly
2113 - check for oscillations for all pixels (and you will not trust
2114 your eyes when you look at the results :-((((
2115
2116 * mcalib/MCalibrationCalc.[h,cc]
2117 - remove ArrivalTime -> go to separate class
2118 - remove BlindPixel and PIN Diode overflow, now handled directly
2119 inside the corr. classes.
2120 - remove SkipTimeFits -> go the arrival time class
2121
2122 * mcalib/MCalibrationCam.h
2123 - new getters for number of photons
2124 - removed timeslicewidth -> go the corr. time containers
2125
2126 * mcalib/MCalibrationCam.cc
2127 - removed times of GetPixelContent
2128 - added OscillationChecks in GetPixelContent
2129
2130 * manalysis/MMcCalibrationUpdate.cc
2131 - remove calpix.SkipTimeFits which is now obsolet
2132
2133 * macros/calibration.C
2134 - all previous changes now in this macro.
2135 - (NB: Thomas, du brauchst in MJCalibration nicht mehr aendern,
2136 das ging diesmal in einem Aufwasch)
2137
2138
2139
2140 2004/02/06: Thomas Bretz
2141
2142 * mhist/MHPixVsTime.[h,cc]:
2143 - changed such that you can set the name of the time container now
2144
2145 * mraw/MRawRunHeader.[h,cc]:
2146 - added GetMaxPixId()
2147
2148 * mraw/MRawEvtData.cc:
2149 - fixed wrong size calculation for fABflags
2150
2151
2152
2153 2004/02/06: Oscar Blanch
2154
2155 * mmc/MFadcDefine.h && mmc/MMcFadcHeader.cxx
2156 - We cahnged the name (and values) of the global variable
2157 MFADC_RESPONSE_AMPLITUDE to MFADC_RESPONSE_INTEGRAL
2158
2159
2160
2161 2004/02/05: Markus Gaug
2162
2163 * mcalib/MHCalibrationPixel.[h,cc]
2164 - put an NDF limit for the fit
2165 - removed all TStrings and replace them by Form(..)
2166 - Check for nan's of all returned fit values
2167
2168 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc:
2169 - reshuffled HiLoGainConversion, calculation of F-Factor method,
2170 - calculation of total F-Factor of the readout.
2171
2172 * mcalib/MCalibrationCam.cc
2173 - include relative times to display with GetPixelContent
2174
2175 * mcalib/MCalibrationCalc.[h,cc]
2176 - flag to skip Hi-Lo Calibration
2177 - Hi-LO Graph not filled any more after overflow of ChargevsN
2178 - fill the blind pixel differently from the rest of pixels
2179
2180 * mcalib/MCalibrate.cc:
2181 - call to const MCalibrationPix &pix replaced by MCalibrationPix &pix
2182
2183 * manalysis/MArrivalTimeCalc.cc
2184 - default step width 100 ps.
2185 - look for half maximum (at rising edge)
2186
2187 * manalysis/MExtractSignal.[h,cc]
2188 - removed uncommented code (arrival time)
2189 - set start byte back by one like it was before TB's changes
2190 (does not affect the calculation of number of FADC slices)
2191
2192 * manalysis/MExtractSignal2.[h,cc]
2193 - removed uncommented code (arrival time)
2194
2195 * manalysis/MHPedestalPixel.[h,cc]
2196 - is now filled with total pedestals (not per slice), but results are
2197 renormalized to values per slice (this is not to screw up with the
2198 pedestal RMS and the derived uncertainties)
2199 - new function Renorm(nslices)
2200
2201 * manalysis/MPedestalCam.[h,cc]
2202 - introduced function Clone() (like proposed by TB)
2203 - call to MHPedestalPixel operator() not const any more
2204 - take out lots of uncommented code
2205 - found bug in initialization of hists. SetupFill is called in
2206 PreProcess, therefore, TObjArray is not yet enlarged there.
2207 Now, InitUseHists is called in Fill
2208 - MHPedestalPixel is now filled with total pedestals (not per slice),
2209 but results are
2210 renormalized to values per slice (this is not to screw up with the
2211 pedestal RMS and the derived uncertainties)
2212
2213 * manalysis/MPedCalcPedRun.cc
2214 - added author
2215 - split calculation of RMS into two steps to make it more clear to
2216 the user
2217
2218 * macros/calibration.C
2219 - found bug introduced two days ago, namely calculating pedestlas with
2220 MExtractSignal2 which is now fixed
2221 - Skip HiLoConversionCalibration
2222
2223
2224
2225 2004/02/05: Abelardo Moralejo
2226
2227 * macros/starmc2.C
2228 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add
2229 for both MMcEvt and MMcRunHeader since these containers are
2230 not present in real data. Name of macro is no longer adequate if
2231 we will use it for calibrated real data (to be changed if so).
2232
2233
2234
2235 2004/02/05: Sebastian Raducci
2236
2237 * mtools/MCubicSpline.[h,cc]
2238 - added
2239 - this class will take the place of the TSpline class to
2240 calculate arrival times
2241
2242 * mtools/MCubicCoeff.[h,cc]
2243 - added
2244 - this class is used by MCubicSpline to store coefficients
2245
2246 * macros/spline.C
2247 - added
2248 - test macro. Shows how to use the MCubicSpline class
2249 - it could be used to test the methods of the Spline class
2250
2251
2252
2253 2004/02/05: Thomas Bretz
2254
2255 * mmain/MBrowser.cc:
2256 - fixed a double deletion of a TGLayoutHints
2257
2258
2259
2260 2004/02/04: Markus Gaug
2261
2262 * mmain/MBrowser.cc:
2263 - corrected TGTReeLBEntry for TGTreeLBEntry
2264
2265
2266
2267 2004/02/04: Thomas Bretz
2268
2269 * manalysis/MExtractSignal2.cc:
2270 - don't allow odd numbers for the window size
2271
2272 * mfilter/MFilterList.cc:
2273 - corrected a wrong logging message
2274
2275 * mmain/MBrowser.cc:
2276 - added '/data/MAGIC' as shortcut in the combo box
2277
2278 * mraw/MRawEvtPixelIter.cc:
2279 - optimized calculation of MaxIdx
2280
2281
2282
2283 2004/02/04: Abelardo Moralejo
2284
2285 * macros/starmc2.C
2286 - removed unnecessary variables BinsHigh, BinsLow
2287
2288
2289
2290 2004/02/04: Markus Gaug
2291
2292 * manalysis/MPedestalCam.[h,cc], manalysis/MPedestalPix.[h,cc],
2293 manalysis/MPedCalcPedRun.[h,cc], manalysis/MHPedestalPixel.[h,cc],
2294 macros/calibration.C:
2295 - histograms are now filled with MFillH as proposed and coded by
2296 Thomas Bretz. Some modifications had to be done, however.
2297 - Class to hold MHPedestalPixel is still MPedestalCam
2298 - MPedCalcPedRun does nothing any more (except from what is was
2299 doing before)
2300
2301 * manalysis/MExtractSignal.cc
2302 - remove uncommented code
2303
2304 * mcalib/MCalibrationCalc.[h,cc]
2305 - modified way to handle histogram overflow: Now flags are set and
2306 ChargevsN histogram is not tried to be filled subsequently
2307
2308
2309
2310 2004/02/03: Markus Gaug
2311
2312 * manalysis/MHExtractedSignalPix.[h,cc]
2313 - added Thomas B. modified version of MHPedestalPixel. Later will
2314 remove MHPedestalPixel
2315
2316 * manalysis/MCalibrationPix.[h,cc], manalysis/MHCalibrationPixel.[h,cc],
2317 manalysis/MCalibrationCam.cc, macros/calibration.C:
2318 - now split completely absolute and relative times. Absolute
2319 times are not fitted, but their histogram mean and rms are
2320 returned.
2321
2322
2323
2324 2004/02/03: Thomas Bretz
2325
2326 * mfileio/MReadTree.cc:
2327 - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
2328
2329 * manalysis/MExtractSignal.[h,cc]:
2330 - moved code to extract the signal from Process to
2331 new member function FindSignal, I left the arrival time
2332 extraction as commented-out code in the code just as a
2333 demonstration to do this very fast.
2334
2335
2336
2337 2004/02/02: Markus Gaug
2338
2339 * manalysis/MPedCalcPedRun.cc
2340 - corrected formulae in Class description
2341
2342 * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
2343 manalysis/MMcCalibrationUpdate.cc:
2344 - calculate relative times and absolute times. Fit only
2345 the relative ones.
2346
2347
2348
2349 2004/02/02: Abelardo Moralejo
2350
2351 * manalysis/MMcCalibrationUpdate.cc, MMcPedestalCopy.cc
2352 - removed file type check (MC or data) from PreProcess since now
2353 run headers are not yet known at that point.
2354
2355 * mcalib/MMcCalibrationCalc.cc
2356 - same as above.
2357
2358 * NEWS
2359 - updated.
2360
2361
2362
2363 2004/02/02: Thomas Bretz
2364
2365 * manalysis/MExtractSignal2.[h,cc]:
2366 - added new task which takes a given number of slices with the
2367 highest integral content as signal.
2368
2369 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2370 - added MExtractSignal2
2371
2372
2373
2374 2004/01/30: Abelardo Moralejo
2375
2376 * macros/starmc.C
2377 - changed default FADC integration range (more adequate for coming
2378 camera version).
2379
2380 * macros/mccalibrate.C, starmc2.C
2381 - added. First macro transforms input files from camera simulation
2382 into files with pixel data already calibrated in photons. The
2383 second reads in an already calibrated data file and produces an
2384 output file with Hillas parameters. Both together do the same as
2385 starmc.C, but it is convenient to have files containing
2386 calibrated pixel information.
2387
2388
2389
2390 2004/01/30: Thomas Bretz
2391
2392 * mbase/MDirIter.h:
2393 - added GetNumEntries
2394
2395 * mhist/MHEvent.cc:
2396 - added a dynamic_cast from MParContainer to MCamEvent to get the
2397 correct pointer to the correct base-class.
2398
2399 * mbase/MStatusDisplay.cc:
2400 - In EventInfo check whether gPad==0
2401
2402 * mfileio/MReadMarsFile.cc:
2403 - removed reading RunHeaders from PreProcess, this resulted
2404 in strange behaviour of writing RunHeaders
2405 - fixed consistency check for RunType accordingly
2406
2407 * mfilter/MFilterList.cc:
2408 - do not skip adding filter if only a filter with the same name
2409 exists
2410
2411 * mraw/MRawFileRead.cc:
2412 - added an output message if run header is not accessible
2413
2414 * mraw/MRawRunHeader.[h,cc]:
2415 - initialize fRunType to new enum kRTNone
2416
2417 * mfilter/MFGeomag.cc:
2418 - set fResult to kFALSE at the beginning of Process
2419 - according to this removed setting fResult=kFALSE before return
2420 - replaced some float by Float_t
2421 - added some const-qualifiers
2422 - replaced (rig<0.5/pr*R*(r2-r1)+r1) by (rig-r1)*pr<rnd
2423 with rnd = R * (r2-r1)/2 to make sure that we cannot
2424 devide by 0
2425
2426 * manalysis/MPedCalcPedRun.cc:
2427 - added some comments
2428
2429 * Makefile:
2430 - added mjobs
2431
2432 * mjobs/*:
2433 - added
2434
2435 * mbase/Makefile, mbase/BaseLinkDef.h:
2436 - added MRunIter
2437
2438 * mbase/MRunIter.[h,cc]:
2439 - added
2440
2441
2442
2443 2004/01/30: Markus Gaug
2444
2445 * manalysis/MPedestalCam.h
2446 - added function IsUsedHists()
2447
2448 * manalysis/MPedestalCam.cc
2449 - modified GetPixelContent
2450
2451 * manalysis/MPedestalCam.cc, manalysis/MPedCalcPedRun.cc:
2452 - include storage of number of used FADC slices to compare later
2453 the pedestal per slice ( and sigma per slice)
2454 - return relative differences in GetPixelContent
2455
2456 * mcalib/MCalibrationCalc.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc]:
2457 - fBlindPixelId and fPINDiodeId now like in PedestalCam
2458 - fill Blind Pixel with information about its fitted pedestal if
2459 available
2460 - initialize charges histogram with a bigger range
2461 - use pedestal information to constrain the pedestal fit ranges
2462
2463 * manalysis/MHPedestalPixel.cc
2464 - initialize charges histogram with a bigger range
2465
2466 * macros/calibration.C
2467 - SetRange of MExtractSignal to 1,14 (see emails of yesterday)
2468 - apply new GetPixelContents of MPedestalCam (more calculations
2469 and displays of errors, correction for different FADC slice
2470 number)
2471
2472 * manalysis/MExtractSignal.cc
2473 - not access to MArrivalTime any more. The same information is
2474 stored in MRawEvt->GetPixelContent(...)
2475
2476 * manalysis/MCalibrationCalc.cc
2477 - retrieve default arrival time from MRawEvt
2478
2479 * manalysis/MCalibrationBlindPix.cc, manalysis/MCalibrationPix.cc
2480 - check for NaN's in fit results
2481
2482
2483
2484 2004/01/29: Abelardo Moralejo
2485
2486 * mfileio/MWriteFile.h
2487 - added missing declaration of ReInit
2488
2489 * manalysis/MMcCalibrationUpdate.cc
2490 - added call to MCalibrationCam::SetBlindPixelMethodValid(kTRUE)
2491 to adapt to recent changes in MCalibrate.
2492
2493
2494
2495 2004/01/29: Thomas Bretz
2496
2497 * manalysis/MArrivalTime.h, manalysis/MCameraData.h,
2498 manalysis/MCerPhotEvt.h, manalysis/MExtractSignalCam.h,
2499 manalysis/MPedPhotCam.h, manalysis/MPedestalCam.h,
2500 mcalib/MCalibrationCam.h, mcamera/MCameraDC.h,
2501 mraw/MRawEvtData.h, mreflector/MRflEvtData.h:
2502 - split derivement into MParContainer and MCamEvent
2503
2504 * manalysis/MExtractSignalCam.[h,cc]:
2505 - removed obsolete MExtractSignal::ReInit
2506 - added -> to fArray
2507
2508 * mbase/MParList.h:
2509 - added a new bit kIsProcessing
2510
2511 * mbase/MTaskList.cc:
2512 - fixed the handling of kDoNotReset and the bahaviour of
2513 SetReadyToSave, such that it is possible to write all
2514 headers
2515
2516 * mfileio/MWriteFile.cc:
2517 - added ReInit which also calls CheckAndWrite
2518
2519 * mgui/MCamEvent.h:
2520 - does not derive from MParContainer anymore
2521
2522
2523
2524 2004/01/29: Markus Gaug
2525
2526 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
2527 mcalib/MCalibrationConfig.h
2528 - put gkCalibrationBlindPixelId and gkCalibrationPINDiodeId
2529 directly into the corresponding classes.
2530
2531
2532
2533 2004/01/29: Nicola Galante
2534
2535 * mhistmc/MHMcTriggerLvl2.[h,cc]:
2536 - In method MHMcTriggerLvl2::GetHistByName(const TString name)
2537 added string checking to return also
2538 fHistCellPseudoSize, fHistCellPseudoSizeNorm
2539 and fHistCellPseudoSizeEnergy.
2540 - Added inline functions GetHistCellPseudoSize() and
2541 GetHistCellPseudoSizeNorm().
2542
2543
2544
2545 2004/01/28: Javier Rico
2546
2547 * mcalib/MCalibrate.[h.cc]
2548 - include possibility to select the calibration method to be used
2549
2550
2551
2552 2004/01/28: Markus Gaug
2553
2554 * mcalib/MCalibrate.[h.cc]
2555 - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
2556
2557 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
2558 - included flags to indicate if Blind Pixel Method or PIn Diode
2559 method was OK. Up to now, program stopped, if one of the two
2560 methods was chosen but not able to being executed.
2561
2562 * manalysis/MArrivalTimeCalc.cc, manalysis/MExtractSignals.cc,
2563 manalysis/MGeomApply.cc:
2564 - put all missing InitSize(npixels) into MGeomApply
2565
2566 * manalysis/MPedCalcPedRun.[h,cc], manalysis/MPedestalCam.[h,cc],
2567 manalysis/MPedestalPix.[h,cc], manalysis/MHPedestalPixel.[h,cc],
2568 manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2569 - include possibility to fit the pedestals with Gaussian.
2570 - old methods are not affected.
2571 - add new method with MPedCalcPedRun::SetUseHists()
2572
2573
2574
2575 2004/01/28: Abelardo Moralejo
2576
2577 * mcalib/MMcCalibration.cc
2578 - fixed wrong variable type in call to TH1F constructor (number of
2579 bins is now integer), which resulted in a compilation warning.
2580
2581
2582
2583 2004/01/28: Thomas Bretz
2584
2585 * manalysis/MPedestalCam.cc:
2586 - removed unwanted CheckBound from operators. CheckBounds is ONLY
2587 ment for really old MC files and will be removed in the future
2588 anyhow.
2589
2590 * mcalib/MHCalibrationPixel.h:
2591 - removed obsolete include of MFFT
2592
2593 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
2594 manalysis/MPedestalCam.[h,cc]:
2595 - removed use of obsolete MPedestalCam::CheckBounds. This was
2596 a workaround for a 'bug' in very old camera files, which is not
2597 necessary anymore.
2598
2599 * manalysis/MCerPhotAnal2.[h,cc]:
2600 - replaced MPedestalCam by MPedPhotCam
2601
2602 * manalysis/MExtractSignal.cc:
2603 - some small simplification to the signal extraction
2604 - removed some obsolete variables
2605 - replaced for by while
2606 - removed obsolete casts
2607
2608 * mmain/MEventDisplay.cc:
2609 - gave names to the filters
2610 - removed adding MHCamera to fList because it was deleted twice
2611
2612 * mhist/MHCamera.cc:
2613 - fixed usage of fPainter in Paint() - title was not updated
2614 correctly
2615
2616
2617
2618 2004/01/28: Sebastian Raducci
2619
2620 * manalysis/MArrivalTime.[h,cc]:
2621 - removed all the code relative to the cluster evaluation
2622
2623
2624
2625 2004/01/27: Markus Gaug
2626
2627 * manalysis/MPedestalPix.cc:
2628 - initialize default values to 0 instead of -1.
2629
2630 * manalysis/MPedestalCam.[h,cc]:
2631 - include CheckBounds, also in operator[]
2632
2633 * mcalib/MCalibrationCam.[h,cc]:
2634 - apparently, there was a reference to InitSize(UInt_t i) instead
2635 of InitSize(Int_t i), where compiler complained, now changed
2636
2637 * mcalib/MHCalibration*, mcalib/MCalibration*:
2638 - fixed all Clear()'s, Reset()'s, direct intializers
2639
2640
2641
2642 2004/01/27: Thomas Bretz
2643
2644 * mdata/MDataChain.cc:
2645 - added '%' to supported operators
2646
2647
2648
2649 2004/01/26: Nicola Galante
2650
2651 * manalysis/MMcTriggerLvl2.[cc,h]:
2652
2653 - Defined some static constants to avoid ugly "magic numbers"
2654 in arrays: gsNCells, gsNTrigPixels,
2655 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
2656 - Added method
2657 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
2658 which computes compact pixels into a given L2T macrocell.
2659 - Added method
2660 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
2661 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
2662 macrocells
2663 - Added method
2664 MMcTriggerLvl2::GetCellPseudoSize() const
2665 which returns fCellPseudoSize
2666 - Added method
2667 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
2668 which controls whether a pixel belongs to a given L2T cell.
2669 - Added method
2670 MMcTriggerLvl2::GetMaxCell() const
2671 which returns fMaxCell, the cell with the maximum
2672 fCellPseudoSize.
2673
2674
2675
2676 2004/01/26: Markus Gaug, Michele Doro
2677
2678 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
2679 - moved calculation of arrival time from MArrivalTime to
2680 MArrivalTimeCalc. MArrivalTime does not do any Process-job
2681 anymore
2682 - TSpline5 now on stack.
2683 - function to set the stepsize
2684
2685 * mcalib/MHCalibrationBlindPixel.[h,cc]:
2686 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
2687 - implement combined Polya fit and Michele's back-scattered electron
2688 fit
2689
2690 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
2691 mcalib/MCalibrationPINDiode.cc:
2692 - combine FitChargeHiGain and FitChargeLoGain into one function
2693
2694 * macros/calibration.C
2695 - improve double gauss fit a bit
2696
2697
2698
2699 2004/01/26: Thomas Bretz
2700
2701 * mraw/MRawEvtPixelIter.[h,cc]:
2702 - removed member function GetNumPixels. For more details see mantis.
2703
2704 * manalysis/MArrivalTime.[h,cc]:
2705 - reorganized includes
2706 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
2707 definition
2708 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
2709 PROGRAM
2710
2711 * manalysis/MArrivalTimeCalc.[h,cc]:
2712 - reorganized includes
2713 - removed many obsolete code, exspecially copy&paste relicts!
2714 - fixed usage of InitSize
2715 - removed CleanArray. Reset() is called automatically before Process()
2716
2717 * manalysis/MExtractedSignalCam.[h,cc]:
2718 - added SetLogStream
2719 - removed obsolete include MGeomCam
2720 - replaced PrintOut by Print
2721 - added const-qualifiers to all Getters
2722 - fixed documentation
2723
2724 * manalysis/MExtractedSignalPix.[h,cc]:
2725 - replaced PrintOut by Print
2726 - fixed documentation
2727
2728 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
2729 - replaced memset by Reset()
2730
2731
2732
2733 2004/01/24: Abelardo Moralejo
2734
2735 * macros/starmcstereo.C
2736 - Added. Example of how to run the analysis chain for MC files
2737 containing simulation of stereo systems of 2 telescopes.
2738
2739 * mcalib/MCalibrate.cc
2740 - Added check that value of signal from MExtractedSignalPix is not
2741 the default (error) value. In such a case, the signal in
2742 MCerPhotEvt is now set to 0. Before, all pixels got very high
2743 values in MCerPhotEvt in case the MRawEvtData object for the
2744 event was missing in the file. This happened in MC files, in
2745 which in some circumstances an event is written without the
2746 pixel information (for instance, when running stereo simulations
2747 the pixel data is missing for non-triggered telescopes, but the
2748 event headers are present).
2749
2750
2751
2752 2004/01/23: Markus Gaug
2753
2754 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
2755 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
2756 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
2757 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
2758 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
2759 - use MArrivalTime for Storage (or calculation) of time
2760 in MExtractSignal
2761 - pass from TH1I histos to TH1F for times
2762
2763 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
2764 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
2765 mcalib/MCalibrationCalc.[h,cc]:
2766 - clean up setters
2767 - pass to bit-fields for all flags
2768
2769 * mcalib/MCalibrationCam.cc
2770 - exclude Blind Pixel from Camera display
2771 - do not fill &val when return kFALSE
2772
2773 * macros/calibration.C
2774 - include functions to exclude the blind pixel,
2775 calculation of times and quality checks
2776
2777
2778
2779 2004/01/23: Abelardo Moralejo
2780
2781 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
2782 - Added support (using AddSerialNumber) for stereo MC files.
2783
2784
2785
2786 2004/01/23: Thomas Bretz
2787
2788 * mbase/MAstro.cc:
2789 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
2790
2791 * mreport/MReport*.[h,cc]:
2792 - changed all classes to return Int_t instead of Bool_t in
2793 InterpreteBody
2794 - changed MReportFileRead such, that a wrong line results in
2795 skipping the line instead of abort reading.
2796
2797 * manalysis/MExtractSignal.cc:
2798 - do not print information for each pixel - it's too much.
2799
2800 * mbase/MStatusDisplay.cc:
2801 - when reading a status display do not display tabs with
2802 the same name than one which is already existing.
2803
2804 * mcalib/MCalibrate.cc:
2805 - directly store pointer to pixel when setting saturation flag
2806
2807 * mcamera/MCameraDC.cc:
2808 - fixed some comments
2809
2810 * mhist/MHCamEvent.cc:
2811 - fixed a crash when no geometry was available
2812
2813 * mhist/MHCamera.[h,cc]:
2814 - removed obsolete member function SetPix
2815
2816 * mbase/MStatusDisplay.[h,cc]:
2817 - added EventInfo member function
2818 - implemented preliminary redirection of GetObjectInfo to
2819 StatusLine2 -> An own status line for this is missing
2820
2821 * manalysis/MExtractSignal.[h,cc]:
2822 - implemented StreamPrimitive
2823 - changed deafults to be static const data members
2824
2825 * manalysis/MGeomApply.[h,cc]:
2826 - implemented StreamPrimitive
2827
2828
2829
2830 2004/01/23: Abelardo Moralejo
2831
2832 * manalysis/MMcCalibrationUpdate.[h,cc]
2833 - Added check to guarantee that the FADC simulation parameters of
2834 all read files (those used for calibration and those analyzed)
2835 are the same.
2836 - Added missing support for analysis of stereo files.
2837
2838 * mcalib/MMcCalibrationCalc.cc
2839 - Removed obsolete FIXME comment.
2840 - Added missing support for analysis of stereo files.
2841
2842
2843 2004/01/23: Raquel de los Reyes
2844
2845 * macros/CCDataCheck.C
2846 - Added the temperature distribution of the optical links
2847 and the plots of the LV power supplies.
2848 * mcamera/MCameraLV.h
2849 - Added the "Get" functions to access the private data
2850 members of the class.
2851
2852
2853 2004/01/22: Abelardo Moralejo
2854
2855 * manalysis/MMcCalibrationUpdate.[h,cc]
2856 - Now ratio of high to low gain is taken from MCalibrationCam if
2857 it existed previously in the parameter list, instead of being
2858 read again from the MMcFadcHeader. Removed Setter function for
2859 fADC2PhInner, no longer necessary. Fixed error regarding the
2860 pedestal conversion to photons (did not read conversion factor
2861 from preexisting MCalibrationCam object).
2862
2863 * mcalib/MMcCalibrationCalc.cc
2864 - Changed parameters of the histogram, and also the quantity being
2865 histogrammed. Check that input data come from a noiseless camera
2866 file before proceeding to do the calibration. Introduced lower
2867 size in cut for calibration. Now rhe calibration constant is not
2868 calculated from the mean of photons/ADC counts, but from the peak
2869 of the histogram.
2870
2871 * macros/starmc.C
2872 - Introduced new scheme. Now there are two loops over two different
2873 sets of files. First loop calculates the calibration constants,
2874 second one does the analysis. Introduced comments. Now the
2875 histogram used in the light calibration is written to the output
2876 file.
2877
2878
2879
2880 2004/01/22: Thomas Bretz
2881
2882 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
2883 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
2884 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
2885 mcalib/MCalibrationBlindPixel.[h,cc],
2886 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
2887 mcalib/MHCalibrationBlindPixel.[h,cc],
2888 mcalib/MHCalibrationPINDiode.[h,cc]:
2889 - cleaned up includes
2890
2891
2892
2893 2004/01/22: Raquel de los Reyes
2894
2895 * macros/CCDataCheck.C
2896 - macro to check the data from the central control (.rep files).
2897
2898
2899
2900 2004/01/22: Markus Gaug
2901
2902 * macros/calibration.C
2903 - made MStatusDisplay 3 bit smaller
2904
2905 * manalysis/MExtractSignal.cc
2906 - put fSignals->SetUsedFADCSlices into PreProcess
2907
2908 * manalysis/MPedCalcPedRun.cc
2909 - calculate PedRMS as RMS of the sums, later renormalized to units
2910 of RMS/slice (eliminate the wrong effect of odd and even slices)
2911
2912 * mcalib/MCalibrationCalc.cc
2913 - if bit SkipBlindPixelFit is set, now number of photons outside
2914 plexiglass is not intended to be calculated any more (previous
2915 bug)
2916 - exclude excluded pixels in eventloop
2917
2918 * mcalib/MHCalibrationBlindPixel.[h,cc]
2919 - move functions to pointer again (otherwise, Clone will give
2920 strange results)
2921
2922
2923
2924 2004/01/21: Abelardo Moralejo
2925
2926 * mcalib/MMcCalibrationCalc.[h,cc]
2927 - Added. First version of the task intended to calculate the
2928 conversion factors from ADC counts to photons in the MC. It has
2929 a different aim than the recently renamed class
2930 "MMcCalibrationUpdate" (which takes care that the correct
2931 pedestals and conversion factors are supplied to each event, but
2932 does not really calculate anything).
2933
2934 * mcalib/Makefile, CalibLinkDef.h
2935 - Added new class MMcCalibrationCalc
2936
2937 * manalysis/MMcCalibrationUpdate.[h,cc]
2938 - Now the container MCalibrationCam is not created or modified if
2939 it is found that one such container already exists in the
2940 Parameter list (from a previous calibration).
2941
2942
2943
2944 2004/01/21: Thomas Bretz
2945
2946 * mraw/MRawRead.cc:
2947 - restore the fake time for all runs (current time stamp in
2948 the data seems to be toally nonsense)
2949
2950 * mraw/MRawEvtHeader.cc:
2951 - removed decoding of real time (current time stamp in the data
2952 seems to be toally nonsense)
2953
2954
2955
2956 2004/01/21: Abelardo Moralejo
2957
2958 * mmc/MMcEvt.hxx
2959 - Uncommented 6 Getter functions (those regarding the number of
2960 photons surviving the different stages of simulation).
2961
2962 * manalysis/MMcCalibrationUpdate.[h,cc]
2963 - Added (see below).
2964
2965 * manalysis/MMcCalibrationCalc.[h,cc]
2966 - Removed: changed name of this class to MMcCalibrationUpdate,
2967 which is more representative of what it really does. Moved
2968 the filling of the MCalibrationCam container from Process to
2969 ReInit, since it does not change on an event by event basis.
2970 Simplified PreProcess (MCalibrationCam was searched for twice).
2971 Updated class description and comments.
2972
2973 * manalysis/Makefile, AnalysisLinkDef.h
2974 - Adapted to change above
2975
2976 * macros/starmc.C
2977 - Adapted to change above. Changed also task instance name from
2978 mccalibcalc to mccalibupdate.
2979
2980
2981
2982 2004/01/21: Raquel de los Reyes
2983
2984 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
2985 and mcamera/MCameraCalibration.h
2986 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
2987 the private data members of the class.
2988
2989
2990
2991 2004/01/20: Thomas Hengstebeck
2992
2993 * mranforest/MRanForestCalc.[h,cc]
2994 - Added member functions Grow (training of RF) and Fill (reading in
2995 trained forest from file) which simplify macros.
2996 One just needs to call them instead of using MRanForestGrow and
2997 MRanForestFill (and the related training and fill loops) in a
2998 macro.
2999
3000
3001
3002 2004/01/20: Abelardo moralejo
3003
3004 * manalysis/MMcCalibrationCalc.cc
3005 - removed call to MCalibrationPix::SetPedestal, which was not
3006 needed.
3007
3008
3009
3010 2004/01/20: Thomas Bretz
3011
3012 * Makefile:
3013 - replaced 'make' by '$(MAKE)'
3014
3015 * Makefile.rules:
3016 - added Makefile itself to dependencies
3017
3018 * mbase/MTask.cc:
3019 - added comment about ReInit
3020
3021 * mhbase/MH.cc:
3022 - do not clear pad in DrawClone if 'same' option given
3023
3024 * mhist/MHVsTime.cc:
3025 - evaluate 'same' option
3026
3027 * mfileio/MReadCurrents.[h,cc]:
3028 - obsolete, removed
3029
3030 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
3031 - added some comments
3032
3033
3034
3035 2004/01/20: Abelardo moralejo
3036
3037 * mcalib/MHCalibrationPINDiode.cc
3038 - Added call to SetDirecory(0) for histograms fHErrCharge,
3039 fHPCharge, fHPTime.
3040
3041 * manalysis/MCerPhotPix.h:
3042 - Changed position of declaration of fIsSaturated to be the last
3043 private variable. Otherwise, since in the constructor it is
3044 initialized in the last place, a warning is displayed upon
3045 compilation in some systems.
3046
3047
3048
3049 2004/01/20: Markus Gaug
3050 * mcalib/Makefile, manalysis/Makefile:
3051 - include directory ../mtools
3052
3053 * mtools/MFFT.[h,cc]
3054 - class inherits from TObject now
3055
3056
3057
3058 2004/01/19: Markus Gaug
3059
3060 * mcalib/MHCalibrationBlindPixel.[h,cc]
3061 - fixed a bug in fFitLegend due to which program crashed by calls
3062 to DrawClone
3063 - Modified way to change the fit function
3064
3065 * mcalib/MHCalibrationPixel.[h,cc]
3066 - reordered function calls
3067 - removed SetupFill
3068
3069 * mcalib/MHCalibrationPINDiode.h
3070 - reordered function calls
3071
3072 * mcalib/MCalibrationPix.[h,cc]
3073 - limits to define fFitValid now as variables in class
3074
3075 * mcalib/MCalibrationCam.[h,cc]
3076 - reordered function calls
3077 - incorporate option to exclude pixels
3078
3079 * mcalib/MCalibrationBlindPix.h
3080 - Modified way to change the fit function
3081
3082 * mcalib/MCalibrationCalc.[h,cc]
3083 - Modified way to change the fit function
3084 - incorporate option to exclude pixels from configuration file
3085
3086 * macros/calibration.C
3087 - Modified way to change the fit function
3088 - incorporate option to exclude pixels from configuration file
3089
3090
3091
3092 2004/01/19: Javier Rico
3093
3094 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
3095 - Added documentation of member functions
3096
3097
3098
3099 2004/01/19: Abelardo Moralejo
3100
3101 * manalysis/MCerPhotPix.[h,cc]
3102 - Added fIsSaturated to flag whether low gain of the pixel is
3103 saturated. Added corresponding getter and setter functions.
3104 Updated ClassDef to version 2.
3105
3106 * mcalib/MCalibrate.cc
3107 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
3108 one low gain FADC slice is saturated.
3109
3110 * mimage/MNewImagePar.[h,cc]
3111 - Added new member variable fNumSaturatedPixels to count how many
3112 pixels were saturated. Updated ClassDef to version 2.
3113
3114
3115
3116 2004/01/19: Thomas Bretz
3117
3118 * manalysis/MPedPhotCalc.[cc,h]:
3119 - fixed order of includes
3120 - removed obsolete forward declarations
3121 - removed obsolete data member fNumPixels (stored already twice in
3122 the two TArrayF)
3123 - fixed some small bugs in the documentation
3124
3125 * manalysis/MPedCalcPedRun.cc:
3126 - updated my eMail address
3127
3128
3129
3130 2004/01/19: Javier Rico
3131
3132 * macros/dohtml.C, NEWS
3133 - include some missing info
3134
3135
3136
3137 2004/01/19: Abelardo Moralejo
3138
3139 * manalysis/MExtractedSignalPix.h
3140 - added GetNumLoGainSaturated()
3141
3142
3143
3144 2004/01/19: Markus Gaug
3145
3146 * macros/dohtml.C
3147 - include calibration.C
3148
3149 * manalysis/MExtractSignal.cc
3150 - warning of logain saturation now only once per event (out of loop)
3151
3152 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
3153 - new Flag fExcluded to indicate if pixel has been excluded from
3154 further analysis
3155
3156
3157
3158 2004/01/16: Javier Rico & Pepe Flix
3159
3160 * manalysis/MPedPhotCalc.[cc,h]
3161 - added
3162 - new class for the evaluation of pedestals in units of photons
3163 using the extracted signal from pedestal runs and calibration
3164 constants defined in MCalibrate
3165
3166 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
3167 - added entries for MPedPhotCalc
3168
3169 * macros/pedphotcalc.C
3170 - added
3171 - example on how to use MPedPhotCalc task
3172
3173
3174
3175 2004/01/16: Markus Gaug
3176
3177 * mcalib/MCalibrationFits.h
3178 - removed and incorporated in MHCalibrationBlindPixel.h
3179
3180 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
3181 mcalib/MCalibrationBlindPix.h:
3182 - incorporate Fit functions
3183 - fixed a bug due to which DrawClone crashed when class was used
3184 in a compiled macro
3185
3186 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
3187 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
3188 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
3189 mcalib/MHCalibrationPixel.cc:
3190 - fixed the warns and errs in fLog's
3191
3192
3193
3194 2004/01/16: Abelardo Moralejo
3195
3196 * manalysis/MMcCalibrationCalc.cc
3197 - TMath::Max() is no longer used because it did not compile in some
3198 systems for unkown reasons. I replaced it by a safer (and may be
3199 slower) code.
3200 - Added calpix.SetFitValid();
3201
3202 * mhist/MHEvent.cc
3203 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
3204 be 1 in case of RMS:
3205 case kEvtPedestalRMS:
3206 fHist->SetCamContent(*(MCamEvent*)par, 1);
3207
3208
3209
3210 2004/01/15: Abelardo Moralejo
3211
3212 * macros/starmc.C
3213 - Added. Version of star showing new chain to get Hillas
3214 parameters (with Size calibrated in photons) from MC files.
3215
3216
3217
3218 2004/01/15: Javier Rico
3219
3220 * manalysis/MPedCalcPedRun.[h,cc]
3221 - optimize the running time
3222 - add (some) documentation
3223 - correct treatment for the case of several input files
3224
3225 * macros/pedvsevent.C
3226 - added
3227 - draw pedestal mean and rms vs event# for input pixel# and run
3228 file, and compares them to the global pedestal mean and rms
3229
3230
3231
3232 2004/01/15: Raquel de los Reyes
3233
3234 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
3235 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
3236 functions to compute the estimation of the error of the
3237 mean. It can be done calling to the function
3238 MCamEvent::SetBit(MHCamera::kVariance) in the macro
3239
3240
3241
3242 2004/01/15: Markus Gaug
3243
3244 * mhist/MHCamera.[h,cc]
3245 - incorporate Thomas's changes
3246 - replace void CreateProjection() by TH1D *Projection(const char*)
3247
3248 * macros/calibration.C
3249 - replace MHCamera->Draw("proj") by MHCamera->Projection()
3250 - produce better fits to the projection
3251
3252 * manalysis/MSimulatedAnnealing.[h,cc],
3253 mhist/MHSimulatedAnnealing.[h,cc]:
3254 - moved to directory mtools
3255 - MSimulatedAnnealing now inherits from TObject
3256
3257 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
3258 mhist/Makefile, mhist/HistLinkDef.h:
3259 - removed MSimulatedAnnealing
3260 - removed MHSimulatedAnnealing
3261
3262 * mtools/Makefile, mtools/AnalysisLinkDef.h:
3263 - added MSimulatedAnnealing
3264 - added MHSimulatedAnnealing
3265
3266
3267
3268 2004/01/15: Thomas Bretz
3269
3270 * manalysis/AnalysisLinkDef.h:
3271 - removed MCurrents
3272
3273 * mhist/MHCamera.[h,cc]:
3274 - added member function Projection
3275 - removed fYproj
3276
3277 * mreport/MReport*.*:
3278 - added more comments
3279
3280
3281
3282 2004/01/14: Markus Gaug
3283
3284 * mtools/MFFT.[h,cc]
3285 - new class to perform Fast Fourier Transforms
3286
3287 * mtools/Makefile
3288 * mtools/ToolsLinkDef.h
3289 - include MFFT
3290
3291 * manalysis/MExtractedSignalCam.h
3292 - removed variables fNumHiGainSamples and fNumLoGainSamples
3293 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
3294
3295 * manalysis/MExtractSignal.cc
3296 - updated call to SetUsedFADCSlices
3297
3298
3299
3300 2004/01/14: Abelardo Moralejo
3301
3302 * manalysis/MMcCalibrationCalc.cc:
3303 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
3304 This can happen (depending on camera simulation parameters), and
3305 rms = 0 later resulted in the pixel being eliminated in the
3306 image cleaning.
3307
3308
3309
3310 2004/01/14: Thomas Bretz
3311
3312 * Makefile:
3313 - replaced old style Makefile.depend by directory specific
3314 dependancy files
3315
3316 * Makefile.rules:
3317 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
3318 - added rule to make dependency files
3319 - added rule to remove dependancy files.
3320 - added rmdep as prerequisite to clean
3321 - include dependency file
3322
3323 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
3324 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
3325 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
3326 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
3327 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
3328 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
3329 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
3330 mtools/Makefile:
3331 - removed clean-rule, use the one in Makefile.rules instead
3332
3333 * mreport/Makefile, mreport/ReportLinkDef.h:
3334 - added MReportHelp
3335
3336 * mreport/MReportFileRead.cc:
3337 - moved code from MReportHelp to new file
3338 - removed usage of MReport class completely
3339
3340 * mfilter/MFGeomag.[h,cc]:
3341 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
3342 - changed the second loop from 0->1151 to 1152->2304
3343 - removed dummy arrays used for reading
3344 - output filename in case of 'file not found'
3345 - removed obsolete data members
3346 - removed obsolete Init function
3347 - removed forbidden underscore from member variable
3348 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
3349
3350 * mbase/MStatusDisplay.[h,cc]:
3351 - added new member function Open
3352 - added new menu entry kFileOpen
3353 - changed UpdatePSheader algorithm (the old one was much too slow)
3354
3355 * manalysis/MCurrents.[h,cc]:
3356 - removed (old outdated)
3357
3358 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
3359 - removed MCurrents
3360
3361
3362
3363 2004/01/14: Wolfgang Wittek
3364
3365 * macros/ONOFFAnalysis.C:
3366 - current version
3367
3368 * mhist/MHSigmaTheta.[h,cc]:
3369 - replace MPedestalCam by MPedPhotCam
3370
3371 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
3372 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
3373 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
3374 - replace MPedestalCam by MPedPhotCam
3375
3376 * manalysis/MPedPhotPix.[h,cc]
3377 - uncomment SetRms()
3378
3379
3380
3381 2004/01/13: Markus Gaug
3382
3383 * manalysis/MExtractSignal.h
3384 - seems that the reduced light intensity of the CT1 Pulser
3385 results in broader pulses -> Set Default time slices to [3,10]
3386
3387 * mhist/MHCamera.cc
3388 - make Stat Window in option 'proj' bigger
3389 - add comment line at beginning of Draw()
3390
3391 * mcalib/MHCalibrationBlindPixel.[h.cc]
3392 - add Function DrawClone()
3393 - fix bug in calculation of integral (GetIntegral("width"))
3394 - restrict parameters tighter
3395 - declare fit as not valid, if less than 100 events
3396 in single photo-electron peak
3397
3398 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
3399 - fit now with fixed normalization
3400
3401 * mcalib/MHCalibrationPixel.[h.cc]
3402 - new function IsEmpty()
3403 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
3404
3405 * mcalib/MCalibrationPix.[h.cc]
3406 - F-Factor corrected and added error
3407 - Histograms not fitted if they are empty
3408 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
3409
3410 * mcalib/MCalibrationCam.cc
3411 - Square Root of Reduced Sigmas not taken, if they are < 0.
3412 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
3413
3414 * mcalib/MCalibrationCalc.cc
3415 - Blind Pixel is not additionally treated as normal pixel any more
3416 - Blind Pixel Draw replaced by DrawClone
3417
3418 * macros/calibration.C
3419 - took out some unused code
3420 - some default axis labelling corrected
3421
3422
3423
3424 2004/01/13: Abelardo Moralejo
3425
3426 * manalysis/MMcPedestalCopy.cc
3427 - added check of whether input file is a MC file before executing
3428 the PreProcess.
3429
3430
3431
3432 2004/01/13: Wolfgang Wittek
3433
3434 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
3435 - change macro to handle also MC events with finite sigmabar
3436
3437 * manalysis/MPadOn.[h,cc]:
3438 - deleted, is replaced by MPad
3439
3440 * manalysis/MPadOnOFF.[h,cc]:
3441 - deleted, is replaced by MPad
3442
3443 * manalysis/MPad.[h,cc]:
3444 - new class, replacing MPadON and MPadONOFF
3445 - handle also MC events with finite sigmabar
3446
3447 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
3448 - replace MPadON and MPadONOFF by MPad
3449
3450
3451
3452 2004/01/13: Thomas Bretz
3453
3454 * mraw/MRawRunHeader.[h,cc]:
3455 - implemented new member function GetRunTypeStr
3456
3457 * Changelog.03:
3458 - added (contains entries of 2003)
3459
3460 * Changelog:
3461 - removed entries of 2003
3462
3463 * mfilter/MFGeomag.cc:
3464 - simplified open/close of input files
3465
3466 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
3467 - added some comments
3468 - added new member function GetError
3469
3470 * Makefile:
3471 - updated 'make dox' output for convinience
3472
3473 * macros/dohtml.C:
3474 - do not print Info's
3475 - added mcamera
3476 - added mpointing
3477 - added mreport
3478
3479 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
3480 - removed some obsolete comments (these comments confused THtml)
3481
3482 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
3483 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
3484 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
3485 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
3486 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
3487 - replaced MPedestalCam by MPedPhotCam
3488 - removed some obsolete includes
3489
3490 * mbase/BaseLinkDef.h, mbase/Makefile:
3491 - added MLogPlugin
3492 - added MLogHtml
3493
3494 * mbase/MLog.[h,cc]:
3495 - added use of plugins
3496
3497 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
3498 - added
3499
3500 * mbase/MStatusDisplay.[h,cc]:
3501 - added a Save-As dialog
3502
3503
3504
3505 2004/01/12: Thomas Bretz
3506
3507 * macros/rootlogon.C:
3508 - added mcamera to include path
3509 - added mpointing to include path
3510 - added mreport to include path
3511
3512 * mbase/MLog.cc:
3513 - updated my eMail address
3514
3515 * mbase/MParContainer.h:
3516 - added Read member function
3517
3518 * mbase/MStatusDisplay.[h,cc]:
3519 - changed size of ps-paper
3520 - added a user defined bottom line to the ps-files
3521 - added name (currently unused)
3522 - added title (used as possible bottom line in ps-file)
3523
3524 * mraw/MRawRunHeader.cc:
3525 - added some comments
3526
3527 * status.cc:
3528 - set name of input as bottom line of status display
3529
3530
3531
3532 2004/01/12: Abelardo Moralejo
3533
3534 * mimage/MStereoPar.cc
3535 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
3536 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
3537 Bug had no effect unless scale1 != scale2 (-> telescopes of
3538 different size).
3539
3540
3541
3542 2004/01/12: Markus Gaug
3543
3544 * manalysis/MExtractSignal.[h,cc]
3545 - take out some uncommented code
3546 - replace logainshift by two independent variables:
3547 logainfirst, logainlast
3548 - because in most data, maximum occurs in slice 4, shift default
3549 from slices 4-9 to slices 3-8.
3550
3551 * manalysis/MExtractedSignalPix.[h,cc]
3552 - took out some uncommented code
3553 - new initializers: instead of -1. now 99999.9
3554
3555
3556
3557 2004/01/09: Markus Gaug
3558
3559 * mcalib/MCalibrationCam.[h,cc]
3560 - take out 1-dim histos because we can use
3561 the projections in MHCamera (s.b.)
3562
3563 * mcalib/MHCalibrationBlindPixel.h
3564 - make the fit by default quiet
3565
3566 * mcalib/MHCalibrationPixel.[h,cc]
3567 * mcalib/MCalibrationPix.[h,cc]
3568 - Ranges of time slices stored independently for HiGain and LoGain
3569 in order to allow consecutive checks
3570
3571 * mhist/MHCamera.[h.cc]
3572 - add the possibility to call a Draw("proj") which will
3573 draw a Y-Projection of the histogram
3574
3575 * macros/calibration.C
3576 - apply the drawing of the projections and fit them
3577
3578 * mcalib/MCalibrationCalc.cc
3579 - catch the possibility of a calibration file,
3580 unintendedly being a pedestal or cosmic file.
3581 Program now exits with an error before doing the fits
3582
3583 * mcalib/MCalibrationPix.[h,cc]
3584 - fixed a bug in calculation of fFitValid.
3585 before, a call to IsFitValid() always returned false
3586
3587
3588
3589 2004/01/09: Javier L¢pez
3590
3591 * macros/bootcampstandardanalysis.C
3592 - added new macro that holds the main scheleton discussed in the
3593 december bootcamp in Wuerzburg. It runs first over a pedestal
3594 run, then over a calibration run, again over the pedestal run
3595 to compute de pedestal in number of photons and finally over a
3596 data run to calibrate the data.
3597
3598
3599
3600 2004/01/06: Sebastian Raducci
3601
3602 * manalysis/MArrivalTime.[h,cc]
3603 - added new method to calculate photon arrival times. It uses the
3604 TSpline5 Root Class to interpolate the Fadc Slices. The time is
3605 the abscissa value of the absolute maximum of the interpolation
3606 - added new method to find clusters with similar arrival times.
3607 For now it's a preliminary version. It simply search for adiacent
3608 pixels having the same arrival time (color).
3609
3610 * manalysis/MArrivalTimeCalc.[h,cc]
3611 - modified the Process() method according to the changes in the
3612 Arrival Time Cointainer
3613
3614 * mmain/MEventDisplay.cc
3615 - added new tab in the camera event display to show the arrival
3616 time. This arrival time is calculated with the spline method
3617 - the old Arrival Time pad now it's called Max Slice Idx, because
3618 it's only the index of the slice with the max content.
3619
3620 * mhist/MHEvent.[h,cc]
3621 - added new fType in te enumeration to handle the arrival time
3622 histos
Note: See TracBrowser for help on using the repository browser.