source: trunk/MagicSoft/Mars/Changelog@ 3549

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