source: trunk/MagicSoft/Mars/Changelog@ 3545

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