source: trunk/MagicSoft/Mars/Changelog@ 4958

Last change on this file since 4958 was 4958, checked in by gaug, 20 years ago
*** empty log message ***
File size: 243.1 KB
Line 
1
2Please do not write behind the end of line tag so that it is possible
3to send a Changelog file to a line printer directly. Thanks.
4
5For your entries please follow EXACTLY this style:
6
7_yyyy/mm/dd:_[Your Name]
8_
9___*_filename:
10_____-_description
11_
12___*_filename2, filename3:
13_____-_description
14_
15_
16_
17
18While an underscore is a placeholder for a white-space or an empty line.
19
20 -*-*- END OF LINE -*-*-
21
22 2004/09/11: Markus Gaug
23
24 * mbase/MArray.[h,cc]
25 - moved function StripZeros(TArrayD &arr) to MArrayD
26 - moved function StripZeros(TArrayF &arr) to MArrayF
27
28 * mbase/MArrayD.[h,cc]
29 - new function StripZeros()
30
31 * mbase/MArrayF.[h,cc]
32 * mbase/Makefile
33 * mbase/BaseLinkDef.h
34 - new class analogously to MArrayD
35
36 * mhbase/MH.[h,cc]
37 - added functions ProjectArray(MArrayD,...)
38 and ProjectArray(MArrayF,...)
39
40 * mtools/MFFT.[h,cc]
41 - added functions:
42 MArrayF* PowerSpectrumDensity(const MArrayI *array);
43 MArrayF* PowerSpectrumDensity(const MArrayF *array);
44 MArrayD* PowerSpectrumDensity(const MArrayD *array);
45
46 * mbadpixels/MBadPixelsIntensityCam.[h,cc]
47 * mbadpixels/Makefile
48 * mbadpixels/BadPixelsLinkDef.h
49 - new class for the intensity calibration
50
51
52 2004/09/10: Markus Gaug
53
54 * mhcalib/
55 * mcalib/
56 moved all MHCalibration* classes to new directory mhcalib/
57
58 * mhcalib/MHCalibrationCam.[h,cc]
59 - New base function InitHiGainArrays and InitLoGainArrays
60 Initializing the histograms in a standard way
61 - ReadEnv: added NBins, First and Last
62
63 * mhcalib/MHCalibrationRelTimeCam.[h,cc]
64 * mhcalib/MHCalibrationChargeCam.[h,cc]
65 * mhcalib/MHCalibrationTestCam.[h,cc]
66 * mhcalib/MHCalibrationTestTimeCam.[h,cc]
67 - use new functions InitHiGainArrays and InitLoGainArrays
68
69 * mhcalib/MHCalibrationRelTimePix.[h,cc]
70 * mhcalib/MHCalibrationTestPix.[h,cc]
71 * mhcalib/MHCalibrationTestTimePix.[h,cc]
72 - removed
73
74
75 2004/09/10: Antonio Stamerra
76
77 * mreport/MReportTrigger.[h,cc]:
78 - updated to read IPRs and to fill MTrigger{xxx} containers
79
80 * mreport/Makefile:
81 - added include for mtrigger
82
83 * Makefile:
84 - added mtrigger directory
85
86 * NEWS:
87 - updated
88
89
90
91 2004/09/10: Thomas Bretz
92
93 * mhist/MHCamera.cc:
94 - removed some obsolete const_casts
95 - fixed an (un)signed comparison warning
96
97 * mbase/MArray*.h:
98 - added const &operator[](UInt_t i) const
99
100 * mhist/MHEffectiveOnTime.[h,cc]:
101 - changed to support variable bin-sizes in time to keep
102 the statistic per bin constant
103
104 * mhbase/MBinning.[h,cc]:
105 - added function to enhance the number of bins by one
106
107 * mbase/MTime.[h,cc]:
108 - added function to add one NanoSecond
109
110 * mjobs/MJStar.cc:
111 - removed Histogram of effective on-time vs time
112
113 * mhist/Makefile, mhist/HistLinkDef.h:
114 - added MHEffectiveOnTime
115
116 * mhbase/MH3.[h,cc]:
117 - fixed a bug in SetupFill which was introduced when I allowed
118 set the axis titles from the object title
119 - added support for unique-profile names
120
121 * Makefile:
122 - added new dir mhcalib
123
124 * mhcalib/HCalibIncl.h:
125 - added - was missing
126
127 * mcalib/CalibLinkDef.h:
128 - fixed some typos
129
130
131
132 2004/09/09: Markus Gaug
133
134 * mcalib/MHCalibrationChargeCam.[h,cc]
135 - initialize bins directly here. Remove MHCalibraitonChargeHiGainPix
136 and MHCalibrationChargeLoGainPix classes
137
138 * mcalib/MHCalibrationChargeHiGainPix.[h,cc]
139 * mcalib/MHCalibrationChargeLoGainPix.[h,cc]
140 * mcalib/Makefile
141 * mcalib/CalibLinkDef.h
142 - removed first two classes
143
144 * mcalib/MCalibrationCam.[h,cc]
145 - make default for GetNumUnsuitable and GetNumUnreliable
146
147 * mcalib/MCalibrationIntensityCam.[h,cc]
148 * mcalib/MCalibrationIntensityChargeCam.[h,cc]
149 * mcalib/MCalibrationIntensityQECam.[h,cc]
150 * mcalib/MCalibrationIntensityRelTimeCam.[h,cc]
151 * mcalib/Makefile
152 * mcalib/CalibLinkDef.h
153 - new classes for the intensity calibration. First is base class,
154 other derive from it.
155
156 * mcalib/MHGausEvents.[h,cc]
157 * mcalib/MHCalibrationPix.[h,cc]
158 * mcalib/Makefile
159 * mcalib/CalibLinkDef.h
160 - put typical calibration members into new base class MHCalibrationPix
161 and leave only typical Gaussian behaviour members in MHGausEvents.
162 - all MHCalibration*Pix classes derive now from MHCalibrationPix
163
164 * mcalib/MHCalibrationCam.[h,cc]
165 - operators return MHCalibrationPix instead of MHGausEvents
166 - new function ResetHists() needed by MCalibColorSteer
167 - removed TArrayI *Overflow.
168
169 * mcalib/MCalibColorSet.[h,cc]
170 - finished
171
172 * mcalib/MCalibColorSteer.[h,cc]
173 * mcalib/Makefile
174 * mcalib/CalibLinkDef.h
175 - new task to be executed before the calibration tasks. Steers the
176 occurrance of multiple intensities and the new *Intensity*
177 containers
178
179 * mcalib/MHCalibrationChargePix.[h,cc]
180 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
181 * mcalib/MHCalibrationChargePINDiode.[h,cc]
182 * mcalib/MHCalibrationRelTimePix.[h,cc]
183 * mcalib/MHCalibrationTestPix.[h,cc]
184 * mcalib/MHCalibrationTestTimePix.[h,cc]
185 * manalysis/MHPedestalPix.[h,cc]
186 - derive from MHCalibrationPix
187 - new functions Reset()
188
189 * mcalib/MHCalibrationChargeCam.cc
190 * mcalib/MHCalibrationRelTimeCam.cc
191 * mcalib/MHCalibrationTestCam.cc
192 * mcalib/MHCalibrationTestTimeCam.cc
193 - able to recognize an *Intensity*Cam if in MParList
194
195 * mcalib/MCalibrationChargeCalc.[h,cc]
196 - able to recognize an *Intensity*Cam if in MParList
197 - set pulser pattern accordingly in Process from MRawEvtHeader
198 - add switches to perform types of checks or not
199
200 * mcalib/MCalibrationRelTimeCalc.[h,cc]
201 - able to recognize an *Intensity*Cam if in MParList
202
203 * mjobs/MJCalibration.[h,cc]
204 - fixed flags
205 - included intensity calibration (MJCalibration::SetIntensity())
206 (default is standard calibration like before)
207
208 * msignal/MExtractor.cc
209 * msignal/MExtractTimeHighestIntegral.cc
210 * msignal/MExtractSlidingWindow.cc
211 * msignal/MExtractPINDiode.cc
212 * msignal/MExtractFixedWindow.cc
213 * msignal/MExtractFixedWindowSpline.cc
214 * msignal/MExtractBlindPixel.cc
215 * msignal/MExtractAmplitudeSpline.cc
216 - removed some possible bugs in the case that no LoGain is
217 available at all.
218
219
220
221 2004/09/09: Thomas Bretz
222
223 * mhvstime/MHPixVsTime.[h,cc], mhvstime/MHVsTime.[h,cc],
224 mhvstime/MHSectorVsTime.[h,cc], mhbase/MH3.[h,cc]:
225 - changed such that the axis titles can be set via the
226 title or (if available) a MBinning
227
228 * mhbase/MBinning.cc:
229 - added HasTitle
230
231 * mjobs/MJPedestal.cc:
232 - added lost UseData again to CheckEnvLocal
233
234 * mjobs/MJStar.cc:
235 - fixed handling of Axis titles of histograms
236
237 * mjobs/Makefile:
238 - added path to mhvstime
239
240 * manalysis/MParameters.[h,cc]:
241 - added Print() functions
242
243 * mfileio/MReadReports.[h,cc], mfileio/MReadTree.[h,cc]:
244 - moved setting of StreamId from MReadReports To MReadTree
245
246 * mhbase/MH.cc:
247 - workaround all the this which are reset in TAxis::Set
248
249 * mfileio/MReadRflFile.[h,cc]:
250 - added missing abstract functions
251
252 * star.cc, callisto.cc, mjobs/MJStar.[h,cc],
253 mjobs/MJCalibrateSignal.[h,cc]:
254 - added option to process monte carlo files
255
256 * mhist/MHEffectiveOnTime.[h,cc]:
257 - added a histogram taking the on-time vs time
258 - fixed handling of Draw/Project/Paint
259
260
261
262 2004/09/08: Thomas Bretz
263
264 * mbadpixels/MBadPixelsCam.[h,cc], mbase/MParContainer.[h,cc],
265 mhvstime/MHPixVsTime.cc, mhvstime/MHSectorVsTime.cc:
266 - replaces ifstream by istream in AsciiRead
267
268 * mbase/MTime.[h,cc]:
269 - fixed comment about SetTimeFormat
270 - added AsciiRead
271 - added AsciiWrite
272 - added Minus1ns
273
274 * mfileio/MWriteAsciiFile.cc:
275 - write all containers if one has its SetReadyToSaveFlag set
276
277 * mhist/MHEffectiveOnTime.[h,cc]:
278 - for MEffectiveOnTime fit the whole projection instead
279 of using the sum of the theta-bins
280
281 * mhvstime/MHVsTime.[h,cc]:
282 - replaces ifstream by istream in AsciiRead
283 - fixed to support MStatusDisplay
284 - do not fill the same time twice
285 - added support for error bars
286
287 * mjobs/MJStar.cc:
288 - replaced MReadMarsFile by MReadReports
289 - added MEventRateCalc and corresponding histogram
290 - added MHEffectiveOnTime
291
292
293
294 2004/09/07: Thomas Bretz
295
296 * merpp.cc:
297 - added lost update-option
298
299 * mjobs/MJCalibrateSignal.cc:
300 - fixed a compiler error geom.ClassName() --> geom
301
302 * mraw/MRawRunHeader.cc:
303 - added 'header' option to Print-function
304
305 * msql/MSQLServer.[h,cc]:
306 - added new onstructors taking TEnv as argument
307
308 * macros/sql/*.C:
309 - updated to use sql.rc
310
311 * macros/sql/sql.rc:
312 - added
313
314 * mcalib/MCalib*.[h,cc]:
315 - simplified the includes a little bit to accelerate compiling
316 and maybe to secure everything from compiler bugs a bit more
317
318 * callisto.cc, star.cc:
319 - do not allow implicit batch-mode
320
321 * showlog.cc:
322 - removed an unused variable
323
324 * manalysis/MEventRateCalc.[h,cc]:
325 - started implementing a corrsponding time
326
327 * manalysis/MParameters.[h,cc], manalysis/AnalysisLinkDef.h:
328 - added MParameterDerr
329
330 * mbadpixels/MHBadPixels.[h,cc]:
331 - removed obsolete fPedPhotCam
332
333 * mbase/MTime.[h,cc]:
334 - added AddMilliSeconds
335 - added SetMean
336
337
338
339
340 2004/09/07: Markus Gaug
341
342 * mcalib/MHGausEvents.[h,cc]
343 - added function IsOnlyUnderflow()
344
345 * mcalib/MHCalibrationCam.[h,cc]
346 * mcalib/MHCalibrationChargeCam.cc
347 * mcalib/MHCalibrationRelTimeCam.cc
348 - added bool kLoGain which is set if number of LoGain Slices in
349 MRawRunHeader is not 0. This excludes the low gain calculations
350 in case that there is no lowgain at all.
351
352 * mcalib/MCalibrationQECamMagic.cc
353 - implemented Nicola's solution for the compiling problem of the
354 TArrayD's
355
356 * mcalib/MCalibColorSet.cc
357 - implemented intensity recognition
358
359 * mhist/MHCamera.[h,cc]
360 - included functions AddCamContent(MArrayD...) and
361 SetCamContent(MArrayD... )
362
363
364
365 2004/09/06: Thomas Bretz
366
367 * mjobs/MJCalibrateSignal.[h,cc]:
368 - read camera geometry from calib-file
369
370 * mjobs/MJCalibration.[h,cc]:
371 - write camera geometry to calib-file
372
373 * macros/sql/filldotraw.C, macros/sql/fillcalib.C:
374 - added
375
376 * macros/sql/filldot*.C
377 - fixed some comments
378
379 * mpointing/MPointingPosCalc.cc:
380 - removed some obsolete comments
381
382
383
384 2004/09/05: Markus Gaug
385
386 * mcalib/MCalibColorSet.[h,cc]
387 - finished setting of the asumed pulse pattern
388
389
390
391 2004/09/03: Markus Gaug
392
393 * mcalib/MCalibrationChargeBlindCamTwoNewStyle.cc
394 - small modification in QE of new blind pixel
395
396 * mcalib/MCalibrationChargeCam.[h,cc]
397 - new functions:
398 GetAveragedConvFADC2PhotPerArea,
399 GetAveragedConvFADC2PhotPerSector,
400 GetAveragedArrivalTimeMeanPerArea,
401 GetAveragedArrivalTimeMeanPerSector,
402 GetAveragedArrivalTimeRmsPerArea,
403 GetAveragedArrivalTimeRmsPerSector,
404 to be used by the data check.
405
406 * mcalib/MCalibrationChargePix.cc
407 - found small bug concerning the MBadPixelpix::kChargeSigmaNotValid
408 pixels which are recovered since last week.
409
410 * mcalib/MCalibrationQEPix.[h,cc]
411 * mcalib/MCalibrationChargeCalc.[h,cc]
412 - fixed UpdateCombinedMethod, removed AddAverageCombinedQEs
413
414 * mcalib/MCalibrationQECam.[h,cc]
415 - new array with cornings, not included in the I/O
416 - added copy function
417
418 * mcalib/Makefile
419 * mcalib/CalibLinkDef.h
420 * mcalib/MCalibrationQECamMagic.[h,cc]
421 * htmldoc/images/Cornings.gif
422 - new class derived from MCalibrationQECam which intialized the
423 cornings for the Magic camera
424
425
426
427 2004/09/03: Wolfgang Wittek
428
429 * mbadpixels/MHBadPixels.[h,cc]
430 - new class; histograms for bad pixels
431
432 * mbadpixels/Makefile, mbaspixels/BadPixelsLinkdef.h
433 - MHBadPixels added
434
435 * mhist/MHSigmaTheta.[h,cc]
436 - remove MSigmabar stuff
437
438 * mhist/Makefile, mhist/HistLinkdef.h
439 - MHSigmaTheta added
440
441 * manalysis/Makefile, manalysis/AnalysisLinkdef.h
442 - remove MPedestalWorkaround and MSourcePosFromStarPos
443 - add MPad
444
445 * manalysis/MPad.[h,cc]
446 - remove *BlindPixel* stuff
447 - remove MSigmabar stuff
448
449
450
451 2004/09/03: Thomas Bretz
452
453 * manalysis/MCameraData.[h,cc], mimage/MImgCleanStd.[h,cc]:
454 - implemeted cleaning in absolute number of photons
455 - moved output of setup of image cleaning to PreProcess
456
457 * mhbase/MBinning.[h,cc]:
458 - added const-qualifier to Apply
459
460 * mhist/MHAlpha.cc:
461 - let TLatex use NDC coordinates
462
463 * mimage/MHHillasSrc.cc:
464 - cosmetics
465
466 * mreport/MReportDrive.[h,cc]:
467 - added Print member function
468
469 * mpointing/MSrcPosFromModel.cc:
470 - removed an obsolete include
471
472 * mraw/MRawEvtHeader.h:
473 - added SetCalibrationPattern as a workaround for the runs
474 which don't have the correct pattern set
475
476 * mcalib/MCalibColorSet.[h,cc]:
477 - added as a workaround for the runs which don't have the
478 correct pattern set
479
480 * mcalib/Makefile, mcalib/CalibLinkDef.h:
481 - added MCalibColorSet
482
483
484
485 2004/09/02: Thomas Bretz
486
487 * star.cc:
488 - fixed treatment of batch-mode
489
490 * mbase/MParContainer.h:
491 - added a comment
492
493 * mbase/MParList.[h,cc]:
494 - added FindTaskListWithTask
495
496 * mbase/MTaskList.[h,cc]:
497 - added sanity checks in AddToList
498 - added FindTaskList
499
500 * mhbase/MH3.[h,cc]:
501 - moved some drawing code from Draw to Paint
502 - added possibility to set logarithmic axis manually
503 - fixed a bug which caused MH3s in MFillH::Finalize to disappear
504
505 * mhist/MHAlpha.cc:
506 - paint significance and othe rinformations
507 - unified fit in Finalize and Paint
508 - replaced significance calculation by Li/Ma
509
510 * mhvstime/MHVsTime.[h,cc]:
511 - added option to average data
512
513 * mjobs/MJCalibrateSignal.cc:
514 - added MPointingPosCalc for "Drive"
515
516 * mmain/MEventDisplay.cc:
517 - fixed some problems with the display
518
519 * msignal/MArrivalTime.[h,cc]:
520 - added Print()
521
522 * manalysis/MEventRateCalc.[h,cc]:
523 - added the difference in time between two events into the output
524 - made setup more flexible
525
526 * mbase/MContinue.cc:
527 - fixed a bug which caused a problem if MContinue was not in the
528 main tasklist
529
530 * mimage/MHImagePar.[h,cc], mimage/MHNewImagePar.[h,cc]:
531 - added Paint function to support logarithmic y-axis scles
532
533
534
535 2004/09/01: Thomas Bretz
536
537 * mfileio/MWriteRootFile.[h,cc]:
538 - do not add a container which is already in the list
539 - replaced fNameCont by fTitle in MRootFileBranch
540
541 * mgeom/MGeomPix.[h,cc]:
542 - declared tan(30)
543 - added GetL member function
544
545 * mhist/MHAlpha.cc:
546 - added a logging output
547
548 * mhist/MHFalseSource.[h,cc]:
549 - shift by MSrcPosCam introduced
550 - fixed on-off plot
551 - fixed changed return value MHillasSrc::Calc
552 - as a workaround for some crashes removed SetBit(kCanDelete)
553 of catalog
554
555 * mimage/MHHillasSrc.cc, mimage/MHillasSrc.cc:
556 - some small fixes to new plots
557 - some cosmetics to the code
558
559 * mimage/MHillas.cc, mimage/MHillasExt.cc,
560 mimage/MImagePar.cc, mimage/MImgCleanStd.cc,
561 mimage/MNewImagePar.cc:
562 - removed obsolete include of fstream
563
564 * mpointing/Makefile, mpointing/PointingLinkDef.h:
565 - added new class MPointingPosFromModel
566
567 * mpointing/MPointingPosFromModel.[h,cc]:
568 - added
569
570
571
572 2004/08/31: Daniel Mazin
573
574 * manalysis/MSigmabarCalc.h:
575 - added function SetNamePedPhotCam to set the name of the
576 MPedPhotCam container
577
578
579
580 2004/08/31: Thomas Bretz
581
582 * star.cc:
583 - implemented batch- and quit-mode
584
585 * mastro/MAstroCatalog.h:
586 - implemented default argument for magnitude in MVector3
587 setters
588
589 * mbase/MDirIter.cc:
590 - fixed a typo
591
592 * mfileio/MWriteRootFile.cc:
593 - fixed a typo
594
595 * mimage/MHHillasSrc.[h,cc], mimage/MHillasSrc.[h,cc]:
596 - added DCA and DCADelta as discussed with the ETH people
597 - incrementes version number of MHillasSrc
598 - changed return type of MHillasSrc::Calc from Bool_t to Int_t
599
600 * mimage/MHillasCalc.cc:
601 - changed to support error code 6
602
603 * mpointing/MPointingPos.h:
604 - added Getter for ZdA7Az in rad
605
606 * mpointing/MPointingPosCalc.cc:
607 - fixed a bug which converted Ra/Dec wrongly to rad
608
609 * mmain/MEventDisplay.cc:
610 - switched on usage of context menu in constructor
611
612
613
614 2004/08/30: Markus Gaug
615
616 * mcalib/MCalibrationChargeCalc.cc
617 * mcalib/MCalibrationTestCalc.cc
618 * mcalib/MCalibrationRelTimeCalc.cc
619 * mcalib/MHCalibrationTestCam.cc
620 * mcalib/MHCalibrationTestTimeCam.cc
621 - exchanged all arrays by TArray's
622
623 * mcalib/MHCalibrationChargeCam.[h,cc]
624 * mcalib/MHCalibrationRelTimeCam.[h,cc]
625 - exchanged all arrays by MArray's
626
627
628
629 2004/08/30: Thomas Bretz
630
631 * showlog.cc, showplot.cc:
632 - enhanced functionality
633
634 * callisto.cc, mjobs/MSequence.cc:
635 - enhanced comments
636
637
638
639 2004/08/29: Markus Gaug
640
641 * mbadpixels/MBadPixelsPix.[h,cc]
642 * mbadpixels/MBadPixelsCam.cc
643 * mjobs/MJCalibration.cc
644 - introduced new calibration bits: kHiGainOverFlow
645 and kLoGainOverFlow being filled when the calibration histograms
646 overflow. Will cause an kUnsuitableRun afterwards.
647 - added in datacheck-display of MJCalibration
648
649 * mcalib/MHCalibrationChargeHiGainPix.[h,cc]
650 * mcalib/MHCalibrationChargeLoGainPix.[h,cc]
651 - default lower histogram limit moved to -100.5
652
653 * mcalib/MHCalibrationCam.h
654 * mcalib/MHCalibrationChargeCam.cc
655 - make TArrayI out of fOverFlowHiGain and fOverFlowLoGain
656
657 * mjobs/MJCalibration.[h,cc]
658 - finished datacheck display with the arrival times.
659
660
661
662 2004/08/27: Florian Goebel
663
664 * mpedestal/MPedestalPix.h
665 - correct calculation of error of RMS
666
667
668
669 2004/08/27: Hendrik Bartko
670
671 * msignal/MExtractTime.cc
672 - check that the pixel has a low gain before calculating the time
673 for the low gain in case of a saturated high gain.
674
675
676
677 2004/08/27: Markus Gaug
678
679 * mcalib/MCalibrationChargeCalc.cc
680 - adapted to possible use of MPedCalcFromLoGain
681
682 * mjobs/MJPedestal.h
683 - added function SetUseData() and IsUseData()
684
685 * mcalib/MCalibrationQEPix.cc
686 - changed initialization of fNorm... variables from 1. to -1.
687 Like this, an accidental not-filling of MCalibrationQECam will
688 be recognized easier.
689
690 * mcalib/MCalibrationChargeCalc.cc
691 * mcalib/MCalibrationChargePix.[h,cc]
692 - change treatment of pixels with kSigmaNotValid
693
694 * mpedestal/MPedestalCam.cc
695 - added functions GetAveragedPedPerArea
696 GetAveragedPedPerSector
697 GetAveragedRmsPerArea
698 GetAveragedRmsPerSector
699 to be used for the datacheck.
700
701 - fixed a small bug in the calculation of the PedestalRms Error
702 in GetPixelContent()
703
704 * macros/bootcampstandardanalysis.C
705 * macros/mccalibrate.C
706 * macros/pedphotcalc.C
707 * macros/starmc.C:
708 - replace MCalibrate by MCalibrateData
709
710 * mjobs/MJCalibration.h
711 - re-added function SetInput which had been removed recently
712 (probably by accident)
713
714 * mjobs/MJCalibration.cc
715 - return kTRUE in function FindColor() if the colour has already
716 been set (e.g. by the macro).
717
718 * mcalib/MHGausEvents.cc
719 - removed one call to fHPowerProbability->SetDirectory(0) which was
720 at a completely wrong place in CreateEventXaxis(). Probably a
721 slip of the emacs-pen.
722
723 * mcalib/MJExtractSignal.cc
724 - replace MCalibrate by MCalibrateData
725
726
727
728 2004/08/27: Thomas Bretz
729
730 * Makefile:
731 - added comments how to link statically
732 - added star again
733
734 * callisto.cc:
735 - fixed some output
736 - fixed batch mode
737
738 * mbadpixels/Makefile:
739 - added a comment
740
741 * mbase/BaseLinkDef.h, mbase/Makefile:
742 - added MArrayI
743
744 * mbase/MArrayI.[h,cc]:
745 - added
746
747 * mbase/MArrayD.cc:
748 - fixed some comments
749
750 * mcalib/MCalibrateData.[h,cc]:
751 - unified CalibratePedestal and CalibrateData. Calling GetConvFactor twice
752 took a lot of time.
753
754 * mjobs/MJCalibrateSignal.cc, mjobs/MJPedestal.cc, MJCalibration.cc:
755 - added two empty lines to output if finished
756 - added a sanity check around the call to CheckEnv
757
758 * mpedestal/MPedPhotCam.cc:
759 - use faster MArrays in ReCalc
760 - accelerated GetPixelContent
761
762 * msignal/MExtractTimeFastSpline.cc:
763 - accelerated a bit by defining
764 Float_t higainklo = fHiGainSecondDeriv[klo];
765 Float_t higainkhi = fHiGainSecondDeriv[khi];
766 instead of accesing the arrays many times inside the loops.
767 Somebody should do the same for logain.
768
769 * mraw/MRawEvtData.cc:
770 - fixed a bug in InitArrays
771
772 * showlog.cc:
773 - added some more functionality
774
775 * star.cc:
776 - changed to use new MJStar
777
778 * mfileio/MChain.cc:
779 - added namespace
780
781 * mfileio/MReadTree.cc:
782 - added a call to ResetTree as first call in PreProcess. Using
783 MReadReports with a tree missing in the file mysteriously
784 crashed because TChain::fTreeNumber was set already by
785 a root-miracle.
786
787 * mjobs/JobsLinkDef.h, mjobs/Makefile:
788 - added MJStar
789
790 * mjobs/MJCalibrateSignal.cc:
791 - replaced MReadMarsFile by MReadReports
792
793 * mmain/MEventDisplay.cc:
794 - fixed reading of resource file
795
796 * mbase/MStatusDisplay.cc:
797 - made Reset() batch-mode safe
798
799 * mcalib/MCalibrateData.cc:
800 - simplified a calculation
801
802 * mfileio/MReadReports.[h,cc]:
803 - implemented GetEntries()
804 - implemented GetFileName()
805 - changed kHasMaster from BIT(15) to BIT(14)
806 - fixed a bug in AddTree which caused the Master-Bit to be
807 set for the wrong object
808
809 * mfileio/MReadTree.cc:
810 - return 0 entries if entrie==TChain::kBigNumber
811
812 * msignal/MExtractFixedWindow.cc:
813 - updated output to fitz into a std 80-col console
814
815 * mars.rc, star.rc:
816 - added
817
818
819
820 2004/08/26: Wolfgang Wittek
821
822 * mstarcam/MStarCamTrans.[h,cc]
823 - include optical aberration when plotting the grid
824
825 * mtemp/MTelAxisFromStars.[h,cc]
826 - add member functions SetPointingPosition and SetSourcePosition
827
828
829
830 2004/08/26: Markus Gaug
831
832 * mjobs/MJExtractCalibTest.[h,cc]
833 - derived from MJob
834 - removed obsolete code (which has been moved to MJob)
835
836 * macros/calibration.C
837 - adapt code to changes done in MJob
838
839
840
841 2004/08/26: Thomas Bretz
842
843 * mbase/MMath.cc:
844 - changed calculation of sign of SignificanceLiMaSigned due to
845 bug #131
846
847 * readdaq.cc, readraw.cc:
848 - updated to support MRawEvtData2
849
850 * mraw/MRawEvtData.[h,cc], mraw/MRawFileRead.cc,
851 mraw/MRawFileWrite.[h,cc], mraw/MRawRead.[h,cc],
852 mraw/MRawSocketRead.cc:
853 - updated to support negative pixel ids
854
855 * mraw/MRawRunHeader.[h,cc]:
856 - increased max format version to 4
857 - added GetNumNormalPixels
858 - added GetNumSpecialPixels
859 - added GetMinPixId
860 - added GetMaxPixId
861
862 * merpp.cc:
863 - added a new option --auto-time to get the time range for
864 cc and/or caco data from the run header of the raw data
865
866 * callisto.cc:
867 - some additional checks
868 - more comments
869
870 * mfileio/MReadReports.h:
871 - overwrote GetFileName - otherwise CINT refuses to create an object
872
873 * mbadpixels/MBadPixelsTreat.[h,cc]:
874 - added an primitive interpolation of arrival times which
875 tries to keep the random arrival time for pixels without
876 signal
877 - fixed a bug which could cause a crash
878 - added more control over the pedestal treatment
879
880
881
882 2004/08/25: Thomas Bretz
883
884 * callisto.cc:
885 - updated handling of command line parameters
886 - added MJPedestal in second loop
887 - changed MJ* to support new MJob base class
888
889 * mjobs/JobsLinkDef.h, mjobs/Makefile:
890 - added MJob
891
892 * mjobs/MJob.[h,cc]:
893 - added
894
895 * mjobs/MJCalibrateSignal.[h,cc], mjobs/MJCalibrateSignal.[h,cc],
896 mjobs/MJCalibration.[h,cc], mjobs/MJPedestal.[h,cc]:
897 - derived from MJob
898 - removed obsolete code (which has been moved to MJob)
899
900 * mjobs/MSequence.[h,cc]:
901 - use MDirIter::GetEntries in SetupRuns
902 - implemented raw-file mode
903 - added GetNum*Runs
904
905 * callisto.rc:
906 - fixed
907
908 * showlog.cc, mbase/MTime.cc, mreport/MReportFileReadCC.cc:
909 - some fixes for gcc 2.95.3
910
911 * mbase/MEvtLoop.cc:
912 - allow prefix argument in ReadEnv
913
914 * mbase/MLog.cc:
915 - added options for log-file and html-file
916
917 * mbase/MTaskEnv.[h,cc]:
918 - added comment
919 - implemented dummy/skip-mode
920
921 * mjobs/MJCalibrateSignal.cc:
922 - removed non existance check from reading extractors (MTaskEnv dummy mode!)
923 - small changed to output
924
925 * mjobs/MJCalibration.cc:
926 - added a cast for gcc 2.95.3
927 - allow dummy mode MTaskEnvs
928
929 * mjobs/MJPedestal.[h,cc]:
930 - implemented CheckEnv
931
932 * msignal/MExtractTime.cc:
933 - fixed Print()-output
934
935 * msignal/MExtractTimeFastSpline.[h,cc]:
936 - added ReadEnv
937 - added Print
938
939
940
941 2004/08/25: Wolfgang Wittek
942
943 * mpointing/MPointingPos.h
944 - add member function GetHa()
945
946
947
948 2004/08/24: Thomas Bretz
949
950 * Makefile:
951 - added callisto
952 - added showplot
953 - removed star
954 - removed status
955
956 * merpp.cc:
957 - updated Usage()
958 - use some new feature or MArgs
959
960 * callisto.cc:
961 - a new program to calculate the calibration
962
963 * callisto.rc:
964 - resource file for callisto
965
966 * showplot.cc:
967 - a new program to show data check plots from a file
968
969 * mbase/MArgs.[h,cc]:
970 - added Get*AndRemove with a default argument
971
972 * mbase/MDirIter.[h,cc]:
973 - added Add(MDirIter &)
974
975 * mbase/MEvtLoop.cc:
976 - check for the existance of the resource file
977
978 * mbase/MLog.[h,cc]:
979 - added Usage()
980
981 * mbase/MTaskEnv.cc:
982 - added output in ReInit
983
984 * mjobs/MJCalibration.cc, mjobs/MJPedestal.cc:
985 - added Overwrite option
986 - maintained CheckEnv
987 - added InputPath
988
989 * mjobs/MSequence.cc:
990 - added return value to Setup*
991 - added comments
992
993 * mmain/MEventDisplay.cc:
994 - added tab for cleaning data
995
996 * msignal/MExtractFixedWindowPeakSearch.[h,cc]:
997 - added ReadEnv
998 - for consistency renamed fWindowSize* to f*WindowSize
999
1000 * msignal/MExtractTimeHighestIntegral.[h,cc]:
1001 - added ReadEnv
1002
1003 * mcalib/MCalibrationRelTimeCalc.cc:
1004 - do not write to a log file if logging is not enabled
1005 - replaced some arrays by TArrays
1006
1007 * mjobs/JobsLinkDef.h, mjobs/Makefile:
1008 - added MJCalibrateSignal
1009
1010 * mjobs/MJCalibrateSignal.[h,cc]:
1011 - added
1012
1013 * msignal/MExtractFixedWindow.[h,cc], msignal/MExtractFixedWindowPeakSearch.[h,cc],
1014 msignal/MExtractSlidingWindow.[h,cc], msignal/MExtractTime.[h,cc],
1015 msignal/MExtractTimeAndCharge.[h,cc], msignal/MExtractTimeHighestIntegral.[h,cc]
1016 msignal/MExtractor.[h,cc]:
1017 - added Print
1018 - added ReadEnv
1019 - changed version number to 1
1020
1021
1022
1023 2004/08/23: Wolfgang Wittek
1024
1025 * mtemp/MTelAxisFromStars.[h,cc]
1026 - replace MStarLocalCam by MStarCam
1027 - replace MStarLocalPos by MStarPos
1028
1029 * mtemp/MHTelAxisFromStars.[h,cc]
1030 - replace MStarLocalCam by MStarCam
1031 - replace MStarLocalPos by MStarPos
1032
1033 * mstarcam/MStarPos.[h,cc]
1034 - remove data members containing 'CG' ('correlated Gauss');
1035 put results from uncorrelated and correlated Gauss fit
1036 into the same area
1037
1038 * mtemp/MFindStars.h[cc]
1039 - changes due to the changes in MStarPos
1040 - remove fit with fixed correlation
1041
1042 * mtemp/MSourceDirections.[h,cc]
1043 - changes due to the changes in MStarPos
1044
1045 * mtemp/findTelAxisFromStars.C
1046 - changes due to changes in MTelAxisFromStars and MFindStars
1047
1048
1049
1050 2004/08/23: Thomas Bretz
1051
1052 * mbadpixels/MBadPixelsTreat.[h,cc]:
1053 - changed missleading ProcessRMS to ProcessPedestal
1054
1055 * mfileio/MReadTree.h:
1056 - added AddFiles(MDirIter&) which is overloaded by another function
1057 which resulted in some trouble
1058
1059 * mfileio/MWriteRootFile.[h,cc]:
1060 - added cd() member function
1061
1062 * mimage/MHHillas.[h,cc]:
1063 - added display of camera on top of MeanXY-plot
1064
1065 * mraw/MRawSocketRead.h:
1066 - added GetFileName()
1067
1068 * manalysis/MCerPhotEvt.[h,cc]:
1069 - added new data member fNumIslands
1070 - added new functions (CalcIsland/CalcIslands to calculate islands)
1071 - added new member function to sort pixels by index
1072 - added island index in GetPixelContent
1073 - increased version number
1074
1075 * manalysis/MCerPhotPix.[h,cc]:
1076 - added fIdxIsland data member
1077 - overloaded Compare function to be able to sort by pixel index
1078 - increased version number
1079
1080 * mhist/MHEvent.[h,cc]:
1081 - added new option for island index
1082 - added kEvtCleaningData
1083
1084 * mimage/MImgCleanStd.[h,cc]:
1085 - added island calculation after image cleaning
1086 - fixed some output to be consistent
1087 - added ReadEnv
1088 - updated StreamPrimitive
1089 - added new cleaning method (probability cleaning)
1090
1091 * mimage/Makefile:
1092 - added mhist
1093
1094 * mmain/MEventDisplay.cc:
1095 - added display of island index
1096 - changed to support files with calibrated data, too
1097
1098 * mhvstime/MHVsTime.[h,cc]:
1099 - implemented the possibility to set a maximum number of points
1100
1101 * mbase/MParContainer.h:
1102 - changed StreamPrimitive to public
1103
1104 * mcalib/MMcCalibrationCalc.[h,cc]:
1105 - added fPar data member (MImagePar) to get number of
1106 saturating hi gain pixels
1107
1108 * mimage/Makefile, mimage/ImageLinkDef.h:
1109 - added MImagePar
1110 - added MHImagePar
1111
1112 * mimage/MConcentration.[h,cc]:
1113 - removed obsolete destructor
1114
1115 * mimage/MHillas.[h,cc]:
1116 - added a check for island index to calculation
1117
1118 * mimage/MHillasCalc.cc:
1119 - added option kCalcImagePar
1120 - added option kCalcHillasSrc
1121 - added Print function
1122 - added StreamPrimitive function
1123 - added resource support (ReadEnv)
1124
1125 * mimage/MHillasExt.[h,cc]:
1126 - added a check for island index to calculation
1127 - replaced for-loop by iterator
1128
1129 * mimage/MHillasSrc.[h,cc]:
1130 - changed argument to Calc from pointer to reference
1131
1132 * mimage/MHillasSrcCalc.[h,cc]:
1133 - fixed StreamPrimitive
1134 - added some const-qualifiers to data members
1135 - adapted to change in MHillasSrc
1136
1137 * mimage/MNewImagePar.[h,cc]:
1138 - moved saturating pixels to new class MImagePar
1139 - added a check for island index to calculation
1140 - increased version number
1141
1142 * mpointing/MSrcPosCam.h:
1143 - made StreamPrimitive public
1144
1145 * msignal/MArrivalTime.h:
1146 - removed operator()
1147 - added operator[] const
1148
1149 * manalysis/MCameraData.[h,cc]:
1150 - added algorithm for 'Probability cleaning'
1151
1152 * mbase/MMath.[h,cc]:
1153 - added GaussProb
1154
1155 * mjobs/MSequence.h:
1156 - added IsValid
1157
1158
1159
1160 2004/08/20: Thomas Bretz
1161
1162 * mjobs/MSequence.[h,cc]:
1163 - added path-option to SetupRuns
1164
1165 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, MJPedestal.cc:
1166 - changed file "UPDATE" to "RECREATE"
1167
1168 * macros/sql/filldotrbk.C:
1169 - removed obsolete output
1170
1171 * macros/sql/filldotrun.C:
1172 - removed obsolete output
1173 - updated to support ExcludedFDA-table
1174
1175 * mbase/MParList.[h,cc]:
1176 - added FindTask-member function
1177
1178 * mcalib/MHCalibrationChargeBlindCam.cc:
1179 - fixed a 'comparison between signed and unsigned'
1180
1181 * mfileio/MRead.h:
1182 - added GetFileName()
1183 - removed const-qualifier from CheckAndWrite
1184
1185 * mfileio/MReadMarsFile.cc:
1186 - changed some logiing output
1187
1188 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc]:
1189 - removed const-qualifier from CheckAndWrite
1190
1191 * mfileio/MWriteRootFile.[h,cc]:
1192 - simplified the constructor by adding Init() function
1193 - added ReInit function to support file splitting
1194 - added file splitting support (GetNewFileName, ChangeFile)
1195 - added new constructor for file splitting
1196 - made gsDef* a static member
1197 - slight changed to PreProcess to support file-splitting
1198 - if file-spliiting is enabled return always kTRUE in IsFileOpen
1199 - added many new outputs in case of possible problems
1200
1201 * mraw/MRawFileRead.[h,cc]:
1202 - changed return type of GetFileName()
1203
1204 * mraw/MRawFileWrite.[h,cc]:
1205 - removed obsolete pParList data member
1206 - by default write all events to the 'Events' tree
1207
1208 * msql/MSQLServer.[h,cc]:
1209 - enhanced Query function
1210
1211
1212
1213 2004/08/19: Marcos Lopez
1214
1215 * mjobs/MJCalibration.cc:
1216 - In the function FindColor(), when looking for the calibration color in
1217 the calibration file name, ignore the case, to deal with colors
1218 written in capital letters.
1219
1220
1221
1222 2004/08/19: Thomas Bretz
1223
1224 * mastro/MTransCelLocCam.[h,cc]:
1225 - renamed to MStarCamTrans and moved to mstarcam
1226
1227 * mastro/Makefile, mastro/AstroLinkDef.h:
1228 - removed MTransCelLocCam
1229
1230 * mstarcam/Makefile, mstarcam/AstroLinkDef.h:
1231 - cleaned up includes in Makefile
1232 - added MStarCamTrans
1233
1234
1235
1236 2004/08/19: Robert Wagner
1237
1238 * mtemp/MFindStars.[cc,h], mastro/MAstroCamera.cc,
1239 mtemp/MSourceDirections.[cc,h]
1240 - Changes to reflect the change of name of MStarPos, MStarCam
1241
1242
1243
1244 2004/08/18: Thomas Bretz
1245
1246 * mbadpixels/MBadPixelsCam.[h,cc]:
1247 - implemented function to calculate max cluster sizes
1248
1249 * macros/sql/filldotrbk.C, macros/sql/filldotrun.C:
1250 - added return value
1251
1252 * mjobs/MJCalibration.cc:
1253 - simplified FindColor by 1000% for later move to a new location
1254
1255 * mpedestal/MPedCalcFromLoGain.cc:
1256 - output the range only if it has changed
1257
1258
1259
1260 2004/08/18: Wolfgang Wittek
1261
1262 * mastro/MTransCelLocCam.[h,cc]
1263 - new class; allows to calculate for any point (X, Y) in the
1264 camera the local (celestial) coordinates if the local
1265 (celestial) coordinates are known for some fixed point (X0, Y0)
1266 in the camera
1267 - for given local (celestial) coordinates of the camera center,
1268 the meber function PlotGrid draws the lines of constant theta
1269 and phi (and of constant dec and hourangle) onto the camera
1270 plane
1271
1272 * mastro/Makefile, mastro/AstroLinkDef.h
1273 - MTransCelLocCam added
1274
1275 * macros/testMTrans.C
1276 - macro to test the class MTransCelLocCam
1277
1278
1279
1280 2004/08/17: Markus Gaug
1281
1282 * msignal/MExtractBlindPixel.[h,cc]
1283 - remove fModified which is taken care of in MJCalibration by the
1284 correct initialization
1285
1286 * mcalib/MCalibrationChargeBlindCam.[h,cc]
1287 - now a base class for different types of blind pixels cams.
1288 - moved fBlindPixels away from pointer, analogue to MGeomCam
1289
1290 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
1291 - updated to new call to GetNumBlindPixels()
1292
1293 * mcalib/Makefile
1294 * mcalib/CalibLinkDef.h
1295 * mcalib/MCalibrationChargeBlindCamOneOldStyle.[h,cc]
1296 * mcalib/MCalibrationChargeBlindCamTwoNewStye.[h,cc]
1297 - new classes deriving from and intializing
1298 MCalibrationChargeBlindCam
1299
1300 * mcalib/MCalibrationChargeBlindPix.[h,cc]
1301 - derive from MCalibrationPix instead of MCalibrationChargePix
1302 - create possibility to intialize QE's, etc. from outside
1303 - fix default to previous behaviour such that old code can still
1304 run on old files without changes
1305 - create copy function
1306
1307 * macros/calibration.C
1308 - updated macro to use of MCalibrationTestCam
1309
1310 * mcalib/MCalibrationCam.[h,cc]
1311 - comment the static variable gkNumPulserColors
1312 - take the pulser color enum and gkNumPulserColors out of the streamer
1313 - set the version nr from 3 to 4
1314 - Simplify a piece of the code dealing with the ForEach macro
1315
1316 * mcalib/MCalibrationChargeCam.[h,cc]
1317 - removed Init() function which is already fulfilled by the Init()
1318 function of MCalibrationCam
1319
1320 * mcalib/MCalibrationChargeCalc.cc
1321 - some changes to the output
1322 - call to MCalibrationChargeBlindCam->IsValid() removed
1323
1324 * mbadpixels/MBadPixelsCam.cc
1325 - included kDeviatingNumPhots in GetPixelContent()
1326
1327 * mjobs/MJCalibration.[h,cc]
1328 - some small modifications in the data-check display, discussed
1329 with Florian
1330 - found that the MFillH for the MHCalibrationChargeBlindCam had
1331 been replaced to MHCalibrationChargeBlindPix -> redone
1332 - adapted InitBlindPixel() to new classes initializing the right
1333 MCalibrationChargeBlindCam's
1334
1335 * mcalib/MCalibrationTestPix.[h,cc]
1336 * mcalib/MCalibrationTestCam.[h,cc]
1337 * mcalib/Makefile
1338 * mcalib/CalibLinkDef.h
1339 - new container class to store results of MCalibrationTestCalc
1340 and MHCalibrationTestCam
1341
1342 * mcalib/MCalibrationTestCalc.[h,cc]
1343 - adapted to use of MCalibrationTestCam
1344
1345 * mcalib/MHCalibrationTestCam.[h,cc]
1346 - adapted to use of MCalibrationTestCam
1347
1348
1349
1350 2004/08/17: Thomas Bretz
1351
1352 * mcalib/MCalibrateData.[h,cc]:
1353 - unrolled some if-else statements to accelerate the algorithm a
1354 bit (it is just the bottelneck of calibrating the signal)
1355 - made sure that code which in not needed is not executed in
1356 this case
1357
1358 * mbadpixels/MBadPixelsCam.cc:
1359 - unrolled if-else statements in GetPixelContent
1360
1361 * mcalib/MHCalibrationChargeBlindPix.cc:
1362 - commented out unsused variable
1363
1364 * mjobs/MJCalibration.cc:
1365 - some more output when writing the file
1366
1367 * mjobs/MJPedestal.[h,cc]:
1368 - added more resources
1369 - added fMaxEvents
1370
1371 * mraw/MRawEvtPixelIter.[h,cc]:
1372 - fixed behaviour or fABFlags in case the array is empty
1373 - changed Char_t data member to Byte_t according to change
1374 in MRawEvtData
1375
1376 * mraw/MRawEvtData.[h,cc]:
1377 - changed TArrayC data member to MArrayB to get rid of a memory
1378 leak which resulted in huge memory usage when reading
1379 MRawEvtData
1380 - changed version number from 4 to 5
1381 - changed size of fABFlag array to a more reasonable size
1382 (maxid/8+1)
1383
1384 * mraw/MRawEvtHeader.[h,cc]:
1385 - implemeted Getter for calibration pattern
1386
1387 * mhbase/MHMatrix.[h,cc], mranforest/MRanTree.cc,
1388 mtools/MHSimmulatedAnnealing.h, mtools/MSimmulatedAnnealing.h:
1389 - changed to compile with root-4.00/08
1390
1391 * mpedestal/MPedCalcFromLoGain.[h,cc]:
1392 - changed SetDumpEvents to SetNumEventsDump to fit roots naming
1393 convention
1394 - fixed crashes in case nothing has beendone
1395 - do not process abflag if it is not existing
1396 - for the moment do no call to ReCalc in Process
1397 - added some const-qualifiers
1398
1399 * mhist/MHCamera.h:
1400 - changed the definition of FetMinimum/GetMaximum such that
1401 it compiles with root 4.00/08
1402
1403
1404
1405 2004/08/17: Robert Wagner
1406
1407 * mstarcam, mstarcam/Makefile, mstarcam/StarcamLinkDef.h,
1408 mstarcam/StarcamIncl.h, macros/dohtml.C, macros/rootlogon.C
1409 - Added directory mstarcam for holding all classes related to
1410 studies of stars
1411
1412 * mstarcam/MStarPos.[cc,h], mstarcam/MStarCam.[cc,h],
1413 mstarcam/StarcamLinkDef.h, mstarcam/Makefile, Makefile
1414 - moved mtemp/MStarLocalPos.[cc,h], mtemp/MStarLocalCam.[cc,h]
1415
1416 * mastro/MAstroCamera.cc, mtemp/MFindStars.[cc,h],
1417 mtemp/MSourceDirections.[cc,h]
1418 - changed references to MStarLocalPos to MStarPos
1419
1420
1421
1422 2004/08/16: Thomas Bretz
1423
1424 * mcalib/MCalibrateData.[h,cc]:
1425 - change to support also 'No calibration of data'
1426 - removed obsolete dependancie on *'FromData' containers
1427
1428 * mcalib/MCalibrateData.[h,cc], mbadpixels/MBadPixelsCalc.[h,cc]:
1429 - added member function ReadEnv
1430
1431 * mbase/MTime.[h,cc]:
1432 - added new member function SetStringFmt
1433
1434 * mcalib/MHCalibrationChargeBlindPix.cc:
1435 - removed unused variable
1436
1437 * mcalib/MHCalibrationChargeBlindPix.cc:
1438 - removed unused variable
1439
1440
1441
1442 2004/08/16: Markus Gaug
1443
1444 * mcalib/MHCalibrationCam.cc
1445 - add a criterion to stop the Finalize() if both fHiGainArray
1446 and fLoGainArray have not been expanded.
1447 - replace two gLog by *fLog
1448 - add the pulser color (needed for the datacheck histograms)
1449 - some modifications in the data-check display, discussed with Florian
1450
1451 * mjobs/MJCalibration.[h,cc]
1452 - some small modifications in the data-check display, discussed
1453 with Florian
1454
1455 * mcalib/MHGausEvents.[h,cc]
1456 - make fSaturated Int_t and set to 0 in the Clean() function
1457
1458 * mcalib/MHCalibrationChargePix.[h,cc]
1459 - remove the Clean() function
1460
1461 * mbadpixels/MBadPixelsPix.h
1462 * mbadpixels/MBadPixelsCam.cc
1463 - new functions GetUnsuitableCalibration() and
1464 GetUnreliableCalibration() to denote the reason for unsuitability
1465 and unreliability.
1466 - in GetPixelContent flags 6 and 7.
1467 - will be used for the datacheck display
1468
1469
1470
1471 2004/08/14: Markus Gaug
1472
1473 * msignal/MExtractor.cc:
1474 - documented data members
1475 - included default for SetNamePedContainer()
1476
1477 * mjobs/MJPedestal.[h,cc]
1478 - some small modifications in the data-check display, discussed
1479 with Florian
1480
1481
1482
1483 2004/08/13: Thomas Bretz
1484
1485 * macros/readraw.C:
1486 - updated to get it working with MC data
1487
1488 * mbase/MTaskEnv.cc:
1489 - fixed a typo
1490
1491 * mcalib/MCalibrationChargeCalc.[h,cc],
1492 mcalib/MHCalibrationCam.[h,cc]:
1493 - added ReadEnv
1494 - changed some output slightly to match into a typical
1495 80-column console
1496
1497 * mjobs/MJCalibration.[h,cc]:
1498 - changed to support Sequences
1499 - added SetEnv
1500 - added possibility to change extractors from a resource file
1501 - put MBadPixelsMerge into the tasklist - for strange reasons
1502 it was missing
1503
1504 * mjobs/MJPedestal.[h,cc]:
1505 - fixed the output name for sequences
1506 - added possibility to set output from resource file
1507
1508 * mpedestal/MPedCalcFromLoGain.[h,cc]:
1509 - changed handling of sanity check for setup
1510 - removed obsolete variables
1511 - changed output slightly to fit into a typical 80-column
1512 console
1513 - added some sanity checks to PostProcess
1514 - added some info-output to PostProcess
1515 - calculate a mean number of total events
1516 - call ReCalc to calc mean values of sectors and areas
1517
1518 * mpedestal/MPedCalcPedRun.[h,cc]:
1519 - changed to use ReCalc instead of doing the calculation itself
1520 for convinience I left the old code as a comment inside -
1521 will be removed later
1522
1523 * mpedestal/MPedPhotCam.[h,cc]:
1524 - slight changes in ReCalc
1525
1526 * mpedestal/MPedestalCam.[h,cc]:
1527 - added ReCalc function (maily taken from PedPhotCamReCalc)
1528
1529 * mpedestal/MPedestalPix.h:
1530 - added Getter for fNumEvents
1531
1532 * mraw/MRawEvtHeader.[h,cc]:
1533 - started adding support for calibration pattern. Please don't
1534 take the current implementation to serious
1535
1536
1537
1538 2004/08/12: Hendrik Bartko
1539
1540 * msignal/MExtractor.cc:
1541 - corrected the setting of AddSerialNumber for Find(Create)Object
1542
1543 * msignal/MExtractTime.cc:
1544 - corrected the setting of AddSerialNumber for FindObject
1545
1546 * mbadpixels/MBadPixelsCalc.cc
1547 - corrected the setting of AddSerialNumber for FindObject
1548
1549 * mbadpixels/MBadPixelsTreat.cc
1550 - corrected the setting of AddSerialNumber for FindObject
1551
1552 * mimage/MImgCleanStd.cc
1553 - corrected the setting of AddSerialNumber for FindObject
1554
1555
1556
1557 2004/08/12: Markus Gaug
1558
1559 * msignal/MExtractBlindPixel.[h,cc]
1560 - Set the method from outside
1561 - unified the defaults to new blind pixels
1562
1563 * mjobs/MJCalibration.[h,cc]
1564 - implementation of MHCalibrationChargeCam
1565
1566 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
1567 - adapt Draw() and DrawLegend() for the datacheck display
1568
1569 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
1570 - new member function fFitFunc, can be set from outside and is
1571 further passed onto the MHCalibrationChargeBlindPix's
1572
1573 * mcalib/MHCalibrationChargeCalc.[h,cc]
1574 - improved readability of output
1575 - set default fPheErrLimit to 4.5 sigma
1576
1577 * mcalib/MCalibrateData.[h,cc]
1578 - give defaults to the Setter functions
1579 - change default calibration mode from blindpixel to ffactor
1580 - change exclusion of bad pixels from unsuitable run to unsuitable.
1581 - some cosmetic changes
1582 - remove fNumHiGainFADCSamples and fNumLoGainFADCSamples as
1583 data members
1584 - remove fConversionHiLo which is not used in the class
1585 - write a StreamPrimitive()
1586
1587
1588 2004/08/12: Thomas Bretz
1589
1590 * mreport/MReportFileReadCC.cc:
1591 - fixed a bug in CheckFileHeader which caused a condition to
1592 be wrongly evaluated
1593
1594 * mbase/MStatusDisplay.cc:
1595 - small modification to postscript output
1596
1597 * showlog.cc:
1598 - added
1599
1600 * Makefile:
1601 - added showlog
1602
1603 * macros/sql/filldotrbk.C, macros/sql/filldotrun.C:
1604 - update of comments
1605
1606 * mbase/MEvtLoop.cc:
1607 - first interprete environment for fLog
1608
1609 * mbase/MEvtLoop.[h,cc], mbase/MParContainer.[h,cc],
1610 mbase/MParList.[h,cc], mbase/MTaskList.[h,cc],
1611 mfileio/MRead.[h,cc], mhbase/MHMatrix.[h,cc],
1612 mpedestal/MPedCalcFromLoGain.[h,cc],
1613 mpedestal/MPedCalcFromPedRun.[h,cc],
1614 msignal/MExtractor.[h,cc]:
1615 - changed type of ReadEnv from Bool_t to Int_t
1616
1617 * mbase/MLog.cc:
1618 - fixed ReadEnv
1619
1620 * mbase/MParContainer.[h,cc]:
1621 - added TestEnv
1622
1623 * mbase/MParList.cc, mbase/MTaskList.cc:
1624 - moved some code to MParContainer::TestEnv
1625
1626 * mbase/Makefile, mbase/BaseLinkDef.h:
1627 - added MTaskEnv
1628
1629 * mhist/MHCamera.cc:
1630 - removed some output (Draw function don't write something
1631 to the console) - it is displayed anyhow
1632 - added some SetBorderMode(0)
1633
1634 * mjobs/JobsLinkDef.h, mjobs/Makefile:
1635 - added MSequence
1636
1637 * mjobs/MJPedestal.[h,cc]:
1638 - changed to allow a sequence as input
1639 - changed to allow setting up the extractor from a TEnv
1640
1641 * mpedestal/MPedCalcFromLoGain.[h,cc]:
1642 - moved a common block of code to a new Calc function
1643 - fixed ReadEnv
1644
1645 * mpedestal/MPedCalcPedRun.cc, msignal/MExtractor.cc:
1646 - fixed ReadEnv
1647
1648 * mraw/MRawCrateData.cc:
1649 - updated Print()
1650
1651 * mraw/MRawFileRead.h:
1652 - added default to first constructor argument
1653
1654
1655
1656
1657 2004/08/12: Hendrik Bartko
1658
1659 * msignal/MExtractor.[h,cc]:
1660 - add SetNamePedContainer to set the name of the pedestal
1661 container
1662
1663 * msignal/MExtractTime.[h,cc]:
1664 - add SetNamePedContainer to set the name of the pedestal
1665 container
1666
1667 * mbadpixels/MBadPixelsCalc.[h,cc]
1668 - add SetNamePedPhotContainer to set the name of the pedphot
1669 container
1670
1671 * mbadpixels/MBadPixelsTreat.[h,cc]
1672 - add SetNamePedPhotContainer to set the name of the pedphot
1673 container
1674
1675 * mimage/MImgCleanStd.[h,cc]
1676 - add SetNamePedPhotContainer to set the name of the pedphot
1677 container
1678
1679
1680
1681 2004/08/12 : Wolfgang Wittek
1682
1683 * manalysis/MSourcPosFromStarPos.[h,cc]
1684 - replace MMcEvt by MPointingPos
1685
1686 * manalysis/MSigmabarCalc.[h,cc]
1687 - replace MMcEvt by MPointingPos
1688
1689 * manalysis/MSigmabar.[h,cc]
1690 - in member function Calc() return fSigmabarInner,
1691 not fSigmabar
1692 - update comments
1693 - sigmabar is the sqrt of the average (pedRMS^2/area)
1694
1695 * manalysis/MPad.[h,cc]
1696 - replace MMcEvt by MPointingPos
1697 - remove bugs
1698
1699 * mfilter/MFSelBasic.[h,cc]
1700 - replace MMcEvt by MPointingPos
1701
1702 * mfilter/Makefile
1703 - add -I../mpointing
1704
1705 * mhist/MHSigmaTheta.[h,cc]
1706 - replace MMcEvt by MPointingPos
1707 - replace 'MCerPhotPix cerpix' by 'MCerPhotPix &cerpix'
1708 - add plot "Sigmabar(Outer) versus Theta"
1709
1710 * macros/ONOFFAnalysis.C
1711 - Job A : got the padding working, work in progress
1712
1713
1714
1715 2004/08/11: Hendrik Bartko
1716
1717 * mcalib/MCalibrateData.[h,cc]:
1718 - add SetPedestalType to choose whether to calibrate the pedestal
1719 for each run or each event
1720 - add EnablePedestalType to enable to calibrate the pedestal for
1721 each run or each event
1722 - add DisablePedestalType to disable to calibrate the pedestal for
1723 each run or each event
1724 - add TestFlag test whether to do the run and / or event pedestal
1725 calculation
1726 - add SetNamePedADCRunContainer to change name of pedestal input
1727 container for run pedestals
1728 - add SetNamePedADCEventContainer to change name of pedestal input
1729 container for event pedestals
1730 - add SetNamePedPhotRunContainer to change name of pedestal output
1731 container for run pedestals
1732 - add SetNamePedPhotEventContainer to change name of pedestal output
1733 container for run pedestals
1734 - add CalibratePedestal, function to calibrate the chosen pedestal
1735 - added the calibration types kFlatCharge, kDummy as in MCalibrate
1736
1737 * mbadpixels/MBadPixelsCalc.cc:
1738 - in MBadPixelsCalc::Process() called the MPedPhotCam::ReCalc to
1739 calculate the mean values of the pedestal and RMS for the areas
1740 and sectors of the camera.
1741
1742
1743
1744 2004/08/10: Thomas Bretz
1745
1746 * mreport/MReportFileReadCC.[h,cc]:
1747 - added
1748
1749 * mreport/Makefile, mreport/ReportsLinkDef.h:
1750 - added MReportFileReadCC
1751
1752 * mreport/MReport*.[h,cc]:
1753 - prpagate file version number to all Interpreters
1754
1755 * merpp.cc:
1756 - added new commandline options to support different CC files
1757 - changed help-output
1758 - temporarily removed SQL option
1759
1760 * readraw.cc:
1761 - a small fix (a '.' was missing)
1762
1763 * mraw/MRawEvtData.cc:
1764 - fixed bug in Print
1765
1766 * manalysis/MGeomApply.cc:
1767 - changed to Init all MCamEvents in the parlist
1768
1769 * mbase/MParList.[h,cc]:
1770 - added a cast operator to TIterator*
1771 - check whether a automatic created class inherits from MParConatiner
1772
1773 * mgui/MCamEvent.[h,cc]:
1774 - added Init
1775 - added InitSize
1776
1777 * mmc/MMcTrig.cxx:
1778 - added a new option to Print()
1779
1780 * mraw/MRawEvtData.[h,cc], mraw/MRawEvtHeader.[h,cc],
1781 mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc
1782 - changed Init() to InitRead()
1783
1784 * msignal/MArrivalTime.[h,cc]:
1785 - changed argument of InitSize according to MCamEvent
1786
1787 * msql/MSQLServer.[h,cc]:
1788 - small changes to interface
1789
1790 * mimage/MHillasCalc.[h,cc]:
1791 - changed names of TString data members
1792
1793
1794
1795 2004/08/10: Robert Wagner
1796
1797 * mreport/MReportCamera.[h,cc]
1798 - added function InterpreteHOT which interprete the HOT* part of
1799 the report. The variable HVs_modified_by_HOT_Pixels is
1800 extracted, but not yet written in the corresponding MARS
1801 parameter container
1802
1803
1804
1805 2004/08/10: Markus Gaug
1806
1807 * mcalib/MCalibrationTestCalc.[h,cc]
1808 - added calculation and output of maximum not-interpolatable
1809 cluster.
1810
1811 * macros/bootcampstandardanalysis.C
1812 - added MBadPixelsTreat
1813
1814
1815 * mcalib/MCalibrate.cc
1816 - implemented different way to calculate error of signal
1817 in method kFlatCharge (as discussed with Keiichi).
1818
1819
1820
1821 2004/08/10: Florian Goebel
1822
1823 * mpedestal/MPedCalcFromLoGain.[h,cc]
1824 - add SetPedContainerName() to change name
1825 of output container
1826 - fix bug affecting behaviour when running twice
1827 over the same run
1828 - change format of "Format"
1829 - change default value for fgMaxHiGainVar to 40
1830
1831
1832
1833 2004/08/10: Nadia Tonello
1834
1835 * mbadpixels/MBadPixelsTreat.[h,cc]
1836 - replaced flag SetSloppyTreatment() with SetHardTreatment()
1837 Now the default behaviour consists on treating only the
1838 unsuitable pixels, and not also the ureliable, as it was
1839 before. If you want to keep on treating both unsuitable and
1840 unreliable pixels, please set the new flag on in your macro.
1841
1842 * mjobs/MJExtractCalibTest.cc
1843 - removed line containing SetSloppyTreatment()
1844
1845
1846
1847 2004/08/10: Thomas Bretz
1848
1849 * mpedestal/MPedestalPix.[h,cc]:
1850 - as discussed removed fValid
1851
1852 * mpedestal/MPedCalcFromPedRun.[h,cc],
1853 mpedestal/MPedCalcFromLoGain.[h,cc]:
1854 - removed dependancy on MBadPixelsCam
1855
1856 * mastro/MAstro.[h,cc]:
1857 - implemented GetMoonPeriod
1858 - implemented GetMoonPhase
1859
1860 * mbase/MTime.cc:
1861 - Fixed a floating point problem in Set(&tv)
1862 - added GetDateOfSunrise
1863
1864
1865
1866 2004/08/09: Markus Gaug
1867
1868 * mcalib/MHGausEvents.[h,cc]
1869 - added function IsOnlyOverflow()
1870
1871 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
1872 - put default arguments in the Clone() and the Draw() function
1873 (needed by e.g. TObject::DrawClone())
1874 - added name and title to the class (was forgotten)
1875
1876 * mjobs/MJPedestal.[h,cc]
1877 - set the possibility to have the datacheck display with the
1878 function SetDataCheckDisplay()
1879
1880
1881
1882 2004/08/09: Wolfgang Wittek
1883
1884 * mtemp/MStarLocalCam.[h,cc], mtemp/MStarLocalPos.[h,cc]
1885 - new variables added for the fit of a 2dim Gaussian with
1886 correlations
1887 - the corresponding Set and Get functions were added
1888 - the Paint function was extended correspondingly
1889
1890 * mtemp/MTelAxisFromStars.[h,cc]
1891 - new class (task) which determines the source position from star
1892 positions in the camera
1893
1894 * mtemp/MHTelAxisFromStars.[h,cc]
1895 - new class (container); produce plots for MTelAxisFromStars
1896
1897 * mtemp/MSkyCamTrans.[h,cc]
1898 - new class (task) ; container holding the parameters for the
1899 transformation from sky coordinates (projected onto the camera)
1900 to camera coordinates
1901
1902 * mtemp/Makefile, mtemp/TempLinkDef.h
1903 - MTelAxisFRomStars added
1904 - MHTelAxisFromStars added
1905 - MSkyCamTrans added
1906
1907 * mtemp/findTelAxisFromStars.C
1908 - new macro: extended version of findstars.C
1909 (in mtemp/mifae/macros/)
1910 - call to MTelAxcisFromStars and MHTelAxisFromStars
1911 was added
1912
1913 * mtemp/MFindStars.[h,cc]
1914 - add correlated Gauss fit
1915
1916
1917
1918 2004/08/06: Markus Gaug
1919
1920 * mcalib/MCalibrationTestCalc.[h,cc]
1921 * mcalib/Makefile
1922 * mcalib/CalibLinkDef.h
1923 - new class to retrieve the results of MHCalbirationTestCam
1924 - outputs the results of the bad pixels interpolation and the
1925 new relative flat-fielding of the camera.
1926
1927 * mjobs/MJExtractCalibTest.cc
1928 - uncomment (and use) the interpolation of bad pixels
1929 - use the class MCalibrationTestCalc
1930
1931 * mcalib/MHCalibrationChargeLoGainPix.cc
1932 - increase the default upper histogram limits for the
1933 large extraction windows.
1934
1935 * msignal/MExtractor.cc
1936 - fixed a bug in one possible output using Form()
1937 which produced a segm.violation in that case.
1938
1939 * mcalib/MHCalibrationTestCam.cc
1940 - adapt class for the interpolation of pixels.
1941
1942 * mcalib/MCalibrationChargeCalc.cc
1943 - fixed a small bug in the calculation of average number of
1944 photo-electrons
1945
1946
1947 2004/08/06: Nadia Tonello
1948
1949 * mimage/MImgCleanStd.cc:
1950 - in the Process, the Step3 (that checks the boundary pixels)
1951 is skipped when no action is espected, i.e. if lvl1 <= lvl2.
1952 This will accelerate the cleaning process in such cases.
1953
1954 * mbadpixels/MBadPixelsCalc.[h,cc]:
1955 - removed dependence on MSigmabar
1956
1957
1958
1959 2004/08/05: Thomas Bretz
1960
1961 * mastro/MAstroCatalog.[h,cc]:
1962 - changed return type of AddObject to Bool_t
1963 - changed Reading member function to use AddObject
1964
1965 * msignal/MArrivalTime.h:
1966 - Added missing ClassDef
1967
1968 * mhist/MHEvent.h:
1969 - Removed strange MCameraSignal
1970
1971
1972
1973 2004/08/05: Robert Wagner
1974
1975 * mastro/MAstroCatalog.[h,cc]
1976 - Added MAstroCatalog::AddObject, functionality to insert single
1977 objects manually; needed for mtemp/mmpi/MSourceDirections
1978
1979
1980
1981 2004/08/05: Thomas Bretz
1982
1983 * manalysis/MGeomApply.cc, mimage/MCameraSmooth.[h,cc]:
1984 - removed dependancy on MBlindPixel
1985
1986 * macros/sql/readrbk.C, msql/MSQLServer.cc:
1987 - fixed some memory leaks - the result of TSQLServer::Query
1988 must be deleted
1989
1990 * mbase/MTaskInteractive.cc:
1991 - added some comments
1992
1993 * mmain/MBrowser.cc:
1994 - fixed a bug which caused '/data/MAGIC' not to be shown in
1995 the dir-list
1996
1997 * mmc/MMcEvt.hxx:
1998 - added some more particle ids
1999
2000 * msql/MSQLServer.[h,cc]:
2001 - some improvements to the user interface
2002
2003 * macros/sql/filldotrun.C:
2004 - added
2005
2006
2007
2008 2004/08/04: Markus Gaug
2009
2010 * msignal/MExtractFixedWindowSpline.cc
2011 - replaced delete's of the array by a delete [].
2012
2013 * mjobs/MJCalibration.cc
2014 - replaced default time extractor by MExtractTimeFastSpline
2015
2016 * mbadpixels/MBadPixelsPix.cc
2017 - updated the class description
2018
2019
2020
2021 2004/08/04: Thomas Bretz
2022
2023 * manalysis/MBlindPixels.[h,cc], manalysis/MBlindPixelCalc.[h,cc],
2024 manalysis/MBlindPixelCalc2.[h,cc]:
2025 - as discussed some weeks ago the classes have been removed
2026
2027 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2028 - removed the MBlind* entries
2029
2030 * star.cc, mmain/MEventDisplay.cc, mmain/MOnlineDisplay.cc,
2031 mmain/MAnalysis.cc, mfileio/MCT1ReadPreProc.[h,cc]:
2032 - removed usage of MBlind*
2033 - MBadPixel* TO BE ADDED
2034
2035 * merpp.cc:
2036 - moved interpretation of command line options to MLog
2037 - added a check for unknown options
2038
2039 * manalysis/MCameraData.[h,cc]:
2040 - added some comments
2041 - fixed some errors in the documentation
2042 - changed ClassDef to 1
2043 - changed the new algorithms such that any number of different
2044 pixel-sizes are supported
2045 - small modifications to the sanity checks
2046
2047 * mbadpixels/MBadPixelsTreat.h:
2048 - fixed the argument type of SetNumMinNeighbors
2049
2050 * mbase/MArgs.cc:
2051 - comment updated
2052
2053 * mbase/MEvtLoop.cc:
2054 - added reading and writing of fLog environment
2055
2056 * mbase/MLog.[h,cc]:
2057 - added Reading and writing Environment (ReadEnv, WriteEnv)
2058 - added a function to setup MLog from command line arguments
2059
2060 * mbase/MTaskInteractive.[h,cc]:
2061 - added an example
2062
2063 * mbase/MTime.cc:
2064 - added a warning for the SetTimeFormat usage
2065
2066 * mimage/MImgCleanStd.[h,cc]:
2067 - some updates to the old comments
2068 - NEW COMMENTS FOR SCALED CLEANING STILL MISSING!
2069 - implemented scaled image cleaning
2070 - replaced usage of MSigmabar by MPedPhotCam for democratic cleaning
2071
2072 * manalysisct1, manalysisct1/Makefile,
2073 manalysisct1/AnalysisCT1LinkDef.h:
2074 - new
2075
2076 * manalysis/MCT1*, mfileio/structures.h, mfileio/MCT1Read*.[h,cc]:
2077 - moved to new directory manalysisct1
2078
2079 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2080 - updated
2081 - removed MPad because long time ago changed discuseed were not made
2082 (it doesn't compile anymore, because MBlindPixels is missing now)
2083
2084 * mfileio/Makefile, mfileio/FileIOLinkDef.h:
2085 - updated
2086
2087 * mbase/MLog.cc:
2088 - added missing kMustCleanup bit of fPlugins
2089
2090 * mbadpixels/MBadPixelsPix.h:
2091 - added easier access to the information whether a pixel is unsuitable
2092 or unreliable
2093
2094 * mbadpixels/MBadPixelsTreat.[h,cc]:
2095 - added SloppyTreatment
2096
2097
2098
2099 2004/08/03: Hendrik Bartko
2100
2101 * manalysis/MCameraData.[h,cc]
2102 - Added new function CalcCleaningLevel2 to take into account that
2103 the pedestal RMS does not scale with the inverse square root of
2104 the pixel area for the calculation of the cleaning levels.
2105 - Added new function CalcCleaningLevelDemocratic. It calculates
2106 the cleaning levels for the democratic image cleaning directly
2107 from the average values of MPedPhotCam instead of using
2108 MSigmabar.
2109
2110
2111
2112 2004/08/03: Thomas Bretz
2113
2114 * macros/sql:
2115 - new directory
2116
2117 * macros/sql/readrbk.C:
2118 - new macro
2119
2120 * mjobs/MJExtractSignal.cc:
2121 - fixed missing initialisation of fExtractor, fExtractorTime
2122
2123
2124
2125 2004/07/30: Robert Wagner
2126
2127 * mastro/MAstroCamera.[h,cc]
2128 - Added method FillStarList() which fills a TList with objects
2129 of type MStarLocalPos for all stars found from the catalog
2130 matching specified criteria (FOV, magnitude limit, position)
2131 - Lines involving MStarLocalPos have been commented out for
2132 the time being since MStarLocalPos is not part of standard
2133 MARS yet!
2134
2135 * mtemp/MStarLocalPos.[h,cc]
2136 - Added handling of the minuit error matrix elements to
2137 MStarLocalPos::MSetFitValues
2138 - Added member variables to hold error matrix elements
2139 - Added getters for error matrix elements
2140 - Expected star position is painted by Paint, too.
2141 - Error matrix elements are printed by Print, too.
2142
2143
2144
2145 2004/07/28: Javi Lopez
2146
2147 * mhist/MHCamera.[h,cc]
2148 - Added new argument to CntCamContent() funtion to select to count
2149 the events above or bellow a certain discriminator level.
2150
2151
2152
2153 2004/07/20: Florian Goebel
2154
2155 * mpedestal/MPedestalPix.[h,cc]
2156 - added:
2157 + fPedestalABoffset: difference between pedestal mean of odd slices
2158 and the total pedestal mean (fPedestal)
2159 + fNumEvents: number of times, the Process was executed
2160 (to estimate the error of pedestal)
2161
2162 * mpedestal/MPedestalCam.cc
2163 - calculate error using pixel vise fNumEvents
2164
2165 * mpedestal/MPedCalcFromLoGain.[h,cc]
2166 * mpedestal/Makefile
2167 * mpedestal/PedestalLinkDef.h
2168 - added class which calculates pedestal values from the low gain
2169 slices of a data run
2170 - it also calculates the ABoffset values and fills MPedestalPix
2171 accordingly
2172
2173 * macros/ScanPulseABPed.C
2174 - macro plotting the pulse shape using MPedCalcFromLoGain
2175 and correcting for the AB 150 MHz clock noise.
2176
2177 * msignal/MExtractSignalABcorr.[h,cc]
2178 * msignal/Makefile
2179 * msignal/SignalLinkDef.h
2180 - example for signal extractor class similar to MExtractSignal
2181 correcting for ABoffset which allows to use odd number of slices
2182
2183 * macros/ScanExtractSignalABCorr.C
2184 - macro using MExtractSignalABcorr
2185
2186
2187
2188 2004/07/16: Markus Gaug
2189
2190 * msignal/MExtractFixedWindowSpline.cc
2191 - replace the delete's by delete [].
2192
2193 * mcalib/MHCalibrationChargeCam.cc
2194 - remove some obsolete commented code
2195
2196 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
2197 - derive only from MHGausEvents and not additionally from
2198 MHCalibrationChargePix
2199 - Additional setter for MCalibrationChargeBlindPix, used by
2200 MHCalibrationChargeBlindCam
2201 - Getter for fSinglePheCut
2202 - adapted Draw for the "datacheck" option
2203 - use variable histogram range depending on whether amplitude
2204 or integral has been extracted
2205
2206 * mcalib/MCalibrationChargeBlindCam.[h,cc]
2207 * mcalib/MHCalibrationChargeBlindCam.[h,cc]
2208 * mcalib/Makefile
2209 * mcalib/CalibLinkDef.h
2210 - two new classes for the treatment of various blind pixels in the
2211 camera
2212
2213 * mcalib/MCalibrationChargeCalc.[h,cc]
2214 - adapted to use of various blind pixels
2215
2216
2217
2218 2004/07/15: Markus Gaug
2219
2220 * mcalib/MHCalibrationChargeCam.[h,cc]
2221 - hard coded the reference lines for the DataCheck Display.
2222 Should be faster and easier to read than the TArrayF's.
2223
2224 * mcalib/MCalibrationChargeCalc.[h,cc]
2225 - removed obsolete pointer to MEvtTime
2226 - fixed bug in calculation of RMS for FFactor of inner pixels
2227 in case that the fit does not converge.
2228 - introduced blind pixel and PIN Diode result flags for later
2229 output or storage in DB.
2230
2231
2232
2233 2004/07/14: Hendrik Bartko
2234
2235 * mpedestal/MPedPhotCam.[h,cc]
2236 - added average areas and sectors (in analogy MPedestalCam)
2237 - added new function InitAreas(const UInt_t i)
2238 - added new function InitSectors(const UInt_t i)
2239 - added new function GetNumAreas()
2240 - added new function GetNumSectors()
2241 - added new function ReCalc, computes the average values for the
2242 sectors from all pixels which are not marked
2243 MBadPixelsPix::kUnsuitableRun
2244
2245 * mpedestal/MPedPhotPix.[h,cc]
2246 - added a variable for the number of events from which the
2247 pedestals are computed
2248
2249 * manalysis/MGeomApply.cc
2250 - changed initialization of MPedPhotCam
2251
2252 * msignal/MExtractTimeHighestIntegral.cc
2253 - implemented the time calculation respective to the zero FADC
2254 time sample, not respective to the first sample of the chosen
2255 range
2256
2257 * msignal/MArrivalTimeCalc2.cc
2258 - implemented the time calculation respective to the zero FADC
2259 time sample, not respective to the first sample of the chosen
2260 range
2261
2262
2263
2264 2004/07/14: Markus Gaug
2265
2266 * msignal/MExtractedSignalBlindPixel.[h,cc]
2267 - added new function GetNumBlindPixels()
2268 - added more comments
2269
2270 * msignal/MExtractBlindPixel.[h,cc]
2271 - adapted to new configuration of now three blind pixels
2272 - runs with run number smaller than 31693 are treated in the old way
2273 - runs with run number higher than 31693 have no more NSB filter,
2274 but possibility to choose between integral or amplitude (with spline)
2275 extraction. Default is amplitude.
2276
2277 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
2278 - use the variable fPixId to design an ID to the class.
2279 Later, a new class MHCalibrationChargeBlindCam can host
2280 the different blind pixels as individual
2281 MHCalibrationChargeBlindPix.
2282 - Default ID is 0 which is also default in MExtractedSignalBlindPix
2283 - for current code, nothing has thus changed so far...
2284
2285 * msignal/MExtractAmplitudeSpline.cc
2286 - fixed a bug causing a segmentation violation in the destructor
2287 (array dimension was not respected correctly)
2288
2289 * mcalib/MHGausEvents.cc
2290 - removed an inconsistency in the naming of fHPowerProbability which
2291 can cause a memory leak (I hope, this was the cause of some of the
2292 leaks we had, but I'm not sure).
2293 - removed the setting of fPixId to -1 in the Clear()
2294
2295
2296
2297 2004/06/30: Thomas Bretz
2298
2299 * mbase/MEvtLoop.[h,cc]:
2300 - overwrite ReadEnv with a new function taking the
2301 name of the setup file as argument
2302
2303 * mjobs/MJPedestal.[h,cc]:
2304 - added setup file name as argument to
2305
2306 * mjobs/MJPedestal.[h,cc]:
2307 - implemented a new data member fEnv
2308 - implemented new setter SetEnv
2309 - some small changes towards setup files
2310 - some simplifications to line drawing
2311
2312 * msignal/MExtractor.[h,cc]:
2313 - added ReadEnv member function
2314 - removed obsolete virtual qualifiers in header
2315 - simplified usage of Form()
2316
2317 * mraw/MRawFileWrite.[h,cc]:
2318 - moved writing of RunHeaders from PreProcess to new ReInit
2319
2320
2321
2322 2004/06/29: Thomas Bretz
2323
2324 * mpedestal/MPedCalcFromData.[h,cc]
2325 - changed data member names according to coding rules
2326
2327
2328
2329 2004/06/25: Pepe Flix
2330
2331 * mpedestal/MPedCalcFromData.[h,cc]
2332 - added class to evaluate pedestal mean/RMS from real data events.
2333 Low Gain samples used when no switch to LG happened.
2334
2335 * macros/PedCalcFromData.C
2336 - added macro that uses the class to evaluate pedestals from real
2337 data.
2338
2339
2340
2341 2004/06/23: Markus Gaug
2342
2343 * macros/calibration.C
2344 - added flag to skip the testing
2345 - added calibration of pedestal files and creation of F2-files.
2346
2347 * macros/bootcampstandardanalysis.C
2348 - updated to use MJExtractSignal
2349
2350 * mcalib/MHGausEvents.cc
2351 - give a unique name to fHPowerProbability, otherwise
2352 MH::ProjectArray will use an existing one.
2353
2354
2355
2356 2004/06/18: Markus Gaug
2357
2358 * manalysis/MHPedestalCam.[h,cc]
2359 - use flag to choose if one wants to re-normalize the histogram
2360 results
2361
2362 * mhist/MHCamera.[h,cc]
2363 - added one argument to CntCamContent to tell if event above or
2364 below threshold have to be counted. Default is above, like before
2365 - added one argument to Projection and ProjectionS giving the number
2366 of bins as argument (default 50 like before)
2367
2368 * mcalib/MCalibrationChargeCalc.cc
2369 - replaced extraction of mean number of photo-electrons and mean
2370 F-Factor by a Gauss fit (instead of mean and RMS). Set the
2371 limit for deviating F-Factor from 3.5 to 4.5. This should reduce
2372 the number of uncalibrated pixels below 50 again (which was not
2373 the case in the last weeks).
2374
2375 * mcalib/MHGausEvents.h
2376 - make DrawEvents() public
2377
2378 * mcalib/MHCalibrationChargeLoGainPix.cc
2379 - upper histogram limit lowered for the better visibility in the
2380 data check.
2381
2382 * mcalib/MHCalibrationChargeCam.[h,cc]
2383 - adapted Draw for the datacheck
2384
2385 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
2386 - adapted for various blind pixels
2387 - adapted Draw for the datacheck
2388
2389 * msignal/MExtractor.[h,cc]
2390 * msignal/MExtractFixedWindow.[h,cc]
2391 * msignal/MExtractSlidingWindow.[h,cc]
2392 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2393 * msignal/MExtractFixedWindowSpline.[h,cc]
2394 - made sum in FindSignal() float which is now the variable used by
2395 the majority of the extractors.
2396
2397 * msignal/MExtractAmplitudeSpline.[h,cc]
2398 - new extractor calculating the amplitude using a spline.
2399
2400 * mcalib/MCalibrationPix.[h,cc]
2401 * mcalib/MCalibrationChargePix.[h,cc]
2402 * mcalib/MCalibrationChargeCalc.[h,cc]
2403 - added debug flags and output on debug
2404
2405 * mbadpixels/MBadPixelsCam.cc
2406 - enlarged the Print-function
2407
2408
2409
2410 2004/06/17: Markus Gaug
2411
2412 * mjobs/MJPedestal.[h,cc]
2413 - adapted display for the datacheck
2414
2415 * mcalib/MHCalibrationChargeCam.[h,cc]
2416 - new function Draw for the datacheck
2417 - new clone function for the DrawClone
2418
2419 * mcalib/MHCalibrationCam.h
2420 - make clone function virtual
2421
2422 * mjobs/MJCalibration.cc
2423 - adapted display for the datacheck
2424
2425 * mcalib/MHGausEvents.h
2426 - two new getters for fFirst and fLast
2427
2428 * mhist/MHCamera.h
2429 - make SetUsed() and Fill(x,w) public. It is now possible to use the
2430 Fill-function together with the SetUsed(idx), when no
2431 SetCamContent(...) is available.
2432 Previously, only a Fill(x,y,w) was public, with x and y positions
2433 in the camera.
2434
2435 * mjobs/MJPedestal.[h,cc]
2436 - updated the data-check display
2437
2438
2439
2440 2004/06/12: Abelardo Moralejo
2441
2442 * manalysis/MMcCalibrationUpdate.cc
2443 * mcalib/MMcCalibrationCalc.[h,cc]
2444 - Fixed mistake in the calibration which occurred only when
2445 different light collection efficiency was simulated for outer
2446 pixels.
2447
2448 * manalysis/MMcCalibrationUpdate.[h,cc]
2449 - Adapted to the possibility of having different light collection
2450 efficiencies in inner and outer pixels. For now we assume that the
2451 dependence with incidence angle on the camera plane is the same
2452 for both types of pixels.
2453
2454
2455
2456 2004/06/12: Markus Gaug
2457
2458 * msignal/MExtractFixedWindow.cc
2459 - output the number and exact range of extraction to *fLog in the
2460 ReInit(), like it is done by MPedCalcPedRun
2461
2462 * macros/bootcampstandardanalysis.C
2463 - exchanged MArrivalTimeCalc2 in 4th loop by timeext (defined
2464 in the beginning)
2465
2466
2467
2468 2004/06/11: Markus Gaug
2469
2470 * mpedestals/MPedCalcPedRun.cc
2471 - set the default upper range to 29, because otherwise the extraction
2472 window will be made too small in case that more than 14 "high-gain"
2473 slices shall be extracted. This is a bugfix! It calculated wrong
2474 pedestals in case that the user says: SetRange(a,b), where b is
2475 bigger than 14 in combination with SetWindowSize(x) where x is bigger
2476 than 14 as well (instead of : SetRange(a,b,c,d), where
2477 everything went fine). However, the intention of the last months
2478 changes was to allow exactly also the first possibility.
2479
2480 * mjobs/MJCalibration.cc
2481 - put run 27474 in list of unavailable runs (see runbook)
2482
2483
2484
2485 2004/06/08: Markus Gaug
2486
2487 * mhist/MHCamera.cc
2488 - reduce number of default bins in AzimuthProfile
2489 - use MatchSector in AzimuthProfile, like in RadialProfile
2490
2491 * mcalib/MCalibrationChargeCalc.cc
2492 - fix lower limit for deviation F-Factor to 1.1. This discarts a
2493 smaller number of especially outer pixels in some runs taken with
2494 the CT1 pulser box.
2495
2496
2497
2498 2004/06/07: Markus Gaug
2499
2500 * mcalib/MHCalibrationCam.h
2501 - add a function GetSize()
2502
2503 * msignal/MExtractTimeFastSpline.cc
2504 - fixed a bug introduced on 1.6. and accelerate it a bit.
2505
2506
2507
2508 2004/06/04: Markus Gaug
2509
2510 * mcalib/MHGausEvents.cc
2511 - some small modifications in the way the axes are drawn and their
2512 titles are drawn.
2513
2514
2515
2516 2004/06/03: Martin Merck
2517
2518 * msignal/MArrivalTimeCam.h
2519 * msignal/MArrivalTime.h
2520 * msignal/MArrivalTimePix.h
2521 * msignal/MExtractedSignalCam.h
2522 * msignal/MExtractedSignalPix.h
2523 * msignal/MExtractedSignalPINDiode.h
2524 * msignal/MExtractedSignalBlindPixel.h
2525 - Set version in ClassDef to 1 for the streamer.
2526
2527 * msignal/SignalLinkDef.h
2528 - Added a + at the pragma for MExtractedSignalCam and
2529 MExtractedSignalPix for consistency.
2530
2531 * msjobs/MExtractSignal.[h,cc]
2532 - Added methods to set the Extractor and TimeExtractor to be
2533 used when extracting the signal.
2534
2535
2536
2537 2004/06/03: Markus Gaug
2538
2539 * mhist/MHCamera.[h,cc]
2540 * mjobs/MJCalibration.cc
2541 - added functions AzimuthProfile and DrawAzimuthProfile, same
2542 like the RadialProfile functions, only with azimuth instead of
2543 radius.
2544
2545 * mcalib/MCalibrationCam.[h,cc]
2546 - replace fNumHiGainFADCSlices and fNumLoGainFADCSlices by a
2547 TArrayF and increment ClassDef by 1 for the streamer.
2548
2549 * mcalib/MCalibrationChargeCalc.cc
2550 - found a small bug making a difference in the number of valid
2551 pixels with the blind PIxel method and the ffactor method. Now
2552 fixed. (The difference was usually a couple of pixels)
2553
2554 * msignal/MExtractTime.h
2555 - make members protected instead of private in order to allow
2556 classes to derive from it
2557
2558 * msignal/MExtractFixedWindow.cc
2559 - added some documentation
2560
2561 * msignal/MExtractFixedWindowSpline.[h,cc]
2562 * msignal/Makefile
2563 * msignal/SignalLinkDef.h
2564 - new fast spline signal extractor
2565
2566
2567
2568 2004/06/02: Antonio Stamerra
2569
2570 * mtrigger/*:
2571 - added directory and new classes to correctly handle the
2572 trigger-report string from report file.
2573 Not yet into the Makefile.
2574
2575
2576
2577 2004/06/01: Thomas Bretz
2578
2579 * mbase/MLog.[h,cc]:
2580 - some changes to Lock/UnLock of mutices. Necessary for Cosy.
2581
2582
2583
2584 2004/06/01: Abelardo Moralejo
2585
2586 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2587 - Added variable fLowGainPeakShift and setter. It allows to shift
2588 the integration window for low gain with respect to the one of
2589 the high gain. By default its value is 0 (corresponding to a
2590 total delay of 15 slices) so that default behaviour of the
2591 extractor is the same as before.
2592
2593
2594
2595 2004/06/01: Markus Gaug
2596
2597 * mjobs/MJCalibration.cc
2598 - small change in the way the "full display" is displayed
2599
2600 * mcalib/MHCalibrationChargeBlindPix.cc
2601 * mcalib/MHCalibrationChargePix.cc
2602 - replace Draw(opt) by Draw(). This make the histograms reappear
2603 again, although I have no idea why. A printout of the opt gives
2604 always empty.
2605
2606 * mcalib/MCalibrationQEPix.cc
2607 - put Eckarts transmission of the plexiglass into the class
2608 documentation
2609
2610 * msignal/MExtractTimeFastSpline.cc
2611 - fixed some smaller bugs affecting a small part of the signals
2612
2613
2614 2004/05/31: Hendrik Bartko
2615
2616 * msignal/MArrivalTimeCalc2.cc
2617 - fixed a bug in pointer arithmetics found by Florian.
2618
2619
2620
2621 2004/05/31: Raquel de los Reyes
2622
2623 * macros/DAQDataCheck.C
2624 - committed the macro to check the raw data and display the quality
2625 plots.
2626
2627
2628
2629 2004/05/30: Markus Gaug
2630
2631 * mcalib/MCalibrationQEPix.[h,cc]
2632 - added more documentation (plots)
2633 - separated calls for light guides eff. , QE, and coll. eff.
2634
2635 * mcalib/MCalibrationChargeCalc.[h,cc]
2636 - fixed a small bug in the calculation of the error on the number
2637 of photons with the F-Factor method, did not include the division
2638 by number of pixels for the precision of the QE. This does not
2639 affect the general analysis.
2640
2641 * mjobs/MJCalibration.cc
2642 - added runnumber 26924 to list of runs without clear colour in
2643 the file name.
2644
2645
2646
2647 2004/05/28: Markus Gaug
2648
2649 * macros/calibration.C
2650 - make the macro compilable with possibility to run it in batch
2651 mode.
2652
2653 * msignal/MExtractor.cc
2654 - put an additional check in case that the number of FADC slices
2655 in the run header is smaller or equal to 0.
2656
2657
2658
2659 2004/05/27: Javier Rico
2660
2661 * mbase/MDirIter.h
2662 - remove unneeded ResetIter method (Reset does all the job)
2663
2664 * mjobs/MJCalibration.cc
2665 - change call to the removed MDirIter::ResetIter for Reset
2666
2667
2668
2669 2004/05/27: Markus Gaug
2670
2671 * mcalib/MHCalibrationChargeBlindPix.[h,cc]
2672 - put some protection against zero-division in fitFuncMichele
2673
2674 * mcalib/MCalibrationChargeBlindPix.[h,cc]
2675 - set flag to distinguish between coated and un-coated blind pixel
2676 - increase ClassDef number by one.
2677
2678 * mcalib/MCalibrationQEPix.[h,cc]
2679 - set a global variable CollEfficiency and LightguidesEfficiency.
2680 The more precise result for the QE calculated with
2681 the F-Factor method differs now by about 5% (while the statistical
2682 error remains around 20%).
2683
2684 * mcalib/MCalibrationChargeCalc.cc
2685 - write the number of photons directy into MCalibrationChargeCam.
2686 These numbers would otherwise have to be assembled by different
2687 parts in separate code.
2688
2689
2690
2691 2004/05/27: Thomas Bretz
2692
2693 * mastro/MAstroCatalog.cc
2694 - removed a statement after '#endif'
2695
2696 * mastro/MAstroCamera.h
2697 - removed obsolete empty function which (believing the Changelog)
2698 are not there at all!
2699
2700 * mbase/MDirIter.[h,cc]:
2701 - moved code of Reset() funtion to source file
2702 - added more comments to Reset function
2703
2704
2705
2706 2004/05/26: Martin Merck
2707
2708 * mbase/MDirIter.cc
2709 - changed MatchFilter to allow for filenames containing a '+'
2710 character.
2711
2712
2713
2714 2004/05/26: Markus Gaug
2715
2716 * mjobs/MJCalibration.[h,cc]
2717 - set MCalibrationChargeBlindPix and MCalibrationChargePINDiode as
2718 data members and store them in the output of WriteResult()
2719
2720 * mcalib/MCalibrationQEPix.cc
2721 * mcalib/MCalibrationChargeCalc.cc
2722 - several small bugs fixed concerning calibration with the blind
2723 pixel or the PIN Diode
2724
2725 * mjobs/MGCamDisplays.[h,cc]
2726 * mhist/MHCamera.[h,cc]
2727 - put the last function (CamDraw) of MGCamDisplays into MHCamera
2728 and removed MGCamDisplays.
2729
2730 * mjobs/MJPedestal.[h,cc]
2731 * mjobs/MJCalibration.[h,cc]
2732 * mjobs/MJExtractCalibTest.[h,cc]
2733 - don't derive from MGCamDisplays any more.
2734
2735 * msignal/MExtractBlindPixel.cc
2736 - adjusted some default numbers for the current blind pixel
2737
2738 * msignal/MExtractedSignalBlindPixel.[h,cc]
2739 - set extracted signal from UInt_t to Int_t (sometimes, less
2740 than 0)
2741
2742 * mcalib/MCalibrationCam.h
2743 * mcalib/MHCalibrationCam.h
2744 - make destructors virtual.
2745
2746 * mcalib/MHCalibrationCam.[h,cc]
2747 - create a copy contructor
2748
2749
2750
2751 2004/05/26: Javier Rico
2752
2753 * mbase/MDirIter.h
2754 - Add method to reset the internal TIter iterator
2755
2756 * mjobs/MJCalibration.cc
2757 - In FindColorReset method, reset the file iterator before looping
2758
2759 * mimage/MNewImagePar.cc
2760 - Add output lines in Print(const MGeomCam &geom) method for
2761 fInnerLeakage1, fInnerLeakage2 and fInnerSize
2762
2763
2764
2765 2004/05/25: Raquel de los Reyes and Thomas Bretz
2766
2767 * mjobs/MJCalibration.cc
2768 - uncommented the line to read .raw files.
2769
2770 * mraw/MRawFileRead.cc
2771 - changed the PreProcess and Process functions to allow the analysis
2772 of .raw files.
2773
2774 * mfileio/MReadReports.cc
2775 - changed the Process function to read the updated root files.
2776
2777
2778
2779 2004/05/25: Markus Gaug
2780
2781 * mjobs/MJCalibration.[h,cc]
2782 - add possibility to switch on and off the blind pixel or pin diode
2783 calibration
2784 - fixed a small bug in reading the MCalibrationRelTimeCam when the
2785 times calibration has been switched off.
2786
2787 * mjobs/MExtractSignal.[h,cc]
2788 - made changes in MProcessFileP such that it fits with the new
2789 calibration. THIS IS ONLY A TEMPORARY SOLUTION. PEDESTALS AND
2790 DATA FILES MUST BE TREATED EQUALLY! OTHERWISE THERE IS NOT
2791 MATCHING FOR THE HIT CLEANING!!!
2792
2793 * mjobs/MJExtractCalibTest.[h,cc]
2794 - implement switch to use or not the cosmics filter
2795
2796
2797 * mcalib/MHCalibrationTestPix.cc
2798 - enlarged the dynamic range of the histograms for the high-int.
2799 pulses
2800
2801
2802
2803 2004/05/24: Javier Rico
2804
2805 * mpedestal/MPedPhotCalc.cc
2806 - Correct a bug that made pedestals be assigned to the wrong pixel
2807
2808 * mimage/MNewImagePar.[h,cc]
2809 - add getters and output lines in Print() method for
2810 fInnerLeakage1, fInnerLeakage2 and fInnerSize
2811
2812
2813
2814 2004/05/24: Markus Gaug
2815
2816 * mcalib/MCalibrationChargePix.cc
2817 - reduce limit in number of phe's from 5 to 1. since some pulses
2818 have less than 5 phe's now.
2819
2820 * mcalib/MHCalibrationTestCam.[h,cc]
2821 - number of photons/area are now stored in TArray's in order to
2822 retrieve them easier in later processing from stored files.
2823
2824 * mcalib/MCalibrationCam.cc
2825 - initialize AverageAreas and AverageSectors with the number of
2826 aidx and sector as SetPixId()
2827
2828 * mcalib/MCalibrationChargeCam.[h,cc]
2829 - small modification in the Print()
2830 - introduce data members to store the average number of photons by
2831 the three methods
2832
2833 * mcalib/MCalibrationChargeCalc.cc
2834 - calculate the limits for acceptance of number of photo-electrons
2835 for the calculation of the mean by normal mean instead of weighted
2836 mean. There were too many outliers still present in the weighted
2837 mean such to modify the result by a sizeable amount.
2838 - do not discard unreliable pixels any more in calculation of
2839 mean number of phe.s In some runs, there is simply too many of
2840 them in order to get reliable results.
2841
2842 * mpedestals/MPedCalcPedRun.cc
2843 - put a condition if number of pixels in area index or in sector
2844 is zero, don't calculate av. pedestal and av. pedRMS of this part.
2845
2846
2847
2848 2004/05/22: Markus Gaug
2849
2850 * mjobs/MJPedestal.[h,cc]
2851 * mjobs/MJCalibration.[h,cc]
2852 * mjobs/MJExtractCalibTest.[h,cc]
2853 - replaced the TString GetOutputFile() functions by const char*
2854 GetOutputFile(). This apparenty caused a memory leak which is now
2855 removed.
2856
2857 * mcalib/MCalibrationChargePix.cc
2858 - fixed bug calculating the reduced sigma for low-gain events:
2859 the electronics Ped.RMS was taken from Hi-gain pedestal events and
2860 too high. It is now divided by the factor 10. conversion between
2861 both samples, but this value is probably too optimistic. Needs
2862 more detailed studies, but does not exclude as many pixels as
2863 before.
2864
2865 * mcalib/MHCalibrationChargePix.h
2866 * mcalib/MHGausEvents.h
2867 - put fSaturated from MHCalibrationChargePix into MHGausEvents
2868
2869 * mcalib/MHCalibrationChargeCam.[h,cc]
2870 * mcalib/MHCalibrationCam.h
2871 - put fNumHiGainSaturated and fNumLoGainSaturated from
2872 MHCalibrationChargeCam into MHCalibrationCam
2873
2874 * mcalib/MHCalibrationRelTimeCam.[h,cc]
2875 - set flags fSaturated in order to distinguish if the hi-gain or
2876 the low-gain time has been extracted.
2877
2878 * mcalib/MHCalibrationCam.cc
2879 - remove cloning of all pixels on the Clone() function. This caused
2880 the need for three times more memory during runtime than now. It
2881 should not affect the current macros.
2882
2883 * macros/calibration.C
2884 - added a debug switch with which you can print out Object
2885 Allocation (like suggested by TBretz).
2886
2887 * mcalib/MCalibrationRelTimeCalc.[h,cc]
2888 - replaced the relative limit for acceptance of the time resolution
2889 by an absolute limit
2890 - set up output statistics logging (data written into DB)
2891
2892 * mcalib/MCalibrationChargeCalc.[h,cc]
2893 - moved limit for acceptance of number of phe;s from 5 to 8
2894 - set up output statistics logging (data written into DB)
2895
2896 * mjobs/MJCalibration.cc
2897 - set up output statistics logging (data written into DB)
2898
2899
2900
2901 2004/05/22: Abelardo Moralejo
2902
2903 * macros/calibrate_data.C
2904 - removed wrong call to MPedCalcPedRun::SetExtractor, which does
2905 not exist (should use MJPedestal like calibration.C, instead of
2906 a normal loop)
2907
2908 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
2909 - changed name of variable fOffsetFromPeak to fOffsetFromWindow
2910 to avoid confusion.
2911 - introduced initialization to 0 of startslice and sat in FindPeak
2912 - changed initialization of maxsumhi in Process from 0 to -1e6
2913
2914
2915
2916 2004/05/20: Raquel de los Reyes
2917
2918 * mraw/MRawRead.h
2919 * mraw/Makefile
2920 * msql/Makefile
2921 - changed the inheritance of MRawRead class from MTask to MRead to
2922 implement the AddFiles(MDirIter &) function in MRawFileRead class.
2923
2924 * mraw/MRawFileRead.[h,cc]
2925 - implemented a second argument to the AddFile function and skip
2926 adding NULL files in the constructor.
2927
2928 * mjobs/MJPedestal.cc
2929 - uncommented the line to allow the analysis of .raw files.
2930
2931
2932
2933 2004/05/20: Markus Gaug
2934
2935 * mjobs/MJPedestal.cc
2936 - put MGeomCamMagic into the plist (MGeomApply complained not to
2937 find the GeomCam(
2938
2939 * msignal/MExtractFixedWindowPeakSearch.cc
2940 - fixed a bug affecting signals with late arrival times which use
2941 the variable fHiLoLast.
2942 - set back fgOffsetFromPeak from peak to 1 (instead of 2). Abelardo
2943 explained that this variable is not strictly the offset from the
2944 peak but the offset from the peak search window.
2945
2946
2947
2948 2004/05/19: Markus Gaug
2949
2950 * mcalib/MCalibrationChargeCam.cc
2951 - replaced a small bug in Print() which gave a segmentation
2952 violation
2953
2954 * mjobs/MJCalibration.cc
2955 - use cosmics filter only for CT1 pulser runs
2956
2957
2958
2959 2004/05/19: Abelardo Moralejo
2960
2961 * mbase/MGMap.cc
2962 - replaced rint by TMath::Nint() (my Mac did not recognize the
2963 former)
2964
2965
2966
2967 2004/05/19: Abelardo Moralejo
2968
2969 * macros/starmc2.C
2970 - added third argument in adding MPointingPos to the output:
2971 write.AddContainer("MPointingPos", "Events", kFALSE);
2972 If not exisiting in the input file, it is simply ignored.
2973
2974
2975
2976 2004/05/15: Thomas Bretz
2977
2978 * mastro/MAstroCatalog.[h,cc]:
2979 - changed Form to MString for thread safty
2980 - fixed a bug which caused the construtor to crash in batch-mode
2981 - added option argument to PaintImg
2982
2983 * mbase/MGMap.[h,cc]:
2984 - added many new static member function to draw figures
2985
2986 * mbase/MParContainer.cc:
2987 - changed Form to MString for thread safty
2988
2989 * mbase/MString.[h,cc]:
2990 - added
2991
2992 * mbase/Makefile, mbase/BaseLinkDef.h:
2993 - added MString
2994
2995
2996
2997 2004/05/15: Markus Gaug
2998
2999 * msignal/MArrivalTimePix.h
3000 * msignal/MArrivalTimeCam.cc
3001 - introduced functin GetHiGainSaturation() in MArrivalTimePix.h
3002 - added type in GetPixelContent() which asks for Hi-Gain saturation
3003 and return the hi-gain time or the low-gain time, correspondingly.
3004
3005 * mbase/MGMap.cc
3006 - fixed two bugs which did not complile under gcc 3.3.x introduced
3007 by TB.
3008
3009
3010
3011 2004/05/12: Markus Gaug
3012
3013 * msignal/MExtractTime.[h,cc]
3014 - introduced intrinsic delay of low-gain, as measured by Florian.
3015
3016 * mjobs/MJCalibration.cc
3017 * mjobs/MJExtractCalibTest.cc
3018 - fixed some errors in the storage of the rel. times.
3019
3020 * mjobs/MJExtractCalibTest.cc
3021 - put the cosmics filter which was forgotten
3022
3023 * mcalib/MCalibrate.h
3024 - changed default from Blindpixel to Ffactor
3025
3026
3027
3028 2004/05/12: Thomas Bretz
3029
3030 * mona.cc:
3031 - changed names
3032
3033 * macros/sumcurrents.C:
3034 - changed units from nA to \\mu A
3035
3036 *: mastro/MAstroCamera.[h,cc]:
3037 - added '=' Draw option
3038 - use fMapG directly
3039
3040 * mastro/MAstroCatalog.[h,cc]:
3041 - added support to read and write a compressed catalog
3042 - changed TExMap to new MGMap
3043 - added support for HeasarcPPM catalog
3044 - added PaintImg to paint catalog into a bitmap (used in
3045 starguider software)
3046 - don't clone MObservatory copy the contents
3047 - changed type of dx and dy in DrawLine from Double to Int
3048 - fixed drawig of the tooltip corresponding to the grid
3049 (some were missing, some were existing twice)
3050 - Now AddPrimitives takes fLimMag into account
3051
3052 * mhbase/MFillH.cc:
3053 - added a const-qualifier
3054
3055 * mhist/MHCamera.cc:
3056 - fixed a bug which caused SetPalette in the constructor to crash
3057
3058 * mbase/MGMap.[h,cc]:
3059 - added
3060
3061 * mbase/Makefile, mbase/BaseLinkDef.h:
3062 - added MGMap
3063
3064
3065
3066 2004/05/11: Thomas Bretz
3067
3068 * mraw/MRawEvtHeader.cc:
3069 - added a check whether the file has finished or not after
3070 reading the first bytes.
3071
3072
3073
3074 2004/05/10: Marcos Lopez
3075
3076 * mmontecarlo/MMcEnergyEst.cc:
3077 - In static void fcn(...), fixed the following bugs which caused a
3078 "segmentation violation":
3079 - Replace: MTaskList *tlist = evtloop->GetTaskList()
3080 by: MTaskList *tlist = (MTaskList*)plist->FindObject("MTaskList")
3081 - And get the pointer *eval to MParamterD("MFitResult"), after
3082 the excution of the Eventloop and not before it (since that object is
3083 created when calling the PreProcess).
3084
3085
3086
3087 2004/05/10: Thomas Bretz
3088
3089 * mraw/MRawEvtHeader.[h,cc]:
3090 - changed return type of ReadEvt from int to Int_t
3091 - Enhanced output in case of invalid time
3092
3093 * mraw/MRawRead.cc:
3094 - fixed the return type of ReadEvt (was bool instead of int)
3095 which confused merpp completely in case of invalid times
3096
3097
3098
3099 2004/05/10: Markus Gaug
3100
3101 * macros/calibrate_data.C
3102 - updated setting of arr. time extractor
3103
3104
3105
3106 2004/05/09: Thomas Bretz
3107
3108 * Makefile:
3109 - added workaround for Mac to create so- and dynlib-object
3110
3111 * Makefile.conf.darwin:
3112 - added necessary option to create both kind of files
3113
3114 * Makefile.conf.linux:
3115 - changed the options to create so-object only
3116
3117 * Makefile.rules:
3118 - added DYLIB to rmbin
3119
3120 * mraw/MRawEvtData.cc:
3121 - changed some output
3122
3123 * mraw/MRawEvtHeader.[h,cc]:
3124 - skip the rest of the header if the time is invalid. Otherwise
3125 merpps force-mode will corrupt the data when further processing
3126 - implemented GetNumBytes returning the size of the header
3127
3128
3129
3130 2004/05/08: Thomas Bretz
3131
3132 * mona.cc:
3133 - some changes to make it work again
3134
3135 * mraw/MRawSocketRead.cc:
3136 - fixed the sync with what DAQ sends
3137
3138
3139
3140 2004/05/07: Markus Gaug
3141
3142 * mcalib/MHCalibrationChargeHiGainPix.cc
3143 * mcalib/MHCalibrationChargeLoGainPix.cc
3144 - take out half of the bins for the hists in order to save memory
3145
3146 * mjobs/MExtractCalibTest.cc
3147 - include write-out of the containers in the loop
3148
3149 * mjobs/MJCalibration.cc
3150 - take runs 20660 and 20661 into the list of known runs with colour
3151 green.
3152
3153 * mpedestal/MPedCalcPedRun.[h,cc]
3154 - make the arrays fSum and fSum2 doubles. This is necessary since
3155 rounding errors of the floats introduced significant errors in the
3156 RMS!
3157 - introduced one condition about possible window sizes of 0.
3158
3159
3160
3161 2004/05/06: Markus Gaug
3162
3163 * htmldoc/images/PedestalStudyInner.gif
3164 * htmldoc/images/PedestalStudyOuter.gif
3165 - two gifs used for the documentation of MPedCalcPedRun
3166
3167 * mpedestal/MPedCalcPedRun.cc
3168 - updated documentation
3169
3170 * macros/pedestalstudies.C
3171 - updated to the latest version of MPedCalcPedRun
3172
3173 * macros/bootcampstandardanalysis.C
3174 - updated to the latest changes in the ArrivalTime Extraction
3175
3176
3177
3178 2004/05/05: Markus Gaug
3179
3180 * mcalib/MHGausEvents.cc
3181 - removed some warning saying "Cannot create Fourier spectrum"
3182
3183 * mcalib/MCalibrationChargePix.cc
3184 - loosened the limits somewhat for calibration with the low-gain
3185 - introduced different electronic noise for inner and outer pixels
3186 (like seen in the data)
3187
3188 * mpedestal/MPedCalcPedRun.cc
3189 - fixed a small inconsistency in case that the range goes out of
3190 the high-gain samples and reaches into the low-gain samples. In
3191 that case, the last slice of the high-gain was not taken (but the
3192 window size correctly)
3193
3194 * mjobs/MJExtractCalibTest.[h,cc]
3195 - included setters for the time extractor
3196
3197 * mcalib/MCalibrationChargeCalc.cc
3198 - set default of fgPheErrLimit from 4 sigma to 5.
3199
3200 * mcalib/Makefile
3201 * mcalib/CalibLinkDef.h
3202 * mcalib/MHCalibrationTestTimeCam.[h,cc]
3203 * mcalib/MHCalibrationTestTimeCam.[h,cc]
3204 - analogue to MHCalibrationTestCam, two classes to test the
3205 output of the calibration.
3206
3207 * mcalib/MHCalibrationCam.cc
3208 - in InitHists, exclude only pixels with kUnsuitableRun, instead of
3209 all (IsBad())
3210
3211 * msignal/Makefile
3212 * msignal/SignalLinkDef.h
3213 * msignal/MExtractTimeFastSpline.[h,cc]
3214 - new fast spline extractor for the equally spaced time slices.
3215 Searches for the position of the half maximum between maximum and
3216 pedestal. About 6 times faster than MArrivalTimeCalc
3217
3218 * mjobs/MJCalibration.cc
3219 - changed names of the MHCameras to contain run name
3220
3221
3222
3223 2004/05/04: Raquel de los Reyes
3224
3225 * mbase/MRunIter.[h,cc]
3226 - Added a flag and a set function to read .raw files.
3227 The default option is set to read .root files.
3228
3229
3230
3231 2004/05/04: Javier Rico
3232
3233 * mcalib/MCalibrate.cc
3234 - when calibrating using kNONE, weight by the pixel area
3235
3236
3237
3238 2004/05/04: Thomas Bretz
3239
3240 * macros/MagicHillas.C, macros/comprob.C, macros/derotatedc.C,
3241 macros/dohtml.C, macros/evtrate.C, macros/merpp.C,
3242 macros/pixfirerate.C, macros/pixsatrate.C, macros/plot.C,
3243 macros/plot2.C, macros/pointing.C, macros/readMagic.C,
3244 macros/rootlogon.C, macros/runbook.C, macros/sectorvstime.C,
3245 macros/star.C, macros/sumcurrents.C, macros/tar.C,
3246 macros/testenv.C, macros/weights.C:
3247 - updated documentation
3248
3249 * mastro/MAstroCamera.[h,cc]:
3250 - added member function to read MC .def files for mirror geometry
3251 - added GetDiffZdAz
3252
3253 * mastro/MObservatory.[h,cc]:
3254 - added Copy-member function
3255
3256 * mbase/MLog.[h,cc]:
3257 - updated handling of mutices
3258 - added a new mutex to lock the stream
3259
3260 * mhist/MHCamera.[h,cc]:
3261 - added functionality to linear deform the camera display
3262 (to correct for abberation)
3263
3264 * mtools/MFFT.cc:
3265 - added more documentation
3266
3267 * mbase/MTime.[h,cc]:
3268 - renamed overloaded Set-function to SetMjd. There were some
3269 trouble with the interpreter and the new naming is more
3270 intuitive.
3271
3272
3273
3274 2004/05/04: Markus Gaug
3275
3276 * mcalib/MHCalibrationChargeBlindPix.cc
3277 - intialized the 2 vectors differently, now they don't give
3278 warnings any more.
3279
3280 * msignal/MExtractor.cc
3281 * msignal/MExtractFixedWindow.cc
3282 - put one initialization to 0 into the MExtractor
3283
3284 * mastro/MAstroCatalog.h
3285 - make AlignCoordinates() protected, in order to compile
3286
3287 * mcalib/MHGausEvents.cc
3288 - took out fEvents(0) and fHGausHist() from constructor
3289
3290 * msignal/MExtractor.cc
3291 * msignal/MExtractPINDiode.cc
3292 - fixed StreamPrimitive
3293
3294 * msignal/MExtractBlindPixel.[h,cc]
3295 - deriving from MExtractor, possibility to filter NSB events
3296
3297
3298
3299 2004/05/03: Thomas Bretz
3300
3301 * mbase/MRunIter.cc:
3302 - AddRuns(char*) added some const-qualifiers
3303 - replaced deprecated if-else-if by continue- and return-
3304 constructions
3305
3306
3307
3308 2004/05/03: Javier Lopez
3309
3310 * mbadpixels/MBadPixelsPix.[h,cc]
3311 - put another enum for hardware malfunctionning. Started to be
3312 filled with kHVNotNominal
3313
3314
3315
3316 2004/05/03: Markus Gaug
3317
3318 * mcalib/MHCalibrationBlindPix.[h,cc]
3319 - removed a "->" behind the comment
3320 - Create a TVector in Draw only if the array is not zero
3321
3322 * mraw/MRawEvtPixelIter.cc
3323 - corrected bug in GetIdxMaxLoGainSamples() which looped over
3324 one slice too much
3325 end = fLoGainPos + fNumLoGainSamples + 1 replaced by:
3326 end = fLoGainPos + fNumLoGainSamples
3327
3328 * msignal/MTimeExtractor.[h,cc]
3329 * msignal/MExtractTime.[h,cc]
3330 - changed name for alphabetical display in dox
3331
3332 * mjobs/MJCalibration.[h,cc]
3333 * msignal/MExtractTimeSpline.h
3334 * msignal/MExtractTimeHighestIntegral.h
3335 - changed name of base class to MExtractTime
3336
3337 * mcalib/MCalibrationCam.[h,cc]
3338 * mcalib/MCalibrationChargeCam.[h,cc]
3339 * mcalib/MCalibrationRelTimeCam.[h,cc]
3340 - put the number of unsuitable and unreliable pixels in the base
3341 class
3342
3343 * mcalib/MCalibrationRelTimeCalc.[h,cc]
3344 - fixed a bug calculating the average time resolution
3345
3346 * mpedestals/MPedestalPix.[h,cc]
3347 - add a dedicated fValid flag in order to be able to discard pixels
3348 from outside (e.g. from MBadPixelsCam)
3349
3350 * mpedestals/MPedCalcPedRun.[h,cc]
3351 - catch badpixels cam from parameter list, if existing and set
3352 corresponding pixels to not valid in MPedestalPix
3353
3354 * mjobs/MGCamDisplays.[h,cc]
3355 * mhist/MHCamera.[h,cc]
3356 - put DrawProjection and DrawRadialProfile in MHCamera
3357
3358 * macros/dohtml.C
3359 - include directory mfit and macros calibration.C and
3360 bootcampstandardanalysis.C
3361 - take out pixvstime.C which does not exist
3362
3363 * msignal/MExtractFixedWindow.[h,cc]
3364 * msignal/MExtractSlidingWindow.[h,cc]
3365 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
3366 * msignal/MExtractor.[h,cc]
3367 * msignal/MExtractPINDiode.[h,cc]
3368 * msignal/MExtractTime.[h,cc]
3369 - set number of slices not in base class, but in derived one.
3370 Like this, extractors setting their signal in other containers
3371 don't have a conflict with the ReInit() in MExtractor.
3372
3373
3374
3375 2004/05/01: Thomas Bretz
3376
3377 * macros/rootlogon.C:
3378 - ignore MARSSYS if libmars.so is found in the current path
3379
3380 * mastro/MObservatory.cc:
3381 - small change to coordinates
3382
3383 * mbase/MLog.[h,cc]:
3384 - enhanced output in case of problem with mutices
3385
3386 * mtemp/TempIncl.h, mtemp/TemlLinkDef.h:
3387 - removed everything
3388
3389 * Makefile*, */Makefile
3390 - changed all to support mtemp/mifae and similar
3391
3392
3393
3394 2004/05/01: Abelardo Moralejo
3395
3396 * mmain/MEventDisplay.cc
3397 - changed back integration range for MC to 0-14 slices to avoid
3398 confusions.
3399
3400
3401
3402 2004/05/01: Markus Gaug
3403
3404 * macros/dohtml.C
3405 - include directory mpedestal
3406
3407 * msignal/MExtractFixedWindow.[h,cc]
3408 * msignal/MExtractSlidingWindow.[h,cc]
3409 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
3410 * msignal/MExtractor.[h,cc]
3411 - include the possibility to set the range for the hi-gain outside
3412 the range of MRawEvtPixelIter::GetNumHiGainSamples() and to take
3413 the "low-gain" slices instead. This is necessary for the March
3414 data!
3415
3416 * mjobs/MJCalibration.[h,cc]
3417 - accept arrival time extractors deriving from MTimeExtractor
3418
3419
3420
3421 2004/04/30: Thomas Bretz
3422
3423 * mastro/MAstroCamera.[h,cc]:
3424 - removed obsolete TList data member (use a argument in
3425 GetStarList instead)
3426
3427 * mbase/MTime.h:
3428 - added 'istream &operator<<(istream &in, MTime &t)'
3429
3430 * mbase/BaseLinkDef.h:
3431 - added new operator
3432
3433
3434
3435 2004/04/30: Daniela Dorner
3436
3437 * macros/pointing.C
3438 - implemented plot: Control Deviation vs Time
3439 - rearranged plots
3440
3441
3442
3443 2004/04/30: Markus Gaug
3444
3445 * mcalib/MCalibrationRelTimeCalc.[h,cc]
3446 - new class to treat rel. times after fits
3447
3448 * mcalib/MCalibrationChargeCalc.[h,cc]
3449 - search for outliers in the total F-Factor and set a flag in
3450 MBadPixelsPix
3451
3452 * mcalib/MCalibrationRelTimeCam.h
3453 - new TArrayIs to store number of unsuitable and unreliable pixels
3454
3455
3456 * mbadpixels/MBadPixelsPix.h
3457 - two new flags added: kDeviatingFFactor and kDeviationTimeResolution
3458
3459 * mcalib/MHCalibrationRelTimePix.[h,cc]
3460 - take out commented part of code related to re-normalization
3461
3462 * mcalib/MHCalibrationCam.[h,cc]
3463 - retrieve the used run numbers in order to store them in teh
3464 histogram titles to help transparency of the displays
3465
3466 * mcalib/MHCalibrationRelTimeCam.[h,cc]
3467 - Getter and Setter for the reference pixel
3468
3469 * mcalib/MCalibrate.cc
3470 - make error of nphot to be taken from square root of absolute
3471 number of photons instead of number of photons, otherwise
3472 NaN's are obtained
3473
3474 * msignal/MExtractPINDiode.[h,cc]
3475 - now deriving from MExtractor
3476
3477 * msignal/Makefile
3478 * msignal/SignalLinkDef.h
3479 * msignal/MExtractTimeSpline.[h,cc]
3480 * msignal/MExtractTimeHighestIntegral.[h,cc]
3481 - replacements for MArrivalTimeCalc and MArrivalTimeCalc2
3482
3483 * mjobs/MJCalibration.[h,cc]
3484 - Set time extractor by pointer
3485
3486
3487
3488 2004/04/29: Thomas Bretz
3489
3490 * mbase/MTask.cc:
3491 - fixed behaviour of GetNumExecutions. Because of a root bug
3492 Count returns a number which is to high by 1.
3493
3494
3495
3496 2004/04/29: Abelardo Moralejo
3497
3498 * mmc/MMcEvt.hxx
3499 - Added minor comment (explanation of fPassPhotCone).
3500
3501 * mmc/MMcRunHeader.[hxx,cxx]
3502 - Removed obsolete parameters fSourceOffsetTheta, fSourceOffsetPhi
3503 - Updated class version to 5.
3504
3505
3506
3507 2004/04/29: Nadia Tonello
3508
3509 * mbadpixels/MBadPixelsTreat.h
3510 - changed enums {.. BIT(1), ... BIT(2), ... BIT(3) } in {1,2,3}
3511 to have the right behaviour of the flags (and of SetProcessRMS)
3512
3513 * manalysis/MCT1PointingCorrCalc.[h,cc]
3514 - added pointing correction for 1ES1959
3515
3516
3517
3518 2004/04/29: Markus Gaug
3519
3520 * msignal/MArrivalTimePix.[h,cc]
3521 - removed flag fLoGainUsed which is not used at all
3522
3523 * msignal/MTimeExtractor.[h,cc]
3524 - new base class for arrival time extractors
3525
3526 * msignal/Makefile
3527 * msignal/SignalLinkDef.h
3528 * msignal/MExtractTimeSpline.[h,cc]
3529 - replacement of MArrivalTimeCalc, derived from MTimeExtractor
3530
3531
3532 * msignal/MExtractor.h
3533 - make SetRange virtual
3534 - check for range w.r.t. ranges given in the run header in ReInit
3535
3536 * msignal/MExtractFixedWindow.[h,cc]
3537 * msignal/MExtractSlidingWindow.[h,cc]
3538 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
3539 - overload the SetRange() function in order to do the necessary
3540 checks of the range there. Slight differences in every extractor
3541 because of the floating windows.
3542
3543
3544 * mpedestals/MPedCalcPedRun.[h,cc]
3545 - add the possibility to set ranges and extraction windows. Default
3546 is what has always been
3547
3548
3549 * mjobs/MJPedestals.[h,cc]
3550 - add the possibility to set a signal extractor which gives the
3551 extraction ranges to MPedCalcPedRun
3552 - derive from MHCamDisplays
3553
3554 * mcalib/MCalibrationChargeCam.cc
3555 - updated the Print() a little
3556
3557
3558 2004/04/29: Javier Rico
3559
3560 * mbase/MRunIter.cc
3561 - Remove AddRuns(const char*,const char*) dependence on length of
3562 first character chain
3563
3564
3565 2004/04/28: Javier Rico
3566
3567 * mbase/MRunIter.[h,cc]
3568 - include function to read runs specified in a character chain
3569 with the format, e.g., run1,run2-run3,run4-run5,...
3570
3571
3572
3573 2004/04/28: Abelardo Moralejo
3574
3575 * macros/starmc.C
3576 - adapted to change in MC calibration: replaced
3577 MMcCalibrationCalc::GetHist by GetHistADC2PhotEl and
3578 GetHistPhot2PhotEl.
3579
3580
3581
3582 2004/04/28: Markus Gaug
3583
3584 * mjobs/MGCamDisplays.cc
3585 * mjobs/MJCalibration.cc
3586 - introduced new "fit" flag in DrawProjection allowing to draw
3587 two separate pad with the (fitted) histograms for inner and
3588 outer pixels. This is displayed by MJCalibration if the
3589 kNormalDisplay option is chosen (default).
3590
3591 * mjobs/MJCalibration.h
3592 - took out the const of GetBadPixels() in order to allow compilation
3593 of macros/bootcampstandardanalysis.C. This will change again soon
3594 when mjobs/MJExtraction is updated and used there.
3595
3596 * msignal/MArrivalTimeCalc.[h,cc]
3597 - remove the ReInit() which calls to an MGeomCam which is later not
3598 used
3599
3600 * macros/calibrate_data.C
3601 - fixed a bug in loop 3 taking the default QE Cam instead of the
3602 one filled by MJCalibration
3603
3604 * msignal/MExtractor.[h,cc]
3605 - new base class for signal extractors
3606
3607 * msignal/Makefile
3608 * msignal/SignalLinkDef.h
3609 * msignal/MExtractFixedWindow.[h,cc]
3610 * msignal/MExtractSlidindWindow.[h,cc]
3611 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
3612 - replacements for MExtractSignal, MExtractSignal2, MExtractSignal3
3613
3614 * macros/calibration.C
3615 * macros/calibrate_data.C
3616 * macros/pedphotcalc.C
3617 * macros/bootcampstandardanalysis.C
3618 - adapted to new extractors
3619
3620 * mbadpixels/MBadPixelsPix.h
3621 - set back the old definition of IsOK(), namely no information
3622 available
3623
3624
3625
3626 2004/04/27: Raquel de los Reyes
3627
3628 * mhvstime/MHVsTime.cc
3629 - added a line in the Fill function to avoid empty time events.
3630
3631
3632
3633 2004/04/27: Abelardo Moralejo
3634
3635 * mcalib/MMcCalibrationCalc.[h,cc]
3636 - added histogram which stores the conversion of photons before
3637 the plexiglas to photoelectrons hitting first dynode.
3638
3639 * macros/mccalibrate.C
3640 - added MPointingPosCalc to the tasklist to create and fill an
3641 MPointingPos object, and later write it to the Events tree of
3642 the calibrated MC files. Added some comments and simplified
3643 some lines. One more histogram from MMcCalibrationCalc (see
3644 above) is now written to the output.
3645
3646 * macros/starmc2.C
3647 - added the writing of MPointingPos to output star file.
3648
3649
3650
3651 2004/04/27: Markus Gaug
3652
3653 * mjobs/MJCalibration.[h,cc]
3654 - put the three camera drawing facilities into a separate base
3655 class MGCamDisplays
3656
3657 * mjobs/MGCamDisplays.[h,cc]
3658 * mjobs/Makefile
3659 * mjobs/JobsLinkDef.h
3660 - camera drawing facilities: CamDraw, DrawProjection and
3661 DrawRadialProfile, used by all jobs
3662
3663 * mjobs/MJExtractCalibTest.[h,cc]
3664 * mjobs/Makefile
3665 * mjobs/MJobsLinkDef.h
3666 - new class to test the calibration results
3667
3668 * mcalib/MCalibrationChargeCalc.cc
3669 - set unsuitable pixels to excluded in MCalibrationChargePix, which
3670 will not display them in the status display
3671
3672 * mjobs/MJCalibration.cc
3673 - take out display of previously excluded pixels
3674
3675 * mbadpixels/MBadPixelsCam.cc
3676 - set val to 1 in case that GetPixelContent is true, before display
3677 was not correct
3678
3679 * macros/calibration.C
3680 - added the test class MJExtractCalibTest
3681
3682
3683
3684 2004/04/27: Abelardo Moralejo
3685
3686 * mhistmc/MHMcCollectionArea.[h,cc]
3687 - Added fMCAreaRadius and setter to allow changing the radius of
3688 the circular area in which MC events are produced. Useful for
3689 instance for stereo configuration studies. By default it is 300 m
3690 as was assumed before.
3691
3692
3693
3694 2004/04/26: Markus Gaug
3695
3696 * mcalib/MHCalibrationTestPix.[h,cc]
3697 * mcalib/MHCalibrationTestCam.[h,cc]
3698 * mcalib/Makefile
3699 * mcalib/CalibLinkDef.h
3700 - two new histogram classes to perform claibraion checks, will be
3701 especially useful for the data-check.
3702
3703 * mcalib/MCalibrationQEPix.cc
3704 - found a bug in the setting of validity flags of colours. This
3705 made the QE used for calibration uncorrect by about a factor 1.5
3706 for the outer pixels if only one colour is used for calibration.
3707
3708 * mjobs/MJCalibration.[h,cc]
3709 - moved colour finder from the macros into this class with the
3710 function FindColor()
3711 - had to add ~MJCalibration() {} because otherwise, I get a
3712 segmentation violation in the destructor, the debugger says in
3713 some TString. Maybe it's because of the GetDescriptor() in
3714 ~MParContainer() ?
3715
3716 * macros/calibration.C
3717 * macros/calibrate_data.C
3718 * macros/pedphotcalc.C
3719 * macros/bootcampstandardanalysis.C
3720 - removed function FindColor()
3721
3722 * mcalib/MCalibrationCam.h
3723 - make Init() and InitSize() virtual
3724
3725 * mcalib/MCalibrationChargeCam.[h,cc]
3726 - introduce two TArrayI's for the number of uncalibrated and
3727 unreliable pixels.
3728
3729 * mcalib/MCalibrationChargeCalc.[h,cc]
3730 - calculate and store the above numbers.
3731
3732 * mbadpixels/MBadPixelsPix.[h,cc]
3733 * mbadpixels/MBadPixelsCam.cc
3734 - removed bits: kHiGainNotCalibrated and kLoGainNotCalibrated
3735 - added bits: kDeviatingFFactor, kConversionHiLoNotValid
3736 - removed functions: IsCalibrationResultOK()
3737 and IsCalibrationSignalOK()
3738 - changed function IsOK() such that it returns false only if
3739 the pixels is not suitable (run or evt)
3740
3741 * mcalib/MCalibrate.cc
3742 * mcalib/MCalibrateRelTime.cc
3743 - exchanged query for IsCalibrationResultOK() to
3744 IsUnsuitableRun(MBadPixelsPix::kUnsuitableRun). This includes
3745 now the oscillating pixels (which are sometimes many!!)
3746
3747 * mcalib/MHCalibrationRelTimePix.cc
3748 - commented re-normalization to ns in Renorm()
3749 - introduced Getter to fFADCSliceWidth
3750
3751 * mcalib/MHCalibrationRelTimeCam.cc
3752 - renorm to ns in GetPixelsContent()
3753 --> now, calibration in MCalibrateRelTimes is consistent
3754
3755
3756
3757 2004/04/26: Abelardo Moralejo
3758
3759 * manalysis/MMcCalibrationUpdate.cc
3760 - changed from 1 to 10 the "dummy" value of conversion high to low
3761 gain for old camera 0.6 files. Usually these files have no low
3762 gain at all, but there was a patched version of the program
3763 which did have low gain (with a gain 10 lower than hg).
3764
3765
3766
3767 2004/04/25: Abelardo Moralejo
3768
3769 * mbadpixels/MBadPixelsTreat.cc
3770 - Change in line 204: if ((*fBadPixels)[i].IsBad()) by
3771 if ((*fBadPixels)[j].IsBad()) The way it was done, it never
3772 worked, because the check on whether the neighbour pixels
3773 were OK was performed on the same pixel to be treated (i), which
3774 is obviously not OK. The same problem fixed in the interpolation
3775 of pedestals. Amazingly, this error would have shown up in any
3776 test of the class.... I assume it must have been commited
3777 completely untested.
3778
3779 - In InterpolateSignal: moved division of summed charge over
3780 number of pixels : put it after the check of the number of
3781 valid neighbours to avoid division by 0.
3782
3783
3784
3785 2004/04/23: Markus Gaug
3786
3787 * mcalib/MHCalibrationCam.cc
3788 - fixed a bug in the ReInit() for the number of average events in
3789 each area index and sector
3790
3791
3792 2004/04/23: Thomas Bretz
3793
3794 * */Makefile:
3795 - added some more mpedestal
3796
3797 * mreport/MReportRun.cc:
3798 - changed to work with the latest version of report-files
3799 --> This will make it incompatible with older report files
3800 (for this use older Mars versions for merpping)
3801
3802 * mbase/MStatusDisplay.[h,cc]:
3803 - added combo-box to surf through tabs in MARS-tab
3804
3805
3806
3807 2004/04/22: Nadia Tonello
3808
3809 * mcalib/MCalibrateData.cc
3810 - changed request for MBadPixelsPix::IsCalibrationResultOK() for
3811 MBadPixelsPix::IsUnsuitable(MBadPixelsPix::kUnsuitableRun)
3812
3813
3814
3815 2004/04/22: Thomas Bretz
3816
3817 * mhist/MHCamera.[h,cc]:
3818 - implemented SetUsed
3819
3820 * merpp.cc:
3821 - added "-ff" and interleave mode - both not execcively tested yet
3822
3823 * mhbase/MFillH.cc:
3824 - added a missing 'endl'
3825
3826 * mraw/MRawCrateData.[h,cc], mraw/MRawEvtData.[h,cc],
3827 mraw/MRawEvtHeader.[h,cc]
3828 - added SkipEvt (the number of skipped bytes is untested)
3829
3830 * mraw/MRawEvtHeader.[h,cc]
3831 - return kCONTINUE if time is invalid
3832
3833 * mraw/MRawFileRead.[h,cc]:
3834 - implemented AddFile feature - first draft!
3835 - added feature to skip events
3836
3837 * mraw/MRawFileWrite.h:
3838 - changed default compression level corresponding to merpp to 2
3839
3840 * mraw/MRawRead.[h,cc]:
3841 - added fForceMode flag to be able to suppress event errors
3842
3843 * mbadpixels/MBadPixelsTreat.[h,cc]:
3844 - changes such that the pedestal interpolation is now done
3845 only in ReInit. If you need the old behaviour call
3846 SetProcessRMS()
3847
3848 Another step towards less mess:
3849
3850 * MMcPedestalCopy.[h,cc], MMcPedestalNSBAdd.[h,cc],
3851 MPedPhotCalc.[h,cc], MPedPhotCam.[h,cc], MPedPhotPix.[h,cc],
3852 MPedCalcPedRun.[h,cc], MPedestalCam.[h,cc],
3853 MPedestalPix.[h,cc]:
3854 - moved from manalysis to mpedestal
3855
3856 * mpedestal/Makefile, mpedestal/PedestalLinkDef.h,
3857 mpedestal/PedestalIncl.h:
3858 - added
3859
3860 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
3861 manalysis/AnalysisIncl.h:
3862 - removed files above
3863
3864 * mbadpixels/Makefile:
3865 - added mpedestals
3866
3867 * Makefile:
3868 - added mpedestals
3869
3870
3871 2004/04/22: Antonio Stamerra
3872
3873 * mmain/MEventDisplay.cc
3874 - Added new tab "Trigger" adding a new MHEvent (evt9),
3875 filled through the MMcTriggerLvl2 container.
3876 A new MFillH task for evt9 and MMcTriggerLvl2Calc task
3877 have been added.
3878
3879 * mhist/MHEvent.[h,cc]
3880 - Added new event type kEvtTrigPix
3881
3882 * manalysis/MMcTriggerLvl2.[h,cc]
3883 - The class now inherits from MCamEvent
3884 - Added the methods GetPixelContent and DrawPixelContent (from MCamEvent)
3885 - Added the method IsPixelInTrigger that returns kTRUE if a pixels
3886 is in the trigger region
3887
3888 * manalysis/MMcTriggerLvl2Calc.[h,cc]
3889 - Added the methods CheckRunType and ReInit to check if the file is MC.
3890
3891 * mhistmc/Makefile
3892 - Added the include for mgui
3893
3894
3895 2004/04/22: Markus Gaug
3896
3897 * mcalib/MCalibrate.[h,cc]
3898 - introduced flat-fielding of charges for the muon calibration,
3899 accessible with SetCalibrationMode(kFlatCharge)
3900
3901 * manalysis/MPedCalcPedRun.cc
3902 - added a SetReadyToSave() at the end of PostProcess
3903
3904 * mjobs/Makefile
3905 - added include of mraw
3906
3907 * mjobs/MJCalibration.cc
3908 - added MRawFileRead for option SetDataCheck()
3909
3910 * mjobs/MJPedestal.cc
3911 - added MRawFileRead for option SetDataCheck()
3912
3913
3914 2004/04/21: Thomas Bretz
3915
3916 * mbase/MTask.cc, mbase/MTaskList.cc:
3917 - let MTask in list fTaskProcess to be used as a counter
3918
3919 * mdata/MDataChain.[h,cc]:
3920 - added some treatments for combinations of +/- signs
3921
3922 * mfbase/MFilterList.[h,cc]:
3923 - added a new constructor to simplyfy filter-inversions
3924
3925 * mfileio/MReadReports.cc:
3926 - added comment
3927
3928 * mhbase/MBinning.[h,cc]:
3929 - added new constructor to simplify calls in macros
3930
3931 * mhbase/MFillH.[h,cc]:
3932 - added fDrawOption to be used in MStatusDisplay
3933
3934 * mhist/MHFalseSource.cc:
3935 - added comment
3936
3937
3938
3939 2004/04/20: Thomas Bretz
3940
3941 * macros/derotatedc.C
3942 - added tutorial macro plotting derotated dc currents
3943
3944 * mhist/MHCamEventRot.[h,cc]:
3945 - added histogram to be filled with derotated MCamEvents
3946
3947
3948
3949 2004/04/18: Abelardo Moralejo
3950
3951 * mgeom/MGeomCam.h
3952 - Update class version to 4 (necessary after M. Gaug's change
3953 of the type of member fMaxRadius.
3954
3955
3956
3957 2004/04/16: Abelardo Moralejo
3958
3959 * mcalib/MCalibrationQEPix.[h,cc]
3960 - Added fAverageQE. Same role as gkDefaultAverageQE, but can be
3961 changed via SetAverageQE. Made public GetAverageQE and
3962 GetAverageQERelVar (this changes needed for MC).
3963
3964 * mcalib/MMcCalibrationCalc.[h,cc]
3965 * manalysis/MMcCalibrationUpdate.[h,cc]
3966 - Adapted to M. Gaug's changes in calibration classes. Behaviour
3967 has been tested to be the same as before those changes. Now the
3968 conversion factor from ADC counts to photoelectrons, and the
3969 average QE (photons->photoelectrons) are calculated independently
3970 (and later combined by MCalibrate to obtain the conversion
3971 ADC->photons).
3972
3973 * mmain/MEventDisplay.cc, macros/mccalibrate.C, starmc.C
3974 - Added call to MExtractSignal::SetSaturationLimit(240) Affects
3975 only MC display. This was necessary because if electronic noise
3976 is simulated in the FADC, sometimes saturated slices look not
3977 saturated due to negative fluctuations, so it is better to set
3978 the saturation limit at a safe value (240 ADC counts). Changed
3979 signal integration range (only for MC), now from slices 5 to 10.
3980
3981 * msignal/MExtractSignal3.[h,cc]
3982 - Changed name of function SetRange for the more adecquate
3983 "SetWindows". No change in behaviour of the function.
3984
3985
3986
3987 2004/04/16: Markus Gaug
3988
3989 * msignal/MExtractSignal.cc
3990 - commited proposed larger default window from fgLast = 10 to
3991 fgLast = 14, because in March the pulses have moved to later
3992 arrival times.
3993 - removed some inconsistency with slice numbering in FindSignal()
3994 from pixel.GetHiGainSamples()+fHiGainFirst-1 to
3995 pixel.GetHiGainSamples()+fHiGainFirst and also for the low gain
3996
3997 * msignal/MExtractSignal2.cc
3998 - committed the proposed smaller window egdes from fgFirst=0 to
3999 fgFirst = 3, because in March some of the high-gain pulses reach
4000 into the "low-gain samples" and mislead thus sliding window to
4001 be maximized on the tail of the high-gain pulse.
4002
4003 * mcalib/MHPedestalPix.cc
4004 - fixed a bug which made normalization to values per slice not happen
4005
4006 * macros/pedestalstudies.C
4007 - fixed and documented
4008
4009
4010
4011 2004/04/15: Markus Gaug
4012
4013 * macros/calibration.C
4014 - added a function FindColor() to extract the colour by filename,
4015 works if there is indeed a colour or if the run nubmer is smaller
4016 than 20000 -> take ct1
4017
4018 * macros/bootcampstandardanalysis.C
4019 * macros/pedphotcalc.C
4020 * macros/calibrate_data.C
4021 - updated the macro to the cvs-standard used at the Udine bootcamp
4022
4023 * mcalib/MCalibrateRelTimes.[h,cc]
4024 * mcalib/Makefile
4025 * mcalib/CalibLinkDef.h
4026 - new class to calibrate the relative times
4027
4028 * manalysis/MGeomApply.cc
4029 - added MArrivalTime::Init()
4030
4031 * msignal/MArrivalTime.[h,cc]
4032 - added array fDataErr
4033
4034 * macros/rootlogon.C
4035 - added directories mbadpixels and mjobs
4036
4037 * mcalib/MCalibrationQEPix.cc
4038 - set the fAvNorm variables to 1 in Clean()
4039
4040 * manalysis/MPedPhotCalc.[h,cc]
4041 - included possibility to use an MBadPixelsCam
4042
4043
4044
4045 2004/04/14: Thomas Bretz
4046
4047 * manalysis/MCerPhotEvt.[h,cc]:
4048 - fixed a bug which caused a missing last pixel (in most cases
4049 Index 576)
4050
4051 * manalysis/MCerPhotPix.cc:
4052 - fixed output in Print
4053
4054 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
4055 - added missing SetCalibrationMethod
4056
4057 * mbadpixels/MBadPixelsCam.[h,cc]:
4058 - added copy constructor
4059
4060 * mbadpixels/MBadPixelsMerge.cc:
4061 - added comments
4062
4063 * mraw/MRawRunHeader.[h,cc]:
4064 - added new run-type (kRTPointRun=7)
4065
4066 * mmain/MEventDisplay.cc:
4067 - fixed the broken cleaning levels
4068
4069
4070
4071 2004/04/14: Markus Gaug
4072
4073 * mcalib/MCalibrationQEPix.cc
4074 - found a bug in the calculation of the error, fixed
4075
4076 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
4077 - replaced SetCalibrationMethod by SetCalibrationMode
4078
4079 * htmldoc/images/CalibClasses.gif
4080 * htmldoc/images/RelTimeClasses.gif
4081 - two schemes used in the class descriptions
4082
4083 * mcalib/MHCalibrationCam.[h,cc]
4084 - included function GetAverageAreas() and GetAverageSectors() like
4085 in MCalibrationCam
4086
4087 * mjobs/MJCalibration.[h,cc]
4088 - included calibration of rel.Times, to be chosen with a flag
4089 RelTimeCalibration()
4090 - signal extractor and arrival time extractor can be chosen by
4091 flags as well (see Class description)
4092
4093
4094 * mbadpixels/MBadPixelsCam.cc
4095 - add two new types in GetPixelContent, add documentation of
4096 GetPixelContent
4097
4098 * msignal/MArrivalTimeCalc2.cc
4099 - commented the warning for pixels with lowgain saturation
4100
4101
4102
4103 2004/04/13: Markus Gaug
4104
4105 * macros/dohtml.C
4106 - included directory mbadpixels
4107
4108 * mcalib/MCalibrationPix.[h,cc]
4109 - add functions GetHiLoMeansDivided(), GetHiLoSigmasDivided() and
4110 errors
4111
4112 * mcalib/MCalibrationChargeCam.[h,cc]
4113 - removed hi-vs.Lo histograms (come into a separate MIntensityCam)
4114 - updated GetPixelContents
4115 - updated class documentation
4116
4117 * mgeom/MGeomMirror.h
4118 - include <TVector3.h>, otherwise it does not compile on my machine
4119
4120 * mjobs/MJPedestals.cc
4121 * mjobs/MJCalibration.cc
4122 - replaced MBadPixelsMerge by MParList.AddToList(fBadPixels) until
4123 bug in MBadPixelsMerge is resolved (see bugtracker).
4124
4125 * mcalib/MHCalibrationChargePINDiode.cc
4126 - return in Draw() if histogram is empty (otherwise segm. violation
4127 in eventloop
4128
4129 * msignal/MExtractedSignalCam.cc
4130 - intialize variables by default to 0.
4131
4132 * mcalib/MHCalibrationChargeCam.[h,cc]
4133 - pointer to fSig is not stored, somehow, when running MJCalibration
4134 Don't know why. Removed and stored some variables instead
4135
4136 * mjobs/MJCalibration.[h,cc]
4137 - updated documentation, updated QE Cam
4138 - set the pulser colour (now obligatory)
4139 - set the possibility to choose different displays
4140
4141 * mcalib/MCalibrationChargeCalc.cc
4142 - set the pulser colour (now obligatory)
4143
4144 * mcalib/MCalibrationChargePix.[h,cc]
4145 - put GetRSigmaPerCharge into this class
4146
4147
4148
4149 2004/04/13: Thomas Bretz
4150
4151 * mastro/MAstroCamera.cc, mastro/MAstroCatalog.[h,cc]:
4152 - enhanced comments
4153 - added some new features
4154
4155 * mbase/MAGIC.h:
4156 - removed some empty lines
4157
4158 * mfileio/MWriteRootFile.cc:
4159 - fixed a compiler warning
4160
4161 * mgeom/MGeomCorsikaCT.h:
4162 - removed obsolete include of TArrayF
4163
4164 * mgeom/MGeomMirror.[h,cc]:
4165 - replaced fReflector by *fReflector
4166
4167 * mmain/MGDisplayAdc.cc:
4168 - fixed a bug which caused the wrong histogram entry to be
4169 displayed
4170
4171
4172
4173 2004/04/10: Markus Gaug
4174
4175 * macros/dohtml.C
4176 - included directory mjobs
4177
4178 * mjobs/MJCalibration.[h,cc]
4179 - added and updated documentation (not yet ready)
4180
4181 * htmldoc/images/CalibClasses.gif
4182 - scheme of the calibration classes, used for documentation in
4183 MJCalibration.cc
4184
4185
4186
4187 2004/04/10: Thomas Bretz
4188
4189 * mastro/MAstroCatalog.[h,cc], mastro/MAstroCamera.[h,cc]:
4190 - added comments
4191
4192 * macros/starfield.C:
4193 - added
4194
4195 * mastro/Makefile, mastro/AstroLinkDef.h
4196 - added MAstroCamera
4197
4198
4199
4200 2004/04/09: Markus Gaug
4201
4202 * mcalib/MHCalibrationChargePINDiode.[h,cc]
4203 * mcalib/MHCalibrationChargeCam.[h,cc]
4204 * mcalib/MHCalibrationChargeCalc.[h,cc]
4205 - put abs. time consistency check from MCalibrationChargeCalc into
4206 MHCalibrationChargePINDiode and MHCalibrationChargeCam
4207
4208 * mcalib/MHCalibrationCam.[h,cc]
4209 * mcalib/MHCalibrationChargeCalc.[h,cc]
4210 - number of used FADC slices also stored in MHCalibrationCam,
4211 MHCalibrationChargeCalc needs no pointer to the signal extractors
4212 any more -> removed
4213
4214 * mcalib/MCalibrationChargePINDiode.[h,cc]
4215 * mcalib/MCalibrationChargeBlindPix.[h,cc]
4216 * mcalib/MCalibrationCam.[h,cc]
4217 - put a default pulser color kNONE
4218
4219 * manalysis/MPedestalCam.[h,cc]
4220 * manalysis/MPedCalcPedRun.[h,cc]
4221 * manalysis/MGeomApply.cc
4222 - added average pixels in the way like it is done in MCalibrationCam
4223
4224
4225
4226 2004/04/08: Thomas Bretz
4227
4228 * mfbase/MF.cc:
4229 - optimized output
4230
4231 * mfbase/MFilterList.cc:
4232 - added some comments
4233
4234 * mfileio/MReadMarsFile.[h,cc], mfileio/MReadTree.[h,cc]:
4235 - added SortFiled-option -- RAQUEL, this is for you!
4236
4237 * mfileio/MWriteRootFile.cc:
4238 - class AddSerialNumber in AddContainer
4239
4240 * mhist/MHFalseSource.[h,cc]:
4241 - optimized setting of hist maximum
4242 - added more source dependant cuts
4243 - changed display layout
4244 - scale number of entries to correct for different acceptance
4245 (not perfect, but the best I can currently do)
4246
4247 * mimage/MHHillasExt.[h,cc]:
4248 - added new histogram for fMaxDist
4249
4250 * mimage/MHNewImagePar.[h,cc]:
4251 - added new histograms for Used/CoreArea
4252
4253 * mimage/MHillasCalc.cc:
4254 - optimized output
4255
4256 * mimage/MHillasExt.cc:
4257 - fMaxDist got a sign
4258
4259 * mimage/MNewImagePar.[h,cc]:
4260 - enhanced comments
4261 - added new Print() member function
4262
4263 * macros/readCT1.C, macros/readMagic.C, mmain/MEventDisplay.cc:
4264 - forward geomcam to newimgepar.Print()
4265
4266
4267
4268 2004/04/08: Markus Gaug
4269
4270 * mcalib/MCalibrationChargeCalc.[h,cc]
4271 * mcalib/MCalibrationChargeCam.[h,cc]
4272 * mcalib/MCalibrationChargePix.[h,cc]
4273 * mcalib/MCalibrationChargeBlindPix.[h,cc]
4274 * mcalib/MCalibrationChargePINDiode.[h,cc]
4275 - put calculation of photon fluxes with the three methods into
4276 MCalibrationChargeCalc
4277 - reorganized calculations in a better readable way (hopefully!)
4278
4279 * mbase/MAGIC.h
4280 * mcalib/MCalibrationCam.[h,cc]
4281 * mcalib/MCalibrationQECam.[h,cc]
4282 * mcalib/MCalibrationQEPix.[h,cc]
4283 - put PulserColor_t away from MAGIC.h into MCalibrationCam
4284 - full implementation of the QE-calibration from MCalibrationQEPix
4285
4286 * msignal/MExtractBlindPixel.cc
4287 - removed warning about low-gain saturation of Blind pixel
4288
4289 * mcalib/MCalibrate.[h,cc]
4290 * mcalib/MCalibrateData.[h,cc]
4291 * mcalib/MMcCalibrationCalc.[h,cc]
4292 * manalysis/MMcCalibrationUpdate.[h,cc]
4293 - conversion factors now separated into FADC2phe and then into
4294 call to average Quantum efficiency.
4295
4296
4297 2004/04/07: Markus Gaug
4298
4299 * mcalib/MHGausEvents.[h,cc]
4300 - added fBlackout events
4301
4302
4303
4304 2004/04/06: Thomas Bretz
4305
4306 * mcalib/MCalibrationCam.[h,cc]:
4307 - simplified call to initialization by new function Init()
4308
4309 * mcalib/MH*.cc:
4310 - fixed some warnings (comparision between signed and unsigned)
4311
4312 * manalysis/MGeomApply.cc:
4313 - use new Init-funtion of MCalibrationCam
4314
4315 * mastro/MAstro.cc:
4316 - some fixes to the conversion functions
4317
4318 * mastro/MAstroCamera.[h,cc]:
4319 - added comments
4320 - changed argument type of AddPrimitives
4321
4322 * mastro/MAstroCatalog.[h,cc]:
4323 - many changes to make it possible to overlay the
4324 catalog on top of a 2D histogram
4325
4326 * mbase/MEvtLoop.cc:
4327 - fixed estimation of run-time
4328
4329 * mbase/MMath.[h,cc]:
4330 - added member functions for signed significances
4331
4332 * mbase/MParContainer.cc:
4333 - changed GetterMethod() to support double reference data mebers
4334
4335 * mbase/MStatusDisplay.cc:
4336 - removed some obsolete debug outputs
4337
4338 * mbase/MTask.[h,cc]:
4339 - removed fNumExecutions, fStopwatch already counts the calls
4340 - slight chagnes to output of PrintStatistics
4341
4342 * mbase/MTaskList.[h,cc]:
4343 - slight chagnes to output of PrintStatistics
4344
4345 * mbase/MTime.cc:
4346 - removed +TwoPi from GetGmst
4347
4348 * mcamera/MCameraAUX.h, mcamera/MCameraHV.h, mcamera/MCameraLV.h,
4349 mcamera/MCameraLid.h, mcamera/MCameraLids.h,
4350 mcamera/MCameraPowerSupply.h:
4351 - added missing Getter functions
4352
4353 * mcamera/MCameraHV.h:
4354 - removed obsolete data-meber fMean
4355
4356 * mdata/DataLinkDef.h:
4357 - added MDataFormula
4358
4359 * mdata/MDataChain.cc, mdata/Makefile:
4360 - enhanced dosumentation
4361 - implemented use of multi argument functions
4362 - added ^-operator
4363
4364 * mdata/MDataList.[h,cc]:
4365 - added ^-operator
4366 - enhanced IsValid
4367
4368 * mfbase/MFilterList.cc:
4369 - changed a warn-output to inf
4370
4371 * mgeom/MGeomCam.[h,cc]:
4372 - added getter returning index corresponding to XY
4373
4374 * mgeom/MGeomPix.[h,cc]:
4375 - added getter IsInside
4376
4377 * mhist/MHCamera.cc:
4378 - Return 0 in GetMean if no entries
4379
4380 * mhist/MHFalseSource.[h,cc]:
4381 - removed conversion stuff (mm/deg)
4382 - slight change to calculation of significance
4383 - added dist-cuts
4384 - added histogram showing number of entries
4385 - added display of catalog
4386
4387 * mhist/MHStarMap.cc:
4388 - added comment
4389
4390 * mimage/MHillasExt.[h,cc]:
4391 - changed class version to 3
4392 - added new data-member fMaxDist
4393
4394 * mimage/MNewImagePar.[h,cc]:
4395 - added new data member fUsedArea and fCoreArea
4396
4397 * mmc/MMcConfigRunHeader.h:
4398 - readded GetMirrors (WHY WAS IT GONE?)
4399
4400 * mpointing/MPointingPos.[h,cc]
4401 - implemented Getter to get coordinates in rad
4402
4403 * mpointing/MSrcPosCalc.[h,cc]:
4404 - fixed direction of rotation
4405 - for the moment do use fTime
4406
4407
4408
4409 2004/04/06: Markus Gaug
4410
4411 * mcalib/MCalibrationChargePix.[h,cc]
4412 - change names of the GetLoGain*() functions to
4413 GetConvertedLoGain*() for better clarity
4414
4415 * mcalib/MCalibrationChargeCam.[h,cc]
4416 - updated and enlarged documentation
4417
4418 * mcalib/MHCalibrationChargeCam.cc
4419 * mcalib/MHCalibrationRelTimeCam.cc
4420 - set the arrays by use of memset
4421 - initialize TObjArrays with the Init-Function
4422
4423
4424 2004/04/05: Markus Gaug
4425
4426 * msignal/MExtractedSignalPINDiode.h
4427 - new function GetLastUsedSlice()
4428
4429 * mcalib/MCalibrationChargeCalc.[h,cc],
4430 * mcalib/MCalibrationChargeCam.cc:
4431 - holds also pointers to MExtractedSignalPINDiode and
4432 MExtractedSignalBlindPixel and does the checks inside the task
4433 (instead of inside the containers)
4434
4435 * mcalib/MCalibrationChargeBlindPix.[h,cc],
4436 * mcalib/MCalibrationChargePINDiode.[h,cc]:
4437 - updated and enlarged documentation
4438
4439 * mcalib/MHCalibrationChargePINDiode.cc
4440 * mcalib/MHCalibrationChargeCam.[h,cc]
4441 - rename Setter for fMeanVar from SetMeanErr() to SetMeanVar()
4442 - rename arrays of fAverageSigmaErr to AverageSigmaVar
4443
4444 * mcalib/MCalibrationPix.[h,cc]
4445 * mcalib/MCalibrationChargePix.[h,cc]
4446 * mcalib/MCalibrationChargeBlindPix.[h,cc]
4447 * mcalib/MCalibrationChargePINDiode.[h,cc]
4448 - add Getters to the relative variance
4449
4450 * mcalib/MHGausEvents.[h,cc]
4451 * mcalib/MCalibrationPix.[h,cc]
4452 * mcalib/MHCalibrationCam.cc
4453 - add to Pickup also Blackout events
4454
4455
4456 2004/04/05: Nadia Tonello
4457
4458 * mbadpixels/MBadPixelsTreat.cc
4459 - In Unmap(): replaced SetPixelUnused with SetPixelUnmapped
4460
4461
4462
4463 2004/04/02: Markus Gaug
4464
4465 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.[h,cc],
4466 mcalib/MCalibrationQEPix.[h,cc], mcalib/MCalibrationQECam.[h,cc],
4467 mcalib/MCalibrationRelTimeCam.[h,cc],
4468 mcalib/MCalibrationRelTimePix.[h,cc]:
4469 - updated and enlarged documentation
4470
4471 * mcalib/MHGausEvents.[h,cc], mcalib/MHPedestalPix.[h,cc],
4472 mcalib/MHCalibrationChargePix.[h,cc],
4473 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
4474 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
4475 mcalib/MHCalibrationChargeBlindPix.[h,cc],
4476 mcalib/MHCalibrationChargePINDiode.[h,cc]:
4477 - put fPixId, fPickup, fPickupLimt, CountPickup(), RepeatFit() and
4478 ChangeHistId() into MHGausEvents (before in the derived classes)
4479 - put fChargeNbins, fChargeFirst, fChargeLast,
4480
4481 * mcalib/MHCalibrationRelTimePix.[h,cc]:
4482 - put fRelTimeNbins, fRelTimeFirst, fRelTimeLast together
4483 into MHGausEvents as fNbins, fFirst and fLast
4484
4485 * mcalib/MHCalibrationRelTimePix.[h,cc]:
4486 - remove Renormalization to time slices. Need to think about
4487 more direct way to implement
4488
4489 * mcalib/MHPedestalCam.[h,cc], mcalib/MHCalibrationCam.[h,cc],
4490 mcalib/MHCalibrationChargeCam.[h,cc],
4491 mcalib/MHCalibrationRelTimeCam.[h,cc]:
4492 - put most of the functionality into the base class MHCalibrationCam
4493 - derived classes overload the functions SetupHists, ReInitHists,
4494 FillHists, FinalizeHists and FinalizeBadPixels.
4495 - functions FitHiGainArrays, FitLoGainArrays, FitHiGainHists,
4496 FitLoGainHists and InitHists can be used from base class.
4497
4498 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationChargePix.[h,cc],
4499 mcalib/MCalibrationRelTimePix.[h,cc]:
4500 - put most of the functionality into the base class MCalibrationPix
4501 - other two classes derive now from MCalibrationPix
4502
4503 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationChargeCam.[h,cc]
4504 mcalib/MCalibrationRelTimeCam.[h,cc]:
4505 - put most of the functionality into the base class MCalibrationCam
4506 - other two classes derive now from MCalibrationCam
4507 - calls to MCalibration*Cam[i] now have to cast!
4508
4509 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
4510 * mcalib/MMcCalibrateCalc.cc, manalysis/MMcCalibrationUpdate.cc,
4511 * mcalib/MCalibrationChargeCalc.cc:
4512 - cast calls to MCalibration*Cam[i]
4513
4514 * manalysis/MGeomApply.cc
4515 - add initialization MCalibrationRelTimeCam
4516 - add intialization of average pixels
4517
4518
4519
4520 2004/04/02: Abelardo Moralejo
4521
4522 * msignal/MExtractSignal3.[h,cc]
4523 - added. Alternative method for signal extraction. Uses sliding
4524 window from event to event, but a common window for all pixels
4525 in an event.
4526
4527 * msignal/Makefile, SignalLinkDef.h
4528 - added MExtractSignal3.
4529
4530
4531
4532 2004/04/02: Markus Gaug
4533
4534 * mbadpixels/MBadPixelsPix.h
4535 - added kRelTimeNotFitted and kRelTimeOscillating to Calibration_t
4536 enum
4537
4538 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationPix.[h,cc],
4539 mcalib/Makefile, mcalib/CalibLinkDef.h:
4540 - two new base classes for general calibration storage containers,
4541 contain average pixel storage functionality
4542
4543 * mcalib/MCalibrationRelTimeCam.[h,cc],
4544 mcalib/MCalibrationRelTimePix.[h,cc]:
4545 - new storage container for the rel. time calibration results, derive
4546 from MCalibrationPix, MCalibrationCam
4547
4548
4549
4550 2004/04/01: Markus Gaug
4551
4552 * msignal/MArrivalTimeCalc.[h,cc]
4553 - set fSaturationLimit as a variable with default (instead of 0xff)
4554
4555 * mcalib/MHCalibrationChargeCam.[h,cc]
4556 mcalib/MCalibrationChargeCam.[h,cc]
4557 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
4558 - add average pixels per sector
4559
4560 * mcalib/MHGausEvents.[h,cc], mcalib/MHCalibrationChargePix.[h,cc],
4561 mcalib/MHCalibrationRelTimePix.[h,cc]:
4562 - moved BypassFit() function to MHGausEvents
4563
4564 * mcalib/MHCalibrationChargeCam.[h,cc]:
4565 - updated and enlarged documentation
4566 - derives now from mcalib/MHCalibrationCam
4567
4568 * mcalib/MCalibrationChargePix.[h,cc]:
4569 - removed flag kLoGainSaturation, because it is already in MBadPixelsPix
4570
4571 * mcalib/MCalibrationCam.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
4572 - new base class for all MHCalibration*Cam object, contains the average
4573 pixel functionality
4574
4575
4576
4577 2004/03/31: Markus Gaug
4578
4579 * mcalib/MHCalibrationChargeCam.[h,cc],
4580 mcalib/MCalibrationChargeCam.[h,cc],
4581 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
4582 - make the average pixel independent on camera geometry, i.e.
4583 one average pixel per MGeomPix::Aidx
4584
4585
4586
4587 2004/03/31: Abelardo Moralejo
4588
4589 * mmc/MMcConfigRunHeader.[h,cc]
4590 - updated to current version (3) in camera program. Added member
4591 fLightCollectionFactorOuter so that we can store the data on
4592 the simulatedlight collection efficiency (light guides +
4593 plexiglas +...) as a function of incidence angle for outer and
4594 inner pixels independently. Added getters for this information
4595 on light collection efficiency.
4596
4597
4598
4599 2004/03/30: Markus Gaug
4600
4601 * mcalib/MHGausEvents.[h,cc],
4602 mcalib/MHCalibrationChargePix.[h,cc],
4603 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
4604 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
4605 mcalib/MHCalibrationChargeBlindPix.[h,cc],
4606 mcalib/MHCalibrationChargePINDiode.[h,cc],
4607 mcalib/MHCalibrationRelTimeCam.[h,cc],
4608 mcalib/MHCalibrationRelTimePix.[h,cc],
4609 mcalib/MHPedestalPix.[h,cc],
4610 mcalib/MHPedestalCam.[h,cc]:
4611 - updated and enlarged documentation
4612
4613
4614
4615 2004/03/30: Abelardo Moralejo
4616
4617 * mmc/MMcFadcHeader.hxx
4618 - updated to current version (4) in camera program.
4619
4620
4621
4622 2004/03/29: Markus Gaug
4623
4624 * manalysis/MSourcePosFromStarPos.cc
4625 - replaced fabs(ival) by TMath::Abs(ival)
4626
4627 * mbadpixels/MBadPixelsPix.h
4628 - adopt treatment of UnCalibrated_t like the one in Unsuitable_t
4629
4630 * mbadpixels/MBadPixelsPix.cc
4631 - put some documentation in the header
4632
4633 * mcalib/MHCalibrationChargeCam.cc
4634 mcalib/MCalibrationChargeCam.cc
4635 mbadpixels/MBadPixelsCam.cc
4636 - adopt to new style in MBadPixelsPix.h
4637
4638 * mcalib/MCalibrationChargeCalc.[h,cc]
4639 mcalib/MCalibrationChargePix.[h,cc]
4640 - move consistency checks from Pix to Calc
4641
4642 * mcalib/MHGausEvents.[h,cc]
4643 - fixed axes for event and fourier spectrum Draw
4644
4645 * mcalib/MHCalibrationChargePix.[h,cc]
4646 mcalib/MHCalibrationChargeCam.[h,cc]
4647 - moved definition of pulser frequency to MHCalibrationChargeCam
4648
4649
4650
4651 2004/03/24: Thomas Bretz
4652
4653 * mbase/MMath.cc:
4654 - now SignificanceLiMa returns 0 in case sum==0
4655
4656
4657
4658 2004/03/23: Thomas Bretz
4659
4660 * mbase/MContinue.cc, mhbase/MH.cc:
4661 - changed a warning message to an inf-message
4662
4663 * mfileio/MReadTree.cc:
4664 - added an additional logging message when adding files to a
4665 chain successfully.
4666
4667 * mbase/MProgressBar.cc:
4668 - fixed initial size
4669
4670 * mastro/MAstro.[h,cc]:
4671 - changed the code for the rotation angle back to its original
4672 shape. The definition I tried to introduced was already
4673 correctly implemented (assuming that sin is the x-component
4674 of the vector I had it wrong in my mind twice, using
4675 atan2(y,x) everywhere I did recognize it...)
4676
4677 * mreport/MReport.cc:
4678 - fixed a bug which caused a crash when the time is not valid
4679
4680 * mhist/MHStarMap.cc, mpointing/MSrcPosCalc.cc:
4681 - fixed: v.Roatete() must be v=v.Rotate()
4682 - MHStarMap no waorks also without MSrcPosCam, MPointingPos
4683 or MObservatory (leaving out the corresponding translations)
4684
4685
4686
4687 2004/03/22: Markus Gaug
4688
4689 * mfileio/Makefile, mimage/Makefile
4690 - mpointing included
4691
4692
4693
4694 2004/03/22: Thomas Bretz
4695
4696 * mpointing/MSrcPosCalc.[h,cc], MSrcPosCam.[h,cc]:
4697 - added
4698
4699 * mastro/MAstro.[h,cc]:
4700 - added code to calculate rotationangle previously in MObservatory
4701 - changed definition of rotation angle such, that it is now
4702 180deg if Ra and Az grid is parallel
4703
4704 * mastro/MAstroCatalog.[h,cc]:
4705 - fixes and enhancements to the display (such as misscalculated
4706 number of grid lines, title display, etc)
4707 - enhancements to the output
4708 - generalized creation of grid - for further usage
4709
4710 * mastro/MAstroSky2Local.[h,cc]:
4711 - replaced calculation of rotation angle by the function in
4712 MAstro
4713
4714 * mastro/MObservatory.[h,cc]:
4715 - small changes to Print output
4716 - moved code for calculation of rotation angle to MAstro
4717
4718 * mbase/MEvtLoop.cc:
4719 - do not output number of events per second if no events processed
4720
4721 * mbase/MParList.cc:
4722 - updated some comments
4723
4724 * mfileio/MCT1ReadAscii.cc, mfileio/MCT1ReadPreProc.cc,
4725 mfileio/MReadRflFile.cc, mraw/MRawFileRead.cc,
4726 mreport/MReportFileRead.cc:
4727 - output error string if file cannot be opened
4728
4729 * mfileio/MReadTree.cc:
4730 - output name of chain which is scanned
4731
4732 * mimage/MConcentration.cc:
4733 - replaced loop by iterator
4734 - removed obsolete (unused) variables
4735
4736 * mimage/MHNewImagePar.[h,cc]:
4737 - fixed display colors
4738
4739 * mpointing/MPointingPos.[h,cc]:
4740 - added member function to calculate rotation angle
4741 - added comments
4742
4743 * mpointing/Makefile:
4744 - added include MAstro
4745
4746 * manalysis/MSrcPosCam.[h,cc]:
4747 - moved to mpointing
4748
4749 * mpointing/MSrcPosCalc.[h,cc]:
4750 - added: Derotates a star in the camera into MSrcPosCam
4751
4752 * mpointing/Makefile, mpointing/PointingLinkDef.h:
4753 - added MSrcPosCam
4754 - added MSrcPosCalc
4755
4756 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
4757 - removed MSrcPosCam
4758
4759 * mmain/Makefile:
4760 - added include for mpointing
4761
4762 * manalysis/AnalysisIncl.h:
4763 - removed TVector2
4764
4765 * mbase/MParContainer.h:
4766 - added new abstract virtual member function SetVariables
4767 (to be used in fits)
4768 - addeed some text to class description
4769
4770 * mdata/MData.cc:
4771 - added comment
4772
4773 * mdata/MDataArray.[h,cc], mdata/MDataElement.h,
4774 mdata/MDataList.[h,cc], mdata/MDataMember.h,
4775 mfbase/MFDataMember.[h,cc], mfbase/MFilterList.[h,cc]:
4776 - added SetVariables
4777
4778 * mdata/MDataChain.[h,cc]:
4779 - added support for indexed variables [i]
4780 - added SetVariables
4781
4782 * mdata/MDataValue.[h,cc]:
4783 - added support for variable values (through SetVariables)
4784 - added support for an index
4785 - added SetVariables
4786
4787 * mfbase/MF.[h,cc]:
4788 - removed support for {}. This case is now detected
4789 automatically
4790 - added SetVariables
4791 - added support for expressiond like
4792 "MHillas.fLength<2*MHillas.fWidth"
4793
4794 * mfbase/MFDataChain.[h,cc]:
4795 - added fCond data member
4796 - addednew constructor to support fCond
4797 - added support for new condition type
4798 - adapted Print and GetRule
4799
4800 * mimage/MNewImagePar.[h,cc]:
4801 - added some comments
4802
4803 * mhist/MHStarMap.[h,cc]:
4804 - fixed to use the correct MPointingPos instead of the
4805 deprecated MMcEvt. Use MPointingPosCalc to copy the
4806 pointing position from MMcEvt to MPointingPos
4807
4808 * mbase/MMath.[h,cc]:
4809 - added, which currently only implements calculation of
4810 significance and Li/Ma significance
4811
4812 * mbase/Makefile, mbase/BaseLinkDef.h:
4813 - added MMath
4814
4815
4816
4817 2004/03/19: Markus Gaug
4818
4819 * mcalib/MHCalibrationChargePix.cc
4820 - added some style to the default Draw in order to see the
4821 label and axis titles better
4822
4823 * mcalib/MHCalibrationChargeCam.[h,cc]
4824 - store and display more information on the average pxiels
4825
4826 * mcalib/MCalibrationCam.cc
4827 - the GetPixelContent flag were not correct any more, fixed them
4828
4829 * macros/calibration.C
4830 - fixed GetPixelContent flags
4831 - draw radial profile of the variables
4832
4833 * mjobs/MJCalibration.cc
4834 - fixed GetPixelContent flags
4835 - introduced RadialProfile for some displays
4836 - removed some not so important displays
4837
4838 * manalysis/MGeomApply.cc
4839 - included MCalibrationQECam to be initialized
4840
4841 * mcalib/MCalibrationChargePix.[h,cc],
4842 mcalib/MCalibrationQEPix.[h,cc]:
4843 - replace DefinePixId by SetPixId
4844
4845 * mcalib/MCalibrationChargeCalc.[h,cc]
4846 - added MCalibrationQECam
4847 - cleaned the code up a little
4848 - give more information at the end
4849
4850 * mcalib/MCalibrationChargePix.[h,cc]
4851 - took out fNumLoGainSampels whihc is not needed any more because
4852 conversion is only done in the getters
4853 - Canceled function ApplyLoGainConversion (for same reason)
4854
4855 * msignal/MExtractSignal2.cc
4856 - remove uncommented piece of code
4857
4858 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
4859 - remove warning about pixel with low gain saturation,
4860 now in MBadPixelsPix
4861
4862 * mbadpixels/MBadPixelsPix.[h,cc], mcalib/MCalibrationChargeCam.cc:
4863 - added new flag: kDeviatingNumPhes
4864
4865 * mcalib/MCalibrationChargePix.cc
4866 - check for mean arr. time in last bin replaced by check in last
4867 two bins
4868
4869 * mcalib/MCalibrationChargePix.[h,cc],
4870 mcalib/MCalibrationChargeCam.cc,
4871 mcalib/MHCalibrationChargeCam.cc:
4872 - removed flag kHiGainFitted, kLoGainFitted, since they are
4873 available from MBadPixelsPix
4874
4875 * macros/calibration.C, macros/calibrate_data.C
4876 - a few flags from MCalibrationChargeCam::GetPixelContent were wrong,
4877 corrected them
4878
4879
4880
4881 2004/03/18: Raquel de los Reyes
4882
4883 * macros/DAQDataCheck.C
4884 - macro to check the data from the DAQ system (.raw files).
4885
4886
4887
4888 2004/03/18: Thomas Bretz
4889
4890 * manalysis/AnalysisIncl.h:
4891 - added TVector2
4892
4893 * manalysis/MSrcPosCam.[h,cc]:
4894 - added Getter/Setter using TVector2
4895
4896 * mhbase/MH.cc:
4897 - fixed GetMinimumGT for TH2 and TH3
4898
4899 * mpointing/MPointingPos.h:
4900 - added Getter/Setter for Ra/Dec
4901
4902 * mpointing/MPointingPosCalc.cc:
4903 - fill Ra/Dec into MPointingPos
4904
4905
4906
4907 2004/03/18: Markus Gaug
4908
4909 * mgeom/MGeomCam.[h,cc]
4910 - replace fMaxRadius by a TArrayF of pixel area types
4911 - new TArrayF fMinRadius of each pixel area type
4912 - backward compatibility should be given,
4913 call to GetMaxRadius() returns the value for the whole camera
4914 (which corresponds to the previous value for the Magic camera)
4915
4916 * mimage/MConcentration.cc
4917 - fixed on flog to fLog in order to compile
4918
4919
4920
4921 2004/03/17: Thomas Bretz
4922
4923 * mastro/MAstroCatalog.[h,cc]:
4924 - some simplifications and changes
4925
4926 * mastro/MAstroCatalog.[h,cc]:
4927 - some simplifications and changes
4928
4929 * mastro/MAstroSky2Local.[h,cc]:
4930 - rotation matrix from sky to local coordinates
4931 - added
4932
4933 * mastro/Makefile, mastro/AstroLinkDef.h:
4934 - MAstroSky2Local added
4935
4936 * mraw/MRawEvtPixelIter.cc:
4937 - GetIdxMaxLoGainSample(const Byte_t lofirst) const
4938 accelerated and fixed (the first slice was compared to itself
4939 and the last slice was not taken into account)
4940
4941 * manalysis/MCerPhotAnal2.cc:
4942 - fixed a bug in the new treatment of lo-gains
4943
4944 * mhvstime/MHPixVsTime.cc:
4945 - fixed missing initialization of fTypeErr in constructor
4946
4947 * mimage/MHillas.[h,cc]:
4948 - implemented member function which returns MeanX/Y as TVector2
4949
4950 * mimage/ImageIncl.h:
4951 - added TVector2
4952
4953 * manalysis/MCerPhotEvt.[h,cc]:
4954 - fixed a bug in AddPixels which - in some special circumstances -
4955 cutted pixels with high pixel indices
4956
4957
4958
4959 2004/03/17: Antonio Stamerra
4960
4961 * macros/datatrigcheck.C
4962 - added macro for time and trigger data-checking
4963
4964
4965
4966 2004/03/17: Abelardo Moralejo
4967
4968 * manalysis/MSourcePosfromStarPos.cc
4969 - added cast fabs((Double_t)ival), line 703. Otherwise it does not
4970 compile.
4971
4972 * macros/starmc.C
4973 - added parameter accepted_fraction to select fraction of events
4974 to be processed (useful to make smaller outputs).
4975
4976
4977
4978 2004/03/17: Wolfgang Wittek
4979
4980 * manalysis/MSigmabar.[h,cc]
4981 - correct calculation of sector, which was wrong
4982
4983
4984
4985 2004/03/16: Markus Gaug
4986
4987 * mhist/MHCamera.[h,cc]
4988 - added function RadialProfile which returns a TProfile of the
4989 value along the radius from the camera center
4990
4991
4992
4993 2004/03/16: Oscar Blanch Bigas
4994
4995 * mimage/MConcentration.[h,cc]
4996 - new class for Concentration stuff.
4997 - It computes and stores Concentration 1-8
4998
4999 * mimage/MNewImagePar.[h,cc]
5000 - New Concentration stuff is moved to MConcentration.
5001
5002 * mimage/MHillasCalc.[h,cc], Makefile, ImageLinkDef.h
5003 - Modifications needed to support and compile new
5004 MConcentration class.
5005
5006
5007
5008 2004/03/16: Thomas Bretz
5009
5010 * mjobs/MJ*.[h,cc]
5011 - removed some obsolete comments
5012 - removed projections from Directory (SetDirectory(0))
5013
5014
5015
5016 2004/03/16: Wolfgang Wittek
5017
5018 * manalysis/MSigmabar.[h,cc]
5019 - calculate sigmabar as mean of individual pedestalRMS
5020 instead of sqrt of mean pedestalRMS^2
5021
5022
5023
5024 2004/03/16: Oscar Blanch
5025
5026 * mimage/MNewImagePar.[h,cc]
5027 - New variables members added: fInnerSize, fInnerLeakage[1,2],
5028 fConc[3-8].
5029 - It is only ready for Magic Camera geometry. It has to be done
5030 MGeomCam base.
5031 - The version ahs not been updated since it was done on the
5032 2004/03/10 by Abelardo.
5033
5034
5035
5036 2004/03/15: Markus Gaug
5037
5038 * mcalib/MCalibrationChargePix.[h,cc],
5039 mcalib/MCalibrationChargeCam.[h,cc],
5040 mcalib/MCalibrationChargeCalc.cc:
5041 - conversion from hi- to logain now not applied until the value is
5042 exported outside the class. This is necessary for the error
5043 propagation in the F-Factor method: In the calculation of the
5044 number of Phe, the conversion factors cancel out and do not
5045 enlarge the errors
5046 - pixels with number of phe's outside the range defined by
5047 fPheFFactorRelErrLimit are not any more declared as:
5048 MCalibrationChargePix::IsFFactorMethodValid() == kFALSE ,
5049 but instead as:
5050 MBadPixelsPix::IsSuitableRun(MBadPixelsPix::kUnreliableRun) == kTRUE,
5051 Like this, everybody is allowed to calibrate pixels which give
5052 no reasonable results in the calibration without bothering that
5053 too many pixels fall out. Enjoy!
5054 - In that procedure, the classes passed _internally_ from calculation
5055 of sigmas to calculation of variances which saves all the useless
5056 square rooting.
5057 - took out pointers to MCalibrationChargeBlindPix and
5058 MCalibrationChargePINDiode in MCalibrationChargeCam.
5059
5060
5061
5062 2004/03/15: Abelardo Moralejo
5063
5064 * mmc/MMcEvt.hxx
5065 - added getter function for fZFirstInteraction
5066
5067
5068
5069 2004/03/15: Wolfgang Wittek
5070
5071 * mastro/MObservatory.[h,cc]
5072 - remove bugs in RotationAngle(theta, phi, sin, cos)
5073 replaced
5074 cos = sinl + cosl*cosp /denom;
5075 by
5076 cos = (sinl - cosl*cosp) /denom;
5077
5078
5079
5080 2004/03/15: Thomas Bretz
5081
5082 * mastro/MObservatory.[h,cc]:
5083 - implemented RotationAngle(ra, dec, time)
5084
5085 * mbase/MTask.[h,cc]:
5086 - implemented usage of a TStopwatch to retriev time consumtion
5087 informations
5088 - changed PrintStatistics not to print classes having no
5089 Process() function
5090
5091 * mbase/MTaskList.[h,cc], mfileio/MReadReports.[h,cc]:
5092 - changed PrintStatistics according to changes in MTask
5093
5094 * mraw/MRawEvtHeader.cc:
5095 - added a comment to Fill member function
5096
5097 * manalysis/MCerPhotEvt.[h,cc]:
5098 - added fLut.Set to FixSize and resize fLut by a factor of 2
5099 instead of +1 which acelerates creation of all pixels a lot
5100
5101 * mbadpixels/MBadPixelsPix.cc:
5102 - fixed a typo
5103
5104 * mfilter/MFSoftwareTrigger.cc:
5105 - made statistics output meaning independant of usage of filter!
5106
5107 * mhbase/MFill.[h,cc]:
5108 - added possibility to give tab a different name
5109
5110 * mhist/MHCamera.cc:
5111 - fixed a bug when determin scale for same-option
5112
5113 * mjobs/MJCalibration.cc:
5114 - changed tab names for MFillH
5115
5116 * mjobs/MJExtactSignal.cc:
5117 - added MRawEvtHeader to output
5118
5119 * mbase/MStatusDisplay.[h,cc]:
5120 - changed displayed year
5121 - read and store MStatusArray to and from files
5122
5123 * mfileio/MReadTree.cc:
5124 - enhanced output
5125
5126 * mmain/MCameraDisplay.cc, mmain/MEventDisplay.[h,cc]:
5127 - added preliminary mode to display F1/F2/F3-files
5128
5129 * mbase/MStatusArray.[h,cc]:
5130 - added
5131
5132 * mbase/Makefile, mbase/BaseLinkDef.h:
5133 - added MStatusArray
5134
5135 * mhits/MHCamera.[h,cc], mgui/MHexagon.[h,cc]:
5136 - improved drawing MHCamera with 'same' option
5137
5138
5139
5140 2004/03/13: Markus Gaug
5141
5142 * mcalib/MCalibrationChargeCalc.cc, mcalib/MCalibrationChargeCam.cc,
5143 mcalib/MCalibrationChargePix.[h,cc],
5144 mcalib/MHCalibrationChargeCam.cc,
5145 mcalib/MHCalibrationChargeLoGainPix.cc:
5146 - fixed Low Gain calibration
5147
5148 * mcalib/MHGausEvents.cc:
5149 - changed default fit prob. limit from 0.005 to 0.001
5150
5151 * mbadpixels/MBadPixelsPix.h :
5152 - IsCalibrationResultOK does not ask for FitOK any more
5153
5154 * mcalib/MHCalibrationChargeCam.cc:
5155 - replaced Rel. Err. Limit for outliers in Phe's from 5 sigma to 7
5156
5157 * mraw/MRawEvtPixelIter.[h,cc]:
5158 - function GetIdxMaxLoGainSamples can be called optionally with
5159 offset (because first "loGain" samples are often in reality
5160 hiGain with high values.
5161
5162
5163
5164 2004/03/12: Sebastian Raducci
5165
5166 * manalysis/Makefile
5167 - added mastro in the include directories
5168
5169
5170
5171 2004/03/12: Thomas Bretz
5172
5173 * merpp.cc:
5174 - added 'force' option
5175
5176 * manalysis/MCerPhotAnal2.cc:
5177 - extract pedestal and pedestal rms from lo-gain if hi-gain not
5178 above a certain athreshold
5179
5180 * mastro/MAstroCatalog.[h,c]:
5181 - added text argument to DrawStar
5182
5183 * mbase/MStatusDisplay.cc:
5184 - some small changes to output of SaveAsPS
5185
5186 * mfilter/MFCosmics.cc:
5187 - changed output of filter statistics
5188
5189 * mbadpixels/MBadPixelsTreat.[h,cc]:
5190 - fixed some problems with the code - now it should work like
5191 expected
5192 - added a new member function to be able to change the number
5193 of required neighbors
5194
5195
5196
5197 2004/03/12: Wolfgang Wittek
5198
5199 * manalysis/Makefile
5200 - include 'mastro'
5201
5202 * manalysis/MSourcePosfromStarPos.[h,cc]
5203 - include MObservatory.h
5204 - call member function Rotationangle() of MObservatory
5205
5206
5207
5208 2004/03/12: Markus Gaug
5209
5210 * mjobs/MJCalibration.cc
5211 - updated call in displays to the corr. Cams.
5212
5213 * macros/calibrate_data.C
5214 - macro to study calibrate and study data used in Munich and IFAE
5215
5216
5217
5218 2004/03/12: Antonio Stamerra
5219
5220 * mraw/MRawEvtHeader.[h,cc]
5221 - Added the method GetTriggerID() to decode the trigger pattern.
5222
5223
5224
5225 2004/03/11: Abelardo Moralejo
5226
5227 * mimage/MHillasCalc.cc
5228 - Added some printout in PostProcess, to better express the reasons
5229 for which the reconstruction of some events did not succeed.
5230
5231
5232
5233 2004/03/11: Thomas Bretz
5234
5235 * status.cc:
5236 - updated
5237
5238 * manalysis/MCerPhotAnal2.cc:
5239 - removed an obsolete debug output
5240
5241 * mhist/MHCamera.[h,cc]:
5242 - added same-option to camera display
5243
5244 * mbadpixels/MBadPixelsCalc.[h,cc], mbadpixels/MBadPixelsTreat.[h,cc]:
5245 - implemented functionality of MBlindPixelsCalc2
5246
5247 * mbadpixels/MBadPixelsCam.[h,cc], mbadpixels/MBadPixelsPix.[h,cc],
5248 mbadpixels/MMcBadPixelsSet.cc, mcalib/MCalibrationChargeCalc.cc,
5249 mcalib/MCalibrationChargePix.cc, mcalib/MHCalibrationChargeCam.cc:
5250 - replaced several Set/GetUnsuitable* by a single member function
5251
5252
5253
5254 2004/03/11: Markus Gaug
5255
5256 * mbadpixels/MBadPixelsPix.h
5257 - removed bits about validity of calibration methods
5258 - IsCalibrationResultOK asks also from IsSuitableRun
5259
5260 * mbadpixels/MBadPixelsCam.cc
5261 - updated GetPixelContent
5262 - added Print function
5263
5264 * mcalib/MCalibrationChargeCam.[h,cc]
5265 mcalib/MCalibrationChargePix.h, mcalib/MCalibrationChargeCalc.cc:
5266 - removed pointers to MGeomCam and MBadPixelsCam in MCalibrationChargeCam
5267 - use two loops over pixels in order to determine mean flux of phe;s to
5268 discard pixels far outside the normal distribution
5269
5270 * mcalib/MCalibrate.cc
5271 - added case that no MBadPixelsCam is available.
5272
5273 * mcalib/MHCalibrationChargeCam.cc
5274 - adapted to new MBadPixelsPix::SetUnsuitable function
5275
5276
5277 2004/03/10: Abelardo Moralejo
5278
5279 * manalysis/MCerPhotPix.[h,cc]
5280 - Added member fIsHGSaturated, and setter/getter functions.
5281 Updated class version to 4.
5282
5283 * mcalib/MCalibrate.cc, MCalibrateData.cc
5284 - Added setting of MCerPhotPix.fIsHGSaturated if one or more HG
5285 slices saturate.
5286
5287 * mimage/MNewImagePar.[h,cc]
5288 - Added member fNumHGSaturatedPixels to count the number of pixels
5289 in which high gain saturates. Added getter funciton for it.
5290 Updated class version to 3.
5291
5292
5293
5294 2004/03/10: Markus Gaug
5295
5296 * mcalib/MCalibrationChargeCalc.cc,
5297 mcalib/MCalibrationChargePix.[h,cc],
5298 mcalib/MCalibrationChargeCam.[h,cc]:
5299 - calculation of conversion factor with F-Factor method from
5300 same mean number of photons, derived from weighted mean number
5301 of photo-electrons from inner and outer pixels, respectively
5302
5303 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
5304 - fixed the projections (did only display inner pixels up to now)
5305
5306 * macros/calibration.C
5307 - small bug fixed in display of rel. arrival times
5308 ( used MArrivalTimeCam instead of MHCalibrationRelTimeCam)
5309
5310 * mbadpixels/MBadPixelsCam.cc
5311 - replaced some InitSize(idx) by InitSize(idx+1) in order not to crash
5312 to program when reading from an ascii-file.
5313
5314 * mbadpixels/MBadPixelsCalc.cc
5315 - replaced one SetUnsuitableRun(....) by the new version without
5316 argument.
5317
5318
5319
5320 2004/03/10: Thomas Bretz
5321
5322 * mfilter/MFSoftwareTrigger.[h,cc]:
5323 - changed to support also a predifined number of NN
5324
5325 * mastro/MAstroCatalog.[h,cc]:
5326 - many enhancements
5327 - many speed improvements
5328
5329 * mbadpixels/MBadPixelsPix.[h,cc]:
5330 - fixed
5331
5332
5333
5334 2004/03/10: Ester Aliu
5335
5336 * mtemp/MIslands.[h,cc]
5337 - New MParContainer to hold information about islands
5338 (number of islands, pixels in each Island, Signal/Noise of
5339 each Island).
5340
5341 * mtemp/MIslandCalc.[h,cc]
5342 - New MTask to count and characterize Islands.
5343
5344
5345
5346 2004/03/09: Thomas Bretz
5347
5348 * Makefile.rules:
5349 - replaced *.o by $(...) for building archives
5350
5351 * mjobs/MJCalibration.cc:
5352 - exchanged apply and merge task
5353
5354 * mjobs/MJCalibration.h, mjobs/MJExtractSignal.h, mjobs/MJPedestal.h:
5355 - fixed some const-qualifiers
5356
5357 * mcalib/MHCalibrationChargeBlindPix.cc,
5358 mcalib/MHCalibrationChargeCam.cc,
5359 mcalib/MHCalibrationChargePINDiode.cc
5360 - removed some obsolete output when calling FindCreateObj
5361 - changed some 'not found' output messages to be 'Mars-compliant'
5362 - replaced some gLog by *fLog
5363
5364
5365
5366 2004/03/08: Markus Gaug
5367
5368 * mbadpixels/MBadPixelsPix.h
5369 - small modifications for better readability
5370 - remove Getters for calibration methods
5371 - added flag "UnReliableRun" in fInfo[0]
5372
5373 * mcalib/MHCalibrationChargeCam.cc, mcalib/MCalibrationChargePix.cc:
5374 - fill MBadPixelsPix with UnReliableRun or UnSuitableRun when
5375 calibration does not succeed.
5376
5377 * mcalib/MCalibrationChargeCam.cc
5378 - displaying saturation also for not-valid pixels in GetPixelContent
5379
5380 * msignal/MExtractedSignalCam.[h,cc], msignal/MExtractSignal.[h,cc],
5381 msignal/MExtractSignal2.[h,cc], mananlysis/MHPedestalCam.cc,
5382 mcalib/MCalibrationChargeCalc.[h,cc]:
5383 - in SetUsedFADCSlices, also the window (hi-and logain) is set.
5384 This because MExtractSignal2 set the whole window which was much
5385 bigger than the actually used one. This bug is now removed.
5386
5387
5388
5389 2004/03/08: Thomas Bretz
5390
5391 * merpp.cc:
5392 - fixed a bug in the screen output
5393
5394 * mgeom/MGeomMirror.cc:
5395 - added comment
5396
5397 * mmc/MMcConfigRunHeader.h:
5398 - added member function GetMirrors
5399
5400
5401
5402 2004/03/08: Abelardo Moralejo
5403
5404 * macros/starmc.C, starmcstereo.C, mccalibrate.C
5405 - adapted to m. Gaug's changes: now one MBadPixelsCam containers is
5406 added for each telescope to the parameter list.
5407
5408 * mmain/MEventDisplay.cc, Makefile
5409 - added MBadPixelsCam to par list, and mbadpixels/ to includes.
5410 Necessary due to changes in MCalibrate.
5411
5412
5413
5414 2004/03/06: Markus Gaug
5415
5416 * macros/calibration.C
5417 - adapted call to MHCamera::ProjectionS to the new version
5418
5419 * mcalib/Makefile
5420 - include directory mbadpixels
5421
5422 * manalysis/Makefile
5423 - include directory mbadpixels
5424
5425 * mcalib/MCalibrationChargeCalc.[h,cc]
5426 - include MBadPixelsCam
5427 - remove exclusion of pixels from ascii-file
5428 (now accessible from MBadPixelsCam)
5429
5430 * mcalib/MCalibrationChargePix.[h,cc]
5431 - include MBadPixelsCam
5432
5433 * mcalib/MCalibrationChargeCam.[h,cc]
5434 - include MBadPixelsCam
5435
5436 * mcalib/MHCalibrationChargeCam.[h,cc]
5437 - include MBadPixelsCam
5438 - include one additional MBadPixelsPix for the average inner and
5439 outer pixel, respectively
5440
5441 * mcalib/MHCalibrationChargePix.[h,cc]
5442 - make fSaturated and fPickup a Float_t (for average pixel)
5443
5444 * mbadpixels/MBadPixelsPix.h
5445 - include the CalibrationType_t infos
5446 - exchange "SetUnsuitable" by "SetUnsuitableRun"
5447
5448 * mbadpixels/MBadPixelsCam.cc, mbadpixels/MMcBadPixelsSet.cc:
5449 - exchange "SetUnsuitable" by "SetUnsuitableRun"
5450
5451 * mbadpixels/MBadPixelsCalc.cc:
5452 - exchange "SetUnsuitable" by "SetUnsuitableEvt"
5453
5454 * manalysis/MGeomApply.cc
5455 - remove obsolete MArrivalTime
5456 - add MBadPixelsCam
5457
5458 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc]
5459 - implemented calls to MBadPixelsCam
5460
5461 * macros/calibration.C, macros/bootcampstandardanalysis.C,
5462 macros/pedphotcalc.C
5463 - implemented calls to MBadPixelsCam
5464
5465 * mjobs/MJCalibration.cc
5466 - call to MBadPixelsCam
5467
5468
5469
5470 2004/03/05: Nadia Tonello
5471
5472 * manalysis/MBlindPixelsCalc2.[h,cc], manalysis/AnalysisLinkDef.h,
5473 manalysis/Makefile
5474 - Temporary class added (will be included in mbadpixels/ soon)
5475 - All the functions of MBlindPixelCalc are kept(with small improvements)
5476 - New function added: SetCheckPedestalRms
5477
5478 * manalysis/MCerPhotPix.h
5479 - Status Unmapped added (not include the pixel in the cleaned image)
5480
5481 * mimage/MImgCleanStd.cc
5482 - Checks for Unmapped status added
5483
5484 * mastro/MAstroCatalog.cc, msql/MSQLServer.cc:
5485 - include <stdlib.h> to solve compilation error
5486
5487
5488
5489 2004/03/05: Sebastian Raducci
5490
5491 * msignal/MArrivalTimeCalc.cc
5492 - fixed a little bug (exchanged a - with a + in the Calc() method)
5493
5494
5495
5496 2004/03/05: Markus Gaug
5497
5498 * mcalib/MCalibraitonChargeCalc.cc
5499 - remove some runheader line:
5500 if (runheader->IsMonteCarloRun())
5501 return kTRUE;
5502 which gave always true since this week, don't know why.
5503 - added some information in class description
5504
5505
5506
5507 2004/03/04: Sebastian Raducci
5508
5509 * msignal/MArrivalTimeCalc.cc
5510 - fixed a memory leak (the spline was not deleted...)
5511
5512
5513
5514 2004/03/04: Thomas Bretz
5515
5516 * mgeom/MGeomCam.[h,cc]:
5517 - added new data member fNumAreas
5518 - added new function CalcNumAreas
5519 - increased class version to 3
5520
5521 * mgeom/MGeomCamMagic.cc:
5522 - added setting of area index
5523
5524 * mgeom/MGeomPix.[h,cc]:
5525 - added fAidx data member
5526 - added getter function fAidx
5527 - increased class version to 3
5528
5529 * macros/sectorvstime.C:
5530 - added example of how to plot the evolution of a sector vs time
5531
5532 * mhist/MHVsTime.[h,cc], mhist/MHPixVsTime.[h,cc]:
5533 - moved to mhvstime
5534
5535 * mhvstime/MHSectorVsTime.[h,cc]:
5536 - added
5537
5538 * Makefile:
5539 - added mhvstime
5540
5541 * mhvstime/Makefile, mhvstime/HVsTimeLinkDef.h,
5542 mhvstime/HVsTimeIncl.h:
5543 - added
5544
5545 * mhist/Makefile, mhist/HistLinkDef.h,
5546 - removed MHVsTime
5547 - removed MHPixVsTime
5548
5549 * macros/rootlogon.C, macros/dohtml.C:
5550 - added new directory mhvstime
5551
5552 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
5553 - changes such, that it doesn't crash if signal has no lo-gain
5554 (This might still give wrong results!)
5555
5556 * macros/dohtml.C:
5557 - added pixvstime.C
5558 - added sectorvstime.C
5559
5560 * manalysis/MMcCalibrationUpdate.cc:
5561 - some changes on file consistency check done by Abelardo,
5562 he may comment on it
5563
5564 * mhist/MHCamera.[h,cc]:
5565 - changed to support also dividing the camera in pixels area indices
5566
5567 * mhist/MHEvent.cc:
5568 - minor change
5569
5570 * mjobs/MJPedestal.cc:
5571 - adapted to changes in MHCamera
5572
5573 * mastro/MAstroCatalog.[h,cc]:
5574 - added preliminary catalog
5575
5576 * mastro/Makefile, mastro/AstroLinkDef.h:
5577 - added MAstroCatalog
5578
5579
5580
5581 2004/03/03: Thomas Bretz
5582
5583 * mgeom/MGeomCam.cc:
5584 - give a name and title also if the default constructor is used
5585
5586 * mgeom/MGeomMirror.[h,cc]:
5587 - added member function GetReflection
5588 - added persistent data member fReflector
5589
5590 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, mjobs/MJPedestal.cc:
5591 - fixed a typo in the output
5592
5593 * mraw/MRawFileWrite.cc:
5594 - added the missing '.' to MRawRunHeader. Because of the design of
5595 MReadTree this is backward compatible
5596
5597 * mraw/MRawRunHeader.h:
5598 - removed last change from Abelardo. '>255' is the correct
5599 check for MC files following the definition that all MC files
5600 have run types >255 which was made in the past.
5601
5602 * manalysis/MCerPhotAnal.[h,cc], manalysis/MCerPhotAnal2.[h,cc]:
5603 - created ReInit member function to hold all code (moved from
5604 PreProcess) accessing the run header. The run header is not
5605 available in PreProcess. That it was working before was only
5606 by chance, because the run type is initialized with 65535 which
5607 is != 255 but not >255.
5608
5609
5610
5611 2004/03/03: Sebastian Raducci
5612
5613 * msignal/MArrivalTimeCalc.cc
5614 - The calculation of the arrival times is made only when needed
5615 (when the HalfMax is over the pedestal)
5616
5617 * mtools/MCubicSpline.cc
5618 - Commented out an annoying warn
5619
5620
5621
5622 2004/03/03: Abelardo Moralejo
5623
5624 * mraw/MRawRunHeader.h
5625 - Replaced
5626 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by
5627 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
5628 since the latter is the exact translation of what the function
5629 intends to do. I do not know why, but the display of real data
5630 did not work with the upper line!
5631
5632 * mgeom/MGeomCam.cc
5633 - Undid yesterday change! I do not know why, display completely
5634 fails after that change, both for old and new camera files.
5635 Put back fPixels[i] = new MGeomPix; in constructor.
5636
5637
5638
5639 2004/03/02: Abelardo Moralejo
5640
5641 * mmc/MMcCorsikaRunHeader.[h,cc]
5642 - Added operator [] to get references to the objects in
5643 TObjArray fTelescopes.
5644 - Added Print() function.
5645 - Added GetNumCT() function.
5646 - Replaced
5647 fTelescopes[i]= new MGeomCorsikaCT;
5648 by
5649 MGeomCorsikaCT* dummy = new MGeomCorsikaCT();
5650 fTelescopes.Add(dummy);
5651
5652 * mgeom/MGeomCorsikaCT.[h,cc]
5653 - Added getter functions for telescope coordinates.
5654 - Added Print() function.
5655
5656 * mgeom/MGeomCam.cc => NOTE: this change was undone later!
5657 - Replaced
5658 fPixels[i] = new MGeomPix;
5659 by
5660 MGeomPix* dummy = new MGeomPix();
5661 fPixels.Add(dummy);
5662
5663
5664
5665 2004/03/02: Thomas Bretz
5666
5667 * mcalib/MCalibrateData.cc:
5668 - removed usage of MGeomCam (you have MGeomApply for this!)
5669
5670
5671
5672 2004/03/01: Nadia Tonello
5673
5674 * manalysis/MCerPhotEvt.cc
5675 - TObject *MCerPhotEvtIter::Next() now returns Used pixels
5676 only if fUsedonly=kTRUE, otherwise it returns all the pixels
5677 in the array
5678
5679
5680
5681 2004/03/01: Sebastian Raducci
5682
5683 * msignal/MArrivalTimeCalc.[cc,h]
5684 - now the arrival time is at the half max of the spline:
5685 half max = (maximum - pedestal)/2
5686
5687 * mmain/MEventDisplay.cc
5688 - fixed an include (from MArrivalTime.h to MArrivalTimeCam.h)
5689
5690
5691
5692 2004/03/01: Wolfgang Wittek
5693
5694 * mhist/MHStarMap.[h,cc]
5695 - remove bugs
5696 - change GetRotationAngle() such that it can be called from outside
5697
5698
5699
5700 2004/03/01: Thomas Bretz
5701
5702 * Makefile:
5703 - enhanced all calls to subsequent makes by '-f Makefile' to
5704 make sure the correct Makefile is called
5705
5706 * merpp.cc:
5707 - enhanced interpretation of time
5708 - fixed a bug in determin the file-type
5709
5710 * mbase/MTime.[h,cc]:
5711 - added GetGmst() member function
5712
5713 * mastro/MAstro.[h,cc]:
5714 - added Coordinate2Angle
5715 - added AngularDistance
5716 - implemented UT2GMST
5717 - replaced defined by TMath::Pi()
5718
5719 * mastro/MObservatory.[h,cc]:
5720 - added data members for sin-/cos-component of latitude
5721 - added calculation of rotation angle
5722
5723 * mhist/MHStarMap.[h,cc]:
5724 - changes to use MObservatory member function
5725
5726 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotAnal2.cc,
5727 manalysis/MCerPhotCalc.cc, manalysis/MMcCalibrationUpdate.cc,
5728 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalNSBAdd.cc,
5729 manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc,
5730 mcalib/MCalibrationChargeCalc.cc, mcalib/MMcCalibrationCalc.cc
5731 - changed to use IsMonteCarloRun() now
5732
5733 * manalysis/MMcCalibrationUpdate.cc:
5734 - unified output to log-stream
5735 - replaced sqrt by TMath::Sqrt
5736
5737 * mcalib/MCalibrationChargeCalc.cc:
5738 - unified output to log-stream
5739 - removed .Data() from TString where obsolete
5740 - fixed memory leak using gSystem->ExpandPathName
5741
5742 * mpointing/MPointingPosCalc.cc, mraw/MRawFileWrite.cc:
5743 - adde class name to used kRT*/kTT* enums
5744
5745 * mraw/MRawEvtHeader.h:
5746 - made enum data member of class
5747
5748 * mraw/MRawRunHeader.[h,cc]:
5749 - made kMagicNumber and kMaxFormatVersion a static data
5750 member of the class
5751 - added IsMonteCarloRun member function
5752
5753
5754
5755 2004/02/27: Markus Gaug
5756
5757 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
5758 - put in call to MHCamera::Projection the name of the calling
5759 class, otherwise the projected hsitogram will be overwritten by
5760 an empyt one.
5761
5762 * mcalib/MHCalibrationChargePix.[h,cc],
5763 mcalib/MHCalibrationHiGainChargePix.[h,cc],
5764 mcalib/MHCalibrationLoGainChargePix.[h,cc]:
5765 - histogram name setting and title setting moved to constructor,
5766 Functions Init and ChangeHistId derive directly from
5767 MHcalibrationChargePix
5768
5769 * mcalib/MHCalibrationChargeCam.[h,cc],
5770 mcalib/MCalibrationChargeCam.[h,cc],
5771 mcalib/MCalibrationChargeCalc.[h,cc]:
5772 - introduced "average inner" and "average outer" higain and logain
5773 pixels.
5774
5775
5776
5777 2004/02/27: Raducci Sebastian
5778
5779 * mhist/Makefile
5780 - added mastro in the include list
5781
5782
5783
5784 2004/02/27: Abelardo Moralejo
5785
5786 * mmain/MEventDisplay.cc
5787 - replaced in fill8 obsolete MArrivalTime with MArrivalTimeCam.
5788 - Updated display of MC data: removed MCerPhotCalc, and replaced
5789 it by MExtractSignal+MMcCalibrationUpdate+MCalibrate. Now
5790 MPedPhotCam is filled and all the camera display tabs are shown
5791 correctly (most were not working for MC events since a while
5792 ago).
5793
5794 * mmain/Makefile
5795 - Added mcalib to list of include directories.
5796
5797 * manalysis/MMcCalibrationUpdate.[h,cc]
5798 - Added member variable Bool_t fOuterPixelsScaling, which is
5799 kTRUE by default. If set to kFALSE, MCalibrationCam is filled
5800 such that MCerPhotEvt will later be filled with the signal as it
5801 is, not corrected for the (possibly) different gain of the outer
5802 pixels electronic chain. This option was necessary to allow for
5803 the change in the camera display (see above).
5804
5805 * macros/starmc.C
5806 - added (optional) division of output into two, for use as train
5807 and test samples in g/h separation studies.
5808
5809
5810
5811 2004/02/26: Hendrik Bartko
5812
5813 * macros/dohtml.C
5814 - included the path msignals/
5815
5816
5817
5818 2004/02/26: Abelardo Moralejo
5819
5820 * macros/starmcstereo.C
5821 - changed filters to divide data between train and test sample for
5822 gamma hadron separation studies. Now we use the modulus operator
5823 applied to (Corsika) event number:
5824 MF filter1("{MMcEvt;1.fEvtNumber%2}<0.5");
5825 MF filter2("{MMcEvt;1.fEvtNumber%2}>0.5");
5826 - cleaned up a bit the way the CT coordinates are fed to the task
5827 MStereoCalc.
5828 - Changed default FADC integration range (center range to adapt to
5829 new camera).
5830
5831
5832
5833 2004/02/26: Thomas Bretz
5834
5835 * mhist/MHCamera.cc:
5836 - fixed a function description
5837
5838 * mreport/MReport.cc, mreport/MReportFileRead.cc:
5839 - introduced return case -1
5840
5841 * Makefile.rules:
5842 - remove all dependancy files when calling 'rmdep'
5843
5844 * mbase/MAGIC.h, mmc/MMcEvt.hxx:
5845 - moved ParticleId_t to MMcEvt
5846 - implemented MMcEvt::GetParticleName
5847 - implemented MMcEvt::GetEnergyStr
5848
5849 * mfilter/MFGeomag.cc, mfilter/MFParticleId.cc, mhist/MHCompProb.cc,
5850 mhist/MHEvent.cc, mhist/MHHadronness.cc,
5851 mmontecarlo/MMcTriggerRateCalc.cc, mranforest/MHRanForest.cc:
5852 - fixed usage of ParticleId_t
5853
5854 * msignal/Makefile:
5855 - removed obsolete includes
5856
5857 * mastro/Makefile, mastro/AstroLinkDef.h, mastro/MAstro.[h,cc],
5858 mastro/MObservatory.[h,cc]:
5859 - added
5860
5861 * mbase/MAstro.[h,cc]:
5862 - removed
5863
5864 * mbase/Makefile, mbase/BaseLinkDef.h:
5865 - removed MAstro
5866
5867 * Makefile:
5868 - added mastro
5869 - added msql
5870 - added mfbase
5871
5872 * mtemp/MObservatory.[h,cc], mtemp/MObservatoryLocation.[h,cc]:
5873 - removed
5874
5875 * merpp.cc:
5876 - added Sql support
5877
5878 * mraw/MRawFileRead.h:
5879 - added GetFileName
5880
5881 * msql/Makefile, msql/SqlLinkDef.h, msql/SqlIncl.h,
5882 MSQLServer.[h,cc], MSqlInsertRun.[h,cc]:
5883 - added
5884
5885 * mfilter/MF.[h,cc], mfilter/MFDataChain.[h,cc],
5886 mfilter/MFDataMember.[h,cc], mfilter/MFEventSelector.[h,cc],
5887 mfilter/MFEventSelector2.[h,cc], mfilter/MFRealTimePeriod.[h,cc]:
5888 - moved to mfbase
5889
5890 * mfbase/Makefile, mfbase/FBaseLinkDef.h, mfbase/FBaseIncl.h:
5891 - added
5892
5893 * merpp.cc:
5894 - implemented control of gDebug (root debugging)
5895
5896 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc],
5897 mfileio/MWriteRootFile.[h,cc]:
5898 - implemented CheckAndWrite return value
5899
5900 * mfileio/MWriteRootFile.cc:
5901 - fixed updating already existing branches (eg concatenating report
5902 files)
5903
5904 * macros/dohtml.C, macros/rootlogon.C:
5905 - added mastro
5906 - added mfbase
5907 - added msql
5908
5909 * mraw/MRawEvtHeader.h:
5910 - implemented GetNumTrigLvl1
5911 - implemented GetNumTrigLvl2
5912
5913
5914
5915 2004/02/25: Markus Gaug
5916
5917 * mcalib/MExtractBlindPixel.[h,cc],
5918 mcalib/MExtractPINDiode.[h,cc],
5919 mcalib/MExtractedSignalBlindPixel.[h,cc],
5920 mcalib/MExtractedSignalPINDiode.[h,cc],
5921 mcalib/Makefile, msignal/Makefile, mcalib/CalibLinkDef.h,
5922 msignal/SignalLinkDef.h:
5923 - moved blindpixel and PINdiode extractors to msignal
5924
5925
5926 * mcalib/MCalibrationQECam.[h,cc], mcalib/MCalibrationQEPix.[h,cc]:
5927 - two new classes to hold the quantum efficieny information of the
5928 calibration
5929
5930 * msignal/MArrivalTimeCalc.[h,cc]
5931 - fill now MArrivalTimePix instead of MArrivalTime
5932
5933 * mcalib/MHCalibrationChargeCam.cc
5934 - display only valid pixels for the corr. values in GetPixelContent
5935
5936 * mcalib/MHCalibrationRelTimeCam.cc
5937 - is now filled from MArrivalTimeCam instead of MArrivalTime
5938
5939 * macros/calibration.C
5940 - divided into two macros: calibration.C using the MJPedestal
5941 standard procedure and pedestalstudies.C using the old
5942 procedures
5943
5944 * macros/pedestalstudies.C
5945 - new macro containing the first previous part of calibration.C
5946
5947 * mcalib/MCalibrationChargeBlindPix.h,
5948 mcalib/MCalibrationChargePINDiode.h, mbase/MAGIC.h,
5949 mjobs/MJCalibration.cc:
5950 - definition of PulserColot_t in MAGIC.h.
5951
5952
5953
5954 2004/02/25: Hendrik Bartko
5955
5956 * macros/rootlogon.C
5957 - set the include path also to msignals/
5958
5959 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractSignal2.[h,cc],
5960 manalysis/MExtractedSignalCam.[h,cc],
5961 manalysis/MExtractedSignalPix.[h,cc],
5962 manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc],
5963 manalysis/MArrivalTimeCalc2.[h,cc]:
5964 - removed
5965
5966 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
5967 - removed classes mentioned above
5968
5969 * msignal/MExtractSignal.[h,cc], msignal/MExtractSignal2.[h,cc],
5970 msignal/MExtractedSignalCam.[h,cc],
5971 msignal/MExtractedSignalPix.[h,cc],
5972 msignal/MArrivalTime.[h,cc], msignal/MArrivalTimeCalc.[h,cc],
5973 msignal/MArrivalTimeCalc2.[h,cc]:
5974 - added
5975
5976 * msignal/Makefile, msignal/AnalysisLinkDef.h:
5977 - added classes mentioned above
5978
5979 * mfilter/Makefile, mcalib/Makefile, mjobs/Makefile, mmain/Makefile:
5980 - added include msignal
5981
5982
5983
5984
5985 2004/02/25: Wolfgang Wittek
5986
5987 * mcalib/MCalibrateData.[h,cc]
5988 - initialize size for MPedPhotCam
5989
5990
5991
5992 2004/02/24: Wolfgang Wittek
5993
5994 * manalysis/MSourcPosfromStarPos.[h,cc]
5995 - change member function SetSourceAndStarPosition() to expect sky
5996 coordinates in the standard units
5997 - generalize to more than 1 star
5998 - the class is not yet fully tested
5999
6000 * mfilter/MFSelBasic.[h,cc]
6001 - change default values of cuts
6002
6003
6004
6005 2004/02/24: Markus Gaug
6006
6007 * mjobs/MJCalibration.cc, macros/calibration.C,
6008 macros/bootcampstandardanalysis.C, macros/pedphotcalc.C:
6009 - added MCalibrationChargeBlindPix to plist
6010 - added new filling of histograms with MFillH
6011 - changed SetPulserColor to MCalibrationChargeBlindPix and
6012 MCalibrationChargePINDiode
6013
6014 * mcalib/MHCalibrationChargeBlindPix.[h,cc]:
6015 - receives a pointer to MCalibrationChargePINDiode which is filled
6016 with the results and told to calculate the fluxes in the
6017 Finalize function
6018 - is filled via MFillH from MExtractBlindPixel
6019 - SetPulserColor directly in this class
6020
6021 * mcalib/MCalibrationChargeBlindPix.[h,cc]
6022 - new storage container of the blind pxiel resutls, replaces
6023 MCalibrationBlindPix
6024
6025 * mcalib/MCalibrationChargeCalc.[h,cc]:
6026 - does not fill the histograms any more, but does ony the
6027 calculations in the postprocess. No pointer to MExtractPINDidoe
6028 or MExtractBlindPixel any more.
6029
6030 * mcalib/MCalibrationChargePix.cc
6031 - discovered an error in the calculation of phe's in
6032 CalcFFactorMethod(). The average QE was applied twice.
6033 This error had been introduced on 13/02/04
6034 - loosened criterium convFFactorRelErrLimit from 0.1 to 0.2
6035 - CalcFFactor asks for IsChargeValid before calculating anything
6036
6037 * mcalib/MCalibrationChargePINDiode.[h,cc]
6038 - added function SetFluxOutsidePlexiglassAvailable
6039 - SetPulserColor directly in this class
6040
6041 * mcalib/MCalibrationChargeCam.cc
6042 - removed function SetPulserColor from here
6043
6044 * mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationConfig.h,
6045 mcalib/MHCalibrationPINDiode.[h,cc],
6046 mcalib/MCalibrationBlindPix.[h,cc],
6047 mcalib/MHCalibrationBlindPixel.[h,cc]:
6048 - removed since obsolote
6049
6050 * mcalib/MHCalibrationChargePix.cc
6051 - make fPickup an Int_t
6052
6053 * mcalib/MCalibrate.cc
6054 - test validity of every calibration method before retrieving
6055 conversion factors
6056
6057 * mcalib/MHGausEvents.[h,cc]
6058 - add possibility to set fit ranges in call to FitGaus
6059 - make function CreateXaxis protected
6060
6061
6062
6063 2004/02/23: Markus Gaug
6064
6065 * mraw/MRawEvtPixelIter.h
6066 - include GetNumHiGainSamples and GetNumLoGainSamples
6067
6068 * mcalib/MExtractedSignalBlindPixel.h,
6069 mcalib/MExtractBlindPixel.[h,cc]:
6070 - included storage of pedestal
6071
6072 * mcalib/MHGausEvents.[h,cc]
6073 - make the fit functions protected
6074
6075
6076
6077 2004/02/22: Markus Gaug
6078
6079 * mfilter/MFCosmics.[h,cc]
6080 - fMaxNumEmpty changed from absolute number to relative number of
6081 pixels
6082
6083 * mcalib/MHGausEvents.h
6084 - remove the "->" from the pointers which are initialized only
6085 in certain cases. The streamer did not work in case that
6086 MFGausFit was left at the NULL pointer.
6087
6088
6089
6090 2004/02/21: Markus Gaug
6091
6092 * manalysis/MExtractedSignalPix.[h,cc]
6093 - changed variable fIsLoGainUsed to fLoGainUsed
6094 - added function GetNumHiGainSaturated()
6095
6096
6097 2004/02/20: Markus Gaug
6098
6099 * mcalib/MHCalibrationChargeHiGainPix.[h,cc], mcalib/Makefile,
6100 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
6101 mcalib/CalibLinkDef.h
6102 - new class to replace MHCalibrationPixel,
6103 based on MHCalibrationChargePix
6104
6105 * mcalib/MCalibrationChargeCalc.[h,cc]
6106 mcalib/MCalibrationChargeCam.[h,cc]
6107 mcalib/MCalibrationChargePix.[h,cc]
6108 mcalib/MCalibrationChargePINDiode.[h,cc]
6109 mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
6110 mcalib/MCalibrationPINDiode.[h,cc]:
6111 - added the "charge" versions, remove the old ones. The histograms
6112 should be filled in the MH... versions independently of
6113 MCalibrationChargeCalc. This is fully realized for the PIN Didoe
6114 now and will later be so for the pixels and the blind pixel.
6115
6116 * mcalib/MHCalibrationChargePINDiode.[h,cc]
6117 - receives a pointer to MCalibrationChargePINDiode which is filled
6118 with the results and told to calculate the fluxes in the
6119 Finalize function
6120
6121 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc],
6122 mcalib/MMcCalibrationCalc.[h,cc], mjobs/MJCalibration.[h,cc],
6123 manalysis/MMcCalibrationUpdate.[h,cc],
6124 mjobs/MJExtractSignal.[h,cc], manalysis/MGeomApply.cc,
6125 mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C,
6126 macros/bootcampstandardanalysis.C,
6127 macros/pedphotcalc.C:
6128 - replace MCalibrationCam by MCalibrationChargeCam
6129 - replace MCalibrationCalc by MCalibrationChargeCalc
6130
6131
6132
6133 2004/02/19: Markus Gaug
6134
6135 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc,
6136 mcalib/MCalibrate.cc, mcalib/MCalibrateDate.cc,
6137 manalysis/MMcCalibrationUpdate.cc:
6138 - standardized naming of variables containing "Error", this also affected
6139 the calling functions MCalibrate, MMcCalibrationUpdate and MCalibrateData
6140
6141 * mcalib/MCalibrationCam.cc, mcalib/MCalibrationPix.cc,
6142 mcalib/MCalibrationCalc.cc, mcalib/MCalibrate.cc,
6143 mcalib/MCalibrateData.cc, mcalib/MCalibrationConfig.h:
6144 - took out some configuration numbers and put them directly into
6145 the class
6146 - remove completely MCalibrationConfig.h
6147
6148
6149
6150 2004/02/19: Abelardo Moralejo
6151
6152 * mhist/MHEvent.[h,cc]:
6153 - Changed names of Event "types" to make them more descriptive.
6154 Former kEvtSignal is now called kEvtSignalDensity, and indicates
6155 pixel content scaled by area. Added kEvtSignalRaw, which
6156 corresponds to pixel content (with no scaling) in whatever units
6157 (this depends on how the MHEvent object is filled!). The default
6158 constructor initializes type=kEvtSignalRaw.
6159
6160 * mmain/MEventDisplay.cc
6161 - Changed filling of evt1 and evt2. Now they are filled with raw
6162 content of MCerPhotEvt. Since in MEventDisplay, MCerPhotEvt is
6163 still filled uncalibrated (hence in ADC counts), this means that
6164 what will be now shown in Mars' camera display is now the signal
6165 in each pixel without scaling with pixel area. Given that the
6166 default flat fielding is such that equal light density
6167 corresponds to equal absolute signal (in ADC counts), this is
6168 more reasonable, and allows to check for instance how the
6169 relative pixel gains are adjusted by looking at calibration
6170 events. To be FIXED: there is however an "inconsistency" in
6171 MEventDisplay, and it is that MCerPhotEvt is still used to keep
6172 uncalibrated signals. To be replaced by MExtractedSignalCam?
6173
6174
6175
6176 2004/02/19: Thomas Bretz
6177
6178 * manalysis/MCerPhotEvt.h:
6179 - added operator= to MCerPhotEvtIter -- is this correct?
6180
6181 * mhist/MHCamera.[h,cc]:
6182 - added member function to calculate minimum content and
6183 maximum content for a single sector
6184 - Added possibility to get a projection for a single sector.
6185 - GetMinimum/GetMaximum now only takes used pixels into account
6186 (you can request all pixels using a different member function)
6187 - fixed projection (projection only took pixels with contents!=0
6188 instead of 'used' pixels
6189 - Don't call Sumw2() anymore for projection
6190
6191 * mjobs/MJPedestal.cc:
6192 - added MPedestalCam to output again - MPedestalCam was fixed
6193 yesterday
6194 - Added Histograms for the two camera halves
6195
6196
6197
6198 2004/02/18: Markus Gaug
6199
6200 * macros/calibration.C
6201 - fixed a buggy display of the F-Factor method
6202
6203 * mcalib/MCalibrationCalc.cc
6204 - calculate the F-Factor method already in the post-Process
6205
6206 * mcalib/MCalibrationPix.h
6207 - move CalcFFactorMethod to public
6208
6209
6210
6211 2004/02/18: Abelardo Moralejo
6212
6213 * mtools/MCubicSpline.cc
6214 - in Init, corrected initialization of arrays temp and ysd, which
6215 was done with n-1 elements instead of n.
6216
6217 * mgui/MHexagon.cc
6218 - added comment explaining the algorithm.
6219 - changed explicit values of Sin and Cos 60 degrees by const
6220 variables (more readable).
6221
6222
6223
6224 2004/02/18: Hendrik Bartko
6225
6226 * msignal/:
6227 - removed the backup files *~
6228 - removed the object files *.o
6229 - removed the files SignalCint.*
6230
6231 * mgui/MHexagon.cc
6232 - added comment explaining the algorithm.
6233
6234
6235
6236 2004/02/18: Thomas Bretz
6237
6238 * manalysis/MPedestalCam.[h,cc]:
6239 - Changed order of derivements - seems to be VERY important!
6240 - changed GetSize from UInt_t to Int_t which is the type
6241 of TClonesArray::GetSize() !
6242
6243 * mfileio/MReadReports.cc:
6244 - skip trees with no entries
6245
6246 * mgui/MCamEvent.cc:
6247 - added a comment
6248
6249 * mhbase/MFillH.cc:
6250 - in case SetupFill returns kFALSE and kCanSkip is set
6251 Skip task
6252
6253 * mraw/MRawFileRead.cc:
6254 - don't print warning in case of none executions
6255
6256 * manalysis/MArrivalTimeCalc2.cc:
6257 - added some const-qualifiers
6258
6259
6260
6261 2004/02/17: Raquel de los Reyes
6262
6263 * macros/CCDataCheck.C
6264 - Added some improvements in the plots.
6265
6266
6267
6268 2004/02/17: Abelardo Moralejo
6269
6270 * macros/readrfl.C
6271 - Added missing gPad->cd(1), otherwise the display of events was
6272 not updated.
6273
6274 * mgui/MHexagon.cc
6275 - DistanceToPrimitive(Float_t px, Float_t py) Changed check of
6276 whether px,py is inside the pixel or not. Previous algorithm
6277 was just an approximation.
6278
6279
6280
6281 2004/02/17: Raquel de los Reyes
6282
6283 * mcamera/MCameraHV.h
6284 - Now it derives from a MCamEvent class and implemented the
6285 GetPixContent() and DrawPixelContent() functions. Added the
6286 GetMean function to get the mean HV settings of the camera.
6287
6288 * macros/CCDataCheck.C
6289 - Added the HV settings plots.
6290
6291
6292
6293 2004/02/17: Hendrik Bartko
6294
6295 * msignal:
6296 - new: directory for all signal and time extraction classes
6297
6298 * msignal/MArrivalTimeCam.[h,cc], manalysis/Makefile,
6299 msignal/AnalysisLinkDef.h, MGeomApply.cc:
6300 - new: Storage Container for the ArrivalTime in the camera
6301
6302 * msignal/MArrivalTimePix.[h,cc], manalysis/Makefile,
6303 msignal/AnalysisLinkDef.h:
6304 - new: Storage Container for ArrivalTime information of one pixel
6305
6306 * msignal/Makefile, SignalCint.[h,cc], SignalDep.d, SignalIncl.h,
6307 SignalLinkDef.h
6308 - auxiliary files for msignal directory
6309
6310 * manalysis/MArrivalTimeCalc2.[h,cc]:
6311 - added functionality to compute error of the extracted ArrivalTime
6312 - calculated ArrivalTime is stored in MArrivalTimeCam
6313
6314 * manalysis/MGeomApply.cc
6315 - geometry is applied to MArrivalTimeCam
6316
6317 * Makefile:
6318 - directory msignal is included
6319
6320
6321
6322 2004/02/17: Sebastian Raducci
6323
6324 * mtools/MCubicSpline.[h,cc]
6325 - little corrections in minimums evalustion methods
6326 - changed constructors (they require the fadc slices to be const)
6327
6328 * macros/spline.C
6329 - changed according to the MCubicSpline new constructors
6330
6331 * manalysis/MArrivalTimeCalc.[h,cc]
6332 - changed to use the MCubicSpline class intead of the TSpline class
6333 - warning: now the arrival time is again the maximum of the spline,
6334 soon it will be changed to half maximum
6335
6336
6337
6338 2004/02/17: Wolfgang Wittek
6339
6340 * manalysis/MSourcPosfromStarPos.[h,cc]
6341 - new class; calculates the position of the source in the camera from
6342 the position of a star in the camera and puts it into
6343 MSrcPosCam
6344
6345
6346
6347 2004/02/16: Abelardo Moralejo
6348
6349 * mcalib/MMcCalibrationCalc.cc
6350 - Fixed two typos in screen output.
6351
6352
6353
6354 2004/02/16: Markus Gaug
6355
6356 * mcalib/MCalibrationPix.cc
6357 - documentation from David's email added
6358 - EffectiveQE decreased from 0.2 to 0.18 (see documentation)
6359
6360 * mcalib/Makefile, mcalib/CalibLinkDef.h:
6361 - added MExtractBlindPixel and MExtractedSignalBlindPixel
6362
6363 * mcalib/MExtractBlindPixel.[h,cc]
6364 - new signal extractor for the Blind Pixel
6365
6366 * mcalib/MExtractedSignalBlindPixel.[h,cc]
6367 - new container for the extracted signal of the BlindPixel
6368
6369 * mcalib/MCalibrationCalc.[h,cc]
6370 - does not extract signal from Blind Pixel any more, searches
6371 for MExtractedSignalBlindPixel and fills the hists from there
6372
6373 * macros/calibration.C, macros/bootcampstandardanalysis.C,
6374 macros/pedphotcalc.C, mjobs/MJCalibration.cc:
6375 - introduce the blind pixel and PIN diode extraction in the macro
6376
6377 * manalysis/MPedestalCam.h
6378 - changed type of fTotalEntries from ULong_t to UInt_t
6379 - fixed documentation of fTotalEntries
6380
6381 * manalysis/MPedCalcPedRun.h
6382 - changed type of fNumSamplesTot from ULong_t to UInt_t
6383
6384 * mcalib/MHGausEvents.h
6385 - changed type of fCurrentSize from ULong_t to UInt_t
6386
6387 * mcalib/MCalibrationConfig.h
6388 - removed gkConversionHiLo and gkConversionHiLoErr which is now
6389 directly in the class MCalibrationPix
6390
6391
6392
6393 2004/02/16: Thomas Bretz
6394
6395 * manalysis/AnalysisLinkDef.h:
6396 - added missing MCerPhotEvtIter
6397
6398 * merpp.cc:
6399 - added possible usage of database
6400
6401 * star.cc:
6402 - moved source code into new class MJStar - preliminary
6403
6404 * manalysis/MCerPhotPix.cc:
6405 - updated class header
6406 - fixed Print-output
6407
6408 * mbase/MAGIC.h:
6409 - removed definition of MLog
6410
6411 * mbase/MArgs.h:
6412 - removed include of MAGIC.h
6413
6414 * mbase/MLog.h:
6415 - added extern definition of gLog
6416
6417 * mbase/MParContainer.[h,cc]:
6418 - move body of constructors to source file
6419
6420 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
6421 mraw/MRawCrateArray.cc, mraw/MRawCrateData.cc,
6422 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawRead.cc,
6423 mraw/MRawEvtPixelIter.cc, mraw/MRawFileWrite.cc:
6424 - fixed documentation header
6425
6426 * mcalib/MMcCalibrationCalc.[h,cc]:
6427 - fixed documentation header
6428 - fixed usage of FindCreateObj and FindObject
6429 - removed data member to count entries (use histogram instead)
6430 - use TH1 function Integral instead of doing it manually
6431
6432 * mfilter/MFCosmics.cc:
6433 - fixed documentation
6434
6435 * mimage/MHillas.cc, mimage/MImgCleanStd.cc,
6436 mimage/MNewImagePar.[h,cc]:
6437 - replaced for-loops by Iterators
6438
6439 * mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc:
6440 - fixed documentation header
6441 - check return value of MRawRunHeader::ReadEvt
6442
6443 * mraw/mraw/MRawRunHeader.[h,cc]:
6444 - fixed documentation header
6445 - added return value to MRawRunHeader::ReadEvt
6446 - added constant number for max format version - preliminary
6447 (should by a static data member)
6448
6449 * mcalib/MHCalibrationPINDiode.cc:
6450 - do not delete pointers in the destructor which are already
6451 deleted in the base class
6452 - reset histograms in Clear()
6453
6454 * mcalib/MHCalibrationPixel.cc:
6455 - after deletion of instances in Clear() initialize pointer to NULL
6456
6457 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
6458 - fixed usage of logging stream output levels
6459
6460 * manalysis/MPedCalcPedRun.[h,cc]:
6461 - removed obsolete fSignals
6462
6463 - removed obsolete fNumPixels
6464
6465 * manalysis/MPedestalCam.h:
6466 - added '->' to fArray
6467
6468 * mfileio/MWriteRootFile.cc:
6469 - changed some output to make debugging easier
6470
6471 * mjobs/MJCalibration.cc:
6472 - fixed a bug in drawing
6473
6474 * mjobs/MJExtractSignal.cc:
6475 - removed MPedestalCam from MWriteRootFile output.
6476 When creating the branch it crashes - reason unknown I'll
6477 investigate further
6478
6479
6480
6481 2004/02/16: Markus Gaug
6482
6483 * mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C:
6484 - added MHCalibrationRelTimePix
6485
6486 * mcalib/MHCalibrationRelTimePix.[h,cc],
6487 mcalib/MHCalibrationRelTimeCam.[h,cc]:
6488 - new classes to fit and display the relative arrival times.
6489 - filled from MArrivalTime
6490 - need: MFillH("MHCalibrationRelTimeCam","MArrivalTime")
6491
6492 * manalysis/MCalibrationCalc.cc
6493 - take out all uncommented code referring to the relative arrival time
6494
6495 * manalysis/MArrivalTime.h
6496 - changed function GetNumPixels to GetSize
6497
6498 * macros/bootcampstandardanalysis.C, macros/pedphotcalc.C
6499 - included cosmics rejection which was in MCalibrationCalc before
6500
6501
6502
6503 2004/02/14: Markus Gaug
6504
6505 * mcalib/Makefile, mcalib/CalibLinkDef.h:
6506 - added MHCalibrationChargePINDiode
6507
6508 * mcalib/MHCalibrationChargePINDiode.[h,cc]
6509 - new class to fill the PIN Diode histograms. Derives from
6510 MHCalibrationChargePix and is filled with MFillH from the
6511 container MExtractedSignalPINDiode.
6512 Will replace MHCalibrationPINDiode entirely soon.
6513
6514 * mcalib/MHCalibrationChargePix.[h,cc]
6515 - new base class for the calibration charges histogram pixel.
6516 Derives from MH and can be filled with the MH with the MH
6517 functions.
6518
6519 * mcalib/MExtractPINDiode.[h,cc]
6520 - new signal extractor for the PIN Diode
6521
6522 * mcalib/MExtractedSignalPINDiode.[h,cc]
6523 - new container for the extracted signal of the PIN Diode
6524
6525 * mcalib/MCalibrationCalc.[h,cc]
6526 - remove the PIN Diode signal extraction
6527
6528 * manalysis/MHPedestalPix.[h,cc]
6529 - new version of MHPedestalPixel, deriving from MHGausEvents.
6530
6531 * manalysis/MHPedestalPixel.[h,cc]
6532 - old version removed, since obsolete (and erroneous)
6533
6534 * manalysis/MHPedestalCam.[h,cc]
6535 - histogramming part of MPedestalCam now in own class
6536
6537 * manalysis/MPedestalPix.h
6538 - removed include of MHPedestalPixel
6539
6540 * macros/calibration.C
6541 - changed pedestal displays accordingly
6542
6543 * mjobs/MJPedestal.h
6544 - class TCanvas included (did not compile otherwise)
6545
6546 * mhbase/MH.cc
6547 - included call to FindGoodLimits(..) in CutEdges()
6548 - axe from pointer to reference
6549 - "CutEdges" renamed to "StripZeros"
6550
6551 * manalysis/MHPedestalPixel.cc, mcalib/MHCalibrationPixel.cc,
6552 mcalib/MHCalibrationBlindPixel.cc:
6553 - "CutEdges" renamed to "StripZeros"
6554
6555 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
6556 - replaced by the improved version: MHGausEvents.[h,cc]
6557
6558
6559
6560 2004/02/14: Thomas Bretz
6561
6562 * manalysis/MCerPhotEvt.[h,cc]:
6563 - added 'Iterator' facility, this will replace some for-loops
6564 in the near future
6565
6566 * mbase/MTime.[h,cc]:
6567 - added a more powerfull interface to get and interprete the
6568 MTime contents as string
6569 - added a new constructor
6570
6571 * mreport/MReportTrigger.h:
6572 - fixed GetPixContent
6573
6574 * mtools/MCubicCoeff.cc, mtools/MCubicSpline.[h,cc]:
6575 - many small changes to simple details (like order of includes)
6576 - some speed improvements
6577 - many small simplifications
6578 - changed parts of the code to be more C++ like (eg Iterators
6579 instead of for-loops)
6580 - disentangles some if-cases
6581 - replaced some math.h function by TMath::
6582 - removed data-member fN (obsolete with iterators)
6583
6584
6585
6586 2004/02/13: Wolfgang Wittek
6587
6588 * mcalib/MCalibrateData.[h,cc]
6589 - new class;
6590 like MCalibrate, but in ReInit it fills the MPedPhot container
6591 using informations from MPedestal, MExtracteSignalCam and
6592 MCalibrationCam
6593
6594 * mcalib/Makefile, mcalib/CalibLinkDef.h
6595 - added MCalibrateData
6596
6597 * manalysis/MPedestalWorkaround.[h,cc]
6598 - create MMcEvt container and fill with theta = 10.0
6599 - set pedestalRMS = 0. if it is > 10.0
6600
6601 * manalysis/MSupercuts.[h,cc]
6602 - change default values of parameters
6603
6604 * manalysis/MSupercutsCalc.[h,cc]
6605 - change dNOMLOGSIZE from 4.1 to 5.0
6606
6607 * mhist/MHBlindPixels.[h,cc]
6608 - change MPedestalCam to MPedPhotCam
6609
6610 * mhist/MHSigmaTheta.[h,cc]
6611 - automatic binning for pixel number doesn't work
6612 use default binning
6613
6614
6615
6616 2004/02/13: Markus Gaug
6617
6618 * mcalib/MCalibrationPix.[h,cc]
6619 - added variables gkAverageQE, gkAverageQEErr, and fAverageQE,
6620 fAverageQEErr
6621 - gkAverageQE initializes to 0.2 (according to David)
6622 - gkAverageQEErr initializes to 0.02 (dito)
6623 - added new member function: SetAverageQE
6624 - call to GetMeanConversionFFactorMethod returns:
6625 fMeanConversionFFactorMethod/fAverageQE.
6626 - call to GetErrorConversionFFactorMethod returns:
6627 errors of fMeanConversionFFactorMethod and fAverageQEErr added
6628 quadratically
6629
6630 * mcalib/Makefile
6631 - split into two parts one comment line
6632
6633
6634 2004/02/13: Thomas Bretz
6635
6636 * mbadpixels/MBadPixelsTreat.[h.cc]:
6637 - added for new bad pixel treatment
6638
6639 * mbadpixels/Makefile, mbadpixels/BadPixelsLinkDef.h:
6640 - added MBadPixelsTreat
6641
6642 * merpp.cc:
6643 - changed the name of the "DC" tree to "Currents" to make
6644 MReportRead work correctly with this tree
6645
6646 * mbase/MTime.[h,cc]:
6647 - Changed UpDMagicTime to support nanosec instead of millisec
6648 - exchanged Reset() by Clear() not to clear the yy/mm/dd
6649 information away in an eventloop
6650
6651 * mraw/MRawEvtHeader.[h,cc]:
6652 - implemented decoding of the time-stamp for raw-data files
6653 with version>2. Thanks to Marcos.
6654
6655 * mraw/MRawRead.[h,c]:
6656 - pipe file version number to MRawEvtHeader::ReadEvt
6657 - create fake time for file-version<3
6658
6659 * macros/readMagic.C:
6660 - changed to use MInteractiveTask
6661
6662 * mbase/MPrint.cc:
6663 - fixed debugging level of some output
6664
6665 * mhist/MHCamera.[h,cc]:
6666 - fixed handling in AddNotify (necessayr due to change of
6667 inheritance from MCamEvent)
6668 - replaced cout by gLog
6669 - added fNotify to list of cleanups
6670
6671 * mhist/MHEvent.cc, mjobs/MJCalibration.cc,
6672 mjobs/MJPedestal.cc:
6673 - fixed usage of AddNotify
6674
6675 * mfileio/MReadReports.cc:
6676 - use a different way to determin whether the tree is a valid tree,
6677 skip invalid trees
6678
6679 * mfileio/MReadTree.cc:
6680 - added another sanity check at the beginning of PreProcess
6681
6682 * mhbase/MFillH.[h,cc]:
6683 - added bit kCanSkip which skips MFillH in case the necessary container
6684 wasn't found.
6685 - cd into the corresponding canvas before filling the MH
6686
6687
6688
6689 2004/02/12: Markus Gaug
6690
6691 * mbase/MArray.[h,cc]:
6692 - changed name of StripZeros
6693
6694 * mcalib/MHGausEvent.cc:
6695 - corrected call to StripZeros
6696
6697 * mcalib/MCalibrationPix.[h,cc]
6698 - implemented dummy for combined method
6699
6700 * mcalib/MCalibrate.[h,cc]
6701 - implemented a dummy for calibration factor 1. (requested by
6702 Javier Rico)
6703 - implemented combined method
6704 - check for valid methods moved to ReInit
6705
6706 * mcalib/MCalibrationCalc.cc
6707 - removed initialization of non-used nsamples
6708
6709 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.[h,cc],
6710 mcalib/MCalibrationCalc.[h,cc]
6711 macros/calibration.C
6712 - implemented new histograms:
6713 HSinglePheFADCSlices and HPedestalFADCSlices
6714 They are filled with the FADC slice values of either a s.phe.
6715 event or a pedestal event. The decision is taken with the
6716 variable: MCalibrationCalc::fBlindPixelSinglePheCut, to be set
6717 with a setter
6718
6719 * mtools/MFFT.[h,cc]
6720 - PowerSpectrumDensity of TArrayI implemented
6721
6722
6723
6724 2004/02/12: Thomas Bretz
6725
6726 * mbase/MArray.[h,cc]:
6727 - changed argument of CutEdges from pointer to reference
6728
6729 * mgeom/MGeomPix.h:
6730 - fixed calculation of area of pixel. It was too big for a
6731 factor of 2
6732
6733 * mjobs/MJCalibration.cc:
6734 - slight change of name of a MHCamera
6735
6736 * manalysis/MExtractSignal.cc:
6737 - slight change to the creation of the satpixels list
6738
6739 * mcalib/MHCalibrationBlindPixel.cc, mcalib/MHCalibrationPixel.cc,
6740 mcalib/MHGausEvent.cc:
6741 - corrected call to ProjectArray
6742 - corrected call to CutEdges
6743
6744 * mfilter/MFCosmics.[h,cc]:
6745 - small fixes to logging output
6746 - small simplification to return statement
6747 - declared CosmicsRejection const
6748
6749 * mhbase/MH.[h,cc]:
6750 - changed argument of ProjectArray from pointer to reference
6751 - added missing calcualtion of minimum
6752 - removed obsolete SetEntries
6753 - changed SetDirectory from NULL to gROOT
6754
6755
6756
6757 2004/02/12: Javier L�ez
6758
6759 * macros/pointspreadfunction.C
6760 - added new macro that fits with a 2D gaussian the DC spot for an
6761 star. It gives you the RMS of the PSF and the center of the star,
6762 very useful for misspointing studies.
6763
6764
6765
6766 2004/02/11: Hendrik Bartko
6767
6768 * manalysis/MExtractSignal2.cc:
6769 - introduced a validity check for the set-function of the window
6770 size (even number of slices, WindowSize < NumberSlices)
6771
6772 * manalysis/MArrivalTimeCalc2.[h,cc], manalysis/Makefile,
6773 manalysis/AnalysisLinkDef.h:
6774 - new: introduced the calculation of the arrival time as the signal
6775 weighted mean of the time slices in the maximum window
6776
6777
6778
6779 2004/02/11: Markus Gaug
6780
6781 * mcalib/MCalibrationCalc.cc:
6782 - the blind pixel signal extractor introduced one week ago, counted
6783 one FADC slice too little, thus the normalization w.r.t. pedestals
6784 was wrong. Now corrected.
6785
6786 * manalysis/MExtractSignal.cc, manalysis/MExtractSignal2.cc:
6787 - when "WARNING - Lo Gain saturated" occurs, display also the
6788 corr. pixel numbers.
6789
6790 * mbase/MArray.[h,cc]:
6791 - introduced function to cut array edges with zeros.
6792 (Thomas, should we keep it there or move it to another class? )
6793
6794 * mcalib/MCalibrationCalc.[h,cc]:
6795 - new function SetBlindPixelRange to set start and end of FADC slices
6796 used for the blind pixel signal extraction.
6797 - remove fEvents which are not necessary any more after the shift
6798 to MFCosmics.
6799
6800 * mcalib/MHCalibration(Blind)Pixel.[h,cc]:
6801 - show the fourier spectrum now with axes in frequency [Hz] instead
6802 of inverted events.
6803
6804 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
6805 - new base class for all kind of events with variables having a
6806 Gaussian distribution. Will serve as base class for the
6807 existing and new calibration histogram classes.
6808
6809
6810
6811 2004/02/11: Abelardo Moralejo
6812
6813 * mmain/MEventDisplay.cc
6814 - Switched order of MMcPedestalCopy and MCerPhotCalc in tasklist:
6815 MMcPedestalCopy must be executed earlier!
6816
6817
6818
6819 2004/02/10: Raquel de los Reyes
6820
6821 * mhist/MHPixVsTime.[h,cc]:
6822 - Added a default draw function and replaced the TGraph object
6823 by a pointer to a TGraph object.
6824
6825 * mreport/MReportTrigger.h:
6826 - Now it dereives from a MCamEvent class and implemented the
6827 GetPixContent() and DrawPixelContent() functions.
6828
6829 * maccros/CCDataCheck.C:
6830 - An update of the previous macro. New plots: subsystems status and
6831 macrocells trigger.
6832
6833
6834
6835 2004/02/10: Markus Gaug
6836
6837 * mcalib/MCalibrationCam.cc:
6838 - fixed documentation
6839
6840 * mhbase/MH.[h,cc]:
6841 - new function ProjectArray
6842
6843 * mcalib/MHCalibrationPixel.[h,cc],
6844 mcalib/MHCalibrationBlindPixel.[h,cc]:
6845 - use ProjectArray from MH to plot the projection of the fourier
6846 spectrum
6847
6848 * mfilter/MFCosmics.[h,cc], mfilter/Makefile,
6849 mfilter/FilterLinkDef.h:
6850 - new filter removing cosmics, the same as in MCalibrationCalc
6851 where it was removed now.
6852 Call: MFCosmics cosmics;
6853 MContinue cont(&cosmics);
6854 tlist.AddToList(&cont);
6855
6856 * mcalib/MCalibrationCalc.[h,cc]:
6857 - removed cosmics rejection from there
6858
6859 * macros/calibration.C, mjobs/MJCalibration.cc:
6860 - changed cosmics rejection to the filter algorithm
6861
6862
6863
6864 2004/02/09: Markus Gaug
6865
6866 * mcalib/MCalibrationBlindPix.[h,cc]:
6867 - added histogram to display the average in FADC slices of all
6868 single and double phe events
6869
6870 * mcalib/MCalibrationCalc.cc:
6871 - fill histograms of single-phe events with higain and logain
6872 sampls
6873
6874 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationCalc.cc,
6875 mcalib/MCalibrationConfig.h:
6876 - take all pixel areas out of MGeomPix::GetA(), remove all previous
6877 areas
6878 - calculate photon fluxes from blind pixel and PIN diode, use
6879 area only to fill the conversion factors in MCalibrationPix
6880
6881
6882 * mcalib/MJCalibration.cc:
6883 - display of number of photons for Blindpixel and PIN Diode Method
6884 changed to display of photon flux which is the actually
6885 calculated quantity
6886
6887
6888
6889 2004/02/09: Thomas Bretz
6890
6891 * mbadpixels/*:
6892 - added
6893
6894 * Makefile:
6895 - added MBadPixels
6896
6897 * manalysis/MGeomApply.cc:
6898 - fixed class description
6899
6900 * mjobs/MJCalibration.[h,cc], mjobs/MJExtractSignal.[h,cc]:
6901 - added bad pixel treatment
6902
6903 * mjobs/MJPedestal.[h,cc]:
6904 - reorganized order of functions
6905 - removed a nonsense scrren output (some BLABABLA or so)
6906
6907 * mjobs/Makefile:
6908 - added include for mbadpixels
6909
6910 * mmain/MBrowser.cc:
6911 - do not call construtor of TGTReeLBEntry if pic0=0
6912
6913
6914
6915 2004/02/09: Raquel de los Reyes
6916
6917 * mcamera/MCameraLids.h, mreport/MReportCamera.h
6918 - Added the "Get" functions to access the private data
6919 members of the class.
6920
6921
6922
6923 2004/02/09: Markus Gaug
6924
6925 * MMcCalibrationUpdate.cc, MCalibrate.cc, MCalibrationPix.cc,
6926 MCalibrationPix.h:
6927 - replace MCalibrationPix->IsChargeFitValid() by IsChargeValid()
6928 because we can calibrate with the histogram mean and RMS even
6929 if the fit is not OK. Thus, there is a question: IsFitted() and
6930 IsChargeValid(), i.e. does the charge make any sense?
6931
6932 * MCalibrationCam.cc, MCalibrationConfig.h, MCalibrationCalc.cc:
6933 - found serious bug in calculation of conversion factors for the
6934 outer pixels:
6935 GetMeanConversionBlindPixelMethod and
6936 GetMeanConversionPINDiodeMethod
6937 did not correct for the area of the outer pixel, this did only
6938 MCalibrationCam::GetPixelContent which is not used by MCalibrate
6939
6940
6941
6942 2004/02/06: Markus Gaug
6943
6944 * mgeom/MGeomCam.h
6945 - replaced in Comment of fPixRatio:
6946 "ratio between size of pixel idx and pixel 0" by
6947 "ratio between size of pixel 0 and pixel idx"
6948
6949 * manalysis/MPedestalCam.cc
6950 - catch calls to MHPedestalPixel in case that they are not filled
6951 This led previous calls to segmentation violations
6952 - remove include of MHExtractedSignalPix
6953
6954 * manalysis/MHExtractedSignalPix.[h,cc]
6955 - is everything in MHPedestalPixel, so removed it again
6956
6957 * mjobs/MJPedestal.cc
6958 - put the projections into Display()
6959 - correct the input of Display (0: pedestal, 1: pedestalerror,
6960 2: pedRMS, 3: pedRMSerror)
6961
6962 * manalysis/MHPedestalPixel.cc
6963 - increased number of bins in for charges plot
6964
6965 * mtools/MFFT.[h,cc]
6966 - possibility to have PSD directly from TArray
6967
6968 * mjobs/MJCalibration.[h,cc]
6969 - fixed displays
6970 - replaced MExtractSignal by MExtractSignal2
6971
6972 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc],
6973 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationBlindPix.[h,cc],
6974 mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationPINDiode.[h,cc]:
6975 - remove histograms MHChargevsN..., now keep TArrays directly
6976 - check for oscillations for all pixels (and you will not trust
6977 your eyes when you look at the results :-((((
6978
6979 * mcalib/MCalibrationCalc.[h,cc]
6980 - remove ArrivalTime -> go to separate class
6981 - remove BlindPixel and PIN Diode overflow, now handled directly
6982 inside the corr. classes.
6983 - remove SkipTimeFits -> go the arrival time class
6984
6985 * mcalib/MCalibrationCam.h
6986 - new getters for number of photons
6987 - removed timeslicewidth -> go the corr. time containers
6988
6989 * mcalib/MCalibrationCam.cc
6990 - removed times of GetPixelContent
6991 - added OscillationChecks in GetPixelContent
6992
6993 * manalysis/MMcCalibrationUpdate.cc
6994 - remove calpix.SkipTimeFits which is now obsolet
6995
6996 * macros/calibration.C
6997 - all previous changes now in this macro.
6998 - (NB: Thomas, du brauchst in MJCalibration nicht mehr aendern,
6999 das ging diesmal in einem Aufwasch)
7000
7001
7002
7003 2004/02/06: Thomas Bretz
7004
7005 * mhist/MHPixVsTime.[h,cc]:
7006 - changed such that you can set the name of the time container now
7007
7008 * mraw/MRawRunHeader.[h,cc]:
7009 - added GetMaxPixId()
7010
7011 * mraw/MRawEvtData.cc:
7012 - fixed wrong size calculation for fABflags
7013
7014
7015
7016 2004/02/06: Oscar Blanch
7017
7018 * mmc/MFadcDefine.h && mmc/MMcFadcHeader.cxx
7019 - We cahnged the name (and values) of the global variable
7020 MFADC_RESPONSE_AMPLITUDE to MFADC_RESPONSE_INTEGRAL
7021
7022
7023
7024 2004/02/05: Markus Gaug
7025
7026 * mcalib/MHCalibrationPixel.[h,cc]
7027 - put an NDF limit for the fit
7028 - removed all TStrings and replace them by Form(..)
7029 - Check for nan's of all returned fit values
7030
7031 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc:
7032 - reshuffled HiLoGainConversion, calculation of F-Factor method,
7033 - calculation of total F-Factor of the readout.
7034
7035 * mcalib/MCalibrationCam.cc
7036 - include relative times to display with GetPixelContent
7037
7038 * mcalib/MCalibrationCalc.[h,cc]
7039 - flag to skip Hi-Lo Calibration
7040 - Hi-LO Graph not filled any more after overflow of ChargevsN
7041 - fill the blind pixel differently from the rest of pixels
7042
7043 * mcalib/MCalibrate.cc:
7044 - call to const MCalibrationPix &pix replaced by MCalibrationPix &pix
7045
7046 * manalysis/MArrivalTimeCalc.cc
7047 - default step width 100 ps.
7048 - look for half maximum (at rising edge)
7049
7050 * manalysis/MExtractSignal.[h,cc]
7051 - removed uncommented code (arrival time)
7052 - set start byte back by one like it was before TB's changes
7053 (does not affect the calculation of number of FADC slices)
7054
7055 * manalysis/MExtractSignal2.[h,cc]
7056 - removed uncommented code (arrival time)
7057
7058 * manalysis/MHPedestalPixel.[h,cc]
7059 - is now filled with total pedestals (not per slice), but results are
7060 renormalized to values per slice (this is not to screw up with the
7061 pedestal RMS and the derived uncertainties)
7062 - new function Renorm(nslices)
7063
7064 * manalysis/MPedestalCam.[h,cc]
7065 - introduced function Clone() (like proposed by TB)
7066 - call to MHPedestalPixel operator() not const any more
7067 - take out lots of uncommented code
7068 - found bug in initialization of hists. SetupFill is called in
7069 PreProcess, therefore, TObjArray is not yet enlarged there.
7070 Now, InitUseHists is called in Fill
7071 - MHPedestalPixel is now filled with total pedestals (not per slice),
7072 but results are
7073 renormalized to values per slice (this is not to screw up with the
7074 pedestal RMS and the derived uncertainties)
7075
7076 * manalysis/MPedCalcPedRun.cc
7077 - added author
7078 - split calculation of RMS into two steps to make it more clear to
7079 the user
7080
7081 * macros/calibration.C
7082 - found bug introduced two days ago, namely calculating pedestlas with
7083 MExtractSignal2 which is now fixed
7084 - Skip HiLoConversionCalibration
7085
7086
7087
7088 2004/02/05: Abelardo Moralejo
7089
7090 * macros/starmc2.C
7091 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add
7092 for both MMcEvt and MMcRunHeader since these containers are
7093 not present in real data. Name of macro is no longer adequate if
7094 we will use it for calibrated real data (to be changed if so).
7095
7096
7097
7098 2004/02/05: Sebastian Raducci
7099
7100 * mtools/MCubicSpline.[h,cc]
7101 - added
7102 - this class will take the place of the TSpline class to
7103 calculate arrival times
7104
7105 * mtools/MCubicCoeff.[h,cc]
7106 - added
7107 - this class is used by MCubicSpline to store coefficients
7108
7109 * macros/spline.C
7110 - added
7111 - test macro. Shows how to use the MCubicSpline class
7112 - it could be used to test the methods of the Spline class
7113
7114
7115
7116 2004/02/05: Thomas Bretz
7117
7118 * mmain/MBrowser.cc:
7119 - fixed a double deletion of a TGLayoutHints
7120
7121
7122
7123 2004/02/04: Markus Gaug
7124
7125 * mmain/MBrowser.cc:
7126 - corrected TGTReeLBEntry for TGTreeLBEntry
7127
7128
7129
7130 2004/02/04: Thomas Bretz
7131
7132 * manalysis/MExtractSignal2.cc:
7133 - don't allow odd numbers for the window size
7134
7135 * mfilter/MFilterList.cc:
7136 - corrected a wrong logging message
7137
7138 * mmain/MBrowser.cc:
7139 - added '/data/MAGIC' as shortcut in the combo box
7140
7141 * mraw/MRawEvtPixelIter.cc:
7142 - optimized calculation of MaxIdx
7143
7144
7145
7146 2004/02/04: Abelardo Moralejo
7147
7148 * macros/starmc2.C
7149 - removed unnecessary variables BinsHigh, BinsLow
7150
7151
7152
7153 2004/02/04: Markus Gaug
7154
7155 * manalysis/MPedestalCam.[h,cc], manalysis/MPedestalPix.[h,cc],
7156 manalysis/MPedCalcPedRun.[h,cc], manalysis/MHPedestalPixel.[h,cc],
7157 macros/calibration.C:
7158 - histograms are now filled with MFillH as proposed and coded by
7159 Thomas Bretz. Some modifications had to be done, however.
7160 - Class to hold MHPedestalPixel is still MPedestalCam
7161 - MPedCalcPedRun does nothing any more (except from what is was
7162 doing before)
7163
7164 * manalysis/MExtractSignal.cc
7165 - remove uncommented code
7166
7167 * mcalib/MCalibrationCalc.[h,cc]
7168 - modified way to handle histogram overflow: Now flags are set and
7169 ChargevsN histogram is not tried to be filled subsequently
7170
7171
7172
7173 2004/02/03: Markus Gaug
7174
7175 * manalysis/MHExtractedSignalPix.[h,cc]
7176 - added Thomas B. modified version of MHPedestalPixel. Later will
7177 remove MHPedestalPixel
7178
7179 * manalysis/MCalibrationPix.[h,cc], manalysis/MHCalibrationPixel.[h,cc],
7180 manalysis/MCalibrationCam.cc, macros/calibration.C:
7181 - now split completely absolute and relative times. Absolute
7182 times are not fitted, but their histogram mean and rms are
7183 returned.
7184
7185
7186
7187 2004/02/03: Thomas Bretz
7188
7189 * mfileio/MReadTree.cc:
7190 - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
7191
7192 * manalysis/MExtractSignal.[h,cc]:
7193 - moved code to extract the signal from Process to
7194 new member function FindSignal, I left the arrival time
7195 extraction as commented-out code in the code just as a
7196 demonstration to do this very fast.
7197
7198
7199
7200 2004/02/02: Markus Gaug
7201
7202 * manalysis/MPedCalcPedRun.cc
7203 - corrected formulae in Class description
7204
7205 * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
7206 manalysis/MMcCalibrationUpdate.cc:
7207 - calculate relative times and absolute times. Fit only
7208 the relative ones.
7209
7210
7211
7212 2004/02/02: Abelardo Moralejo
7213
7214 * manalysis/MMcCalibrationUpdate.cc, MMcPedestalCopy.cc
7215 - removed file type check (MC or data) from PreProcess since now
7216 run headers are not yet known at that point.
7217
7218 * mcalib/MMcCalibrationCalc.cc
7219 - same as above.
7220
7221 * NEWS
7222 - updated.
7223
7224
7225
7226 2004/02/02: Thomas Bretz
7227
7228 * manalysis/MExtractSignal2.[h,cc]:
7229 - added new task which takes a given number of slices with the
7230 highest integral content as signal.
7231
7232 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
7233 - added MExtractSignal2
7234
7235
7236
7237 2004/01/30: Abelardo Moralejo
7238
7239 * macros/starmc.C
7240 - changed default FADC integration range (more adequate for coming
7241 camera version).
7242
7243 * macros/mccalibrate.C, starmc2.C
7244 - added. First macro transforms input files from camera simulation
7245 into files with pixel data already calibrated in photons. The
7246 second reads in an already calibrated data file and produces an
7247 output file with Hillas parameters. Both together do the same as
7248 starmc.C, but it is convenient to have files containing
7249 calibrated pixel information.
7250
7251
7252
7253 2004/01/30: Thomas Bretz
7254
7255 * mbase/MDirIter.h:
7256 - added GetNumEntries
7257
7258 * mhist/MHEvent.cc:
7259 - added a dynamic_cast from MParContainer to MCamEvent to get the
7260 correct pointer to the correct base-class.
7261
7262 * mbase/MStatusDisplay.cc:
7263 - In EventInfo check whether gPad==0
7264
7265 * mfileio/MReadMarsFile.cc:
7266 - removed reading RunHeaders from PreProcess, this resulted
7267 in strange behaviour of writing RunHeaders
7268 - fixed consistency check for RunType accordingly
7269
7270 * mfilter/MFilterList.cc:
7271 - do not skip adding filter if only a filter with the same name
7272 exists
7273
7274 * mraw/MRawFileRead.cc:
7275 - added an output message if run header is not accessible
7276
7277 * mraw/MRawRunHeader.[h,cc]:
7278 - initialize fRunType to new enum kRTNone
7279
7280 * mfilter/MFGeomag.cc:
7281 - set fResult to kFALSE at the beginning of Process
7282 - according to this removed setting fResult=kFALSE before return
7283 - replaced some float by Float_t
7284 - added some const-qualifiers
7285 - replaced (rig<0.5/pr*R*(r2-r1)+r1) by (rig-r1)*pr<rnd
7286 with rnd = R * (r2-r1)/2 to make sure that we cannot
7287 devide by 0
7288
7289 * manalysis/MPedCalcPedRun.cc:
7290 - added some comments
7291
7292 * Makefile:
7293 - added mjobs
7294
7295 * mjobs/*:
7296 - added
7297
7298 * mbase/Makefile, mbase/BaseLinkDef.h:
7299 - added MRunIter
7300
7301 * mbase/MRunIter.[h,cc]:
7302 - added
7303
7304
7305
7306 2004/01/30: Markus Gaug
7307
7308 * manalysis/MPedestalCam.h
7309 - added function IsUsedHists()
7310
7311 * manalysis/MPedestalCam.cc
7312 - modified GetPixelContent
7313
7314 * manalysis/MPedestalCam.cc, manalysis/MPedCalcPedRun.cc:
7315 - include storage of number of used FADC slices to compare later
7316 the pedestal per slice ( and sigma per slice)
7317 - return relative differences in GetPixelContent
7318
7319 * mcalib/MCalibrationCalc.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc]:
7320 - fBlindPixelId and fPINDiodeId now like in PedestalCam
7321 - fill Blind Pixel with information about its fitted pedestal if
7322 available
7323 - initialize charges histogram with a bigger range
7324 - use pedestal information to constrain the pedestal fit ranges
7325
7326 * manalysis/MHPedestalPixel.cc
7327 - initialize charges histogram with a bigger range
7328
7329 * macros/calibration.C
7330 - SetRange of MExtractSignal to 1,14 (see emails of yesterday)
7331 - apply new GetPixelContents of MPedestalCam (more calculations
7332 and displays of errors, correction for different FADC slice
7333 number)
7334
7335 * manalysis/MExtractSignal.cc
7336 - not access to MArrivalTime any more. The same information is
7337 stored in MRawEvt->GetPixelContent(...)
7338
7339 * manalysis/MCalibrationCalc.cc
7340 - retrieve default arrival time from MRawEvt
7341
7342 * manalysis/MCalibrationBlindPix.cc, manalysis/MCalibrationPix.cc
7343 - check for NaN's in fit results
7344
7345
7346
7347 2004/01/29: Abelardo Moralejo
7348
7349 * mfileio/MWriteFile.h
7350 - added missing declaration of ReInit
7351
7352 * manalysis/MMcCalibrationUpdate.cc
7353 - added call to MCalibrationCam::SetBlindPixelMethodValid(kTRUE)
7354 to adapt to recent changes in MCalibrate.
7355
7356
7357
7358 2004/01/29: Thomas Bretz
7359
7360 * manalysis/MArrivalTime.h, manalysis/MCameraData.h,
7361 manalysis/MCerPhotEvt.h, manalysis/MExtractSignalCam.h,
7362 manalysis/MPedPhotCam.h, manalysis/MPedestalCam.h,
7363 mcalib/MCalibrationCam.h, mcamera/MCameraDC.h,
7364 mraw/MRawEvtData.h, mreflector/MRflEvtData.h:
7365 - split derivement into MParContainer and MCamEvent
7366
7367 * manalysis/MExtractSignalCam.[h,cc]:
7368 - removed obsolete MExtractSignal::ReInit
7369 - added -> to fArray
7370
7371 * mbase/MParList.h:
7372 - added a new bit kIsProcessing
7373
7374 * mbase/MTaskList.cc:
7375 - fixed the handling of kDoNotReset and the bahaviour of
7376 SetReadyToSave, such that it is possible to write all
7377 headers
7378
7379 * mfileio/MWriteFile.cc:
7380 - added ReInit which also calls CheckAndWrite
7381
7382 * mgui/MCamEvent.h:
7383 - does not derive from MParContainer anymore
7384
7385
7386
7387 2004/01/29: Markus Gaug
7388
7389 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
7390 mcalib/MCalibrationConfig.h
7391 - put gkCalibrationBlindPixelId and gkCalibrationPINDiodeId
7392 directly into the corresponding classes.
7393
7394
7395
7396 2004/01/29: Nicola Galante
7397
7398 * mhistmc/MHMcTriggerLvl2.[h,cc]:
7399 - In method MHMcTriggerLvl2::GetHistByName(const TString name)
7400 added string checking to return also
7401 fHistCellPseudoSize, fHistCellPseudoSizeNorm
7402 and fHistCellPseudoSizeEnergy.
7403 - Added inline functions GetHistCellPseudoSize() and
7404 GetHistCellPseudoSizeNorm().
7405
7406
7407
7408 2004/01/28: Javier Rico
7409
7410 * mcalib/MCalibrate.[h.cc]
7411 - include possibility to select the calibration method to be used
7412
7413
7414
7415 2004/01/28: Markus Gaug
7416
7417 * mcalib/MCalibrate.[h.cc]
7418 - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
7419
7420 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
7421 - included flags to indicate if Blind Pixel Method or PIn Diode
7422 method was OK. Up to now, program stopped, if one of the two
7423 methods was chosen but not able to being executed.
7424
7425 * manalysis/MArrivalTimeCalc.cc, manalysis/MExtractSignals.cc,
7426 manalysis/MGeomApply.cc:
7427 - put all missing InitSize(npixels) into MGeomApply
7428
7429 * manalysis/MPedCalcPedRun.[h,cc], manalysis/MPedestalCam.[h,cc],
7430 manalysis/MPedestalPix.[h,cc], manalysis/MHPedestalPixel.[h,cc],
7431 manalysis/Makefile, manalysis/AnalysisLinkDef.h:
7432 - include possibility to fit the pedestals with Gaussian.
7433 - old methods are not affected.
7434 - add new method with MPedCalcPedRun::SetUseHists()
7435
7436
7437
7438 2004/01/28: Abelardo Moralejo
7439
7440 * mcalib/MMcCalibration.cc
7441 - fixed wrong variable type in call to TH1F constructor (number of
7442 bins is now integer), which resulted in a compilation warning.
7443
7444
7445
7446 2004/01/28: Thomas Bretz
7447
7448 * manalysis/MPedestalCam.cc:
7449 - removed unwanted CheckBound from operators. CheckBounds is ONLY
7450 ment for really old MC files and will be removed in the future
7451 anyhow.
7452
7453 * mcalib/MHCalibrationPixel.h:
7454 - removed obsolete include of MFFT
7455
7456 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
7457 manalysis/MPedestalCam.[h,cc]:
7458 - removed use of obsolete MPedestalCam::CheckBounds. This was
7459 a workaround for a 'bug' in very old camera files, which is not
7460 necessary anymore.
7461
7462 * manalysis/MCerPhotAnal2.[h,cc]:
7463 - replaced MPedestalCam by MPedPhotCam
7464
7465 * manalysis/MExtractSignal.cc:
7466 - some small simplification to the signal extraction
7467 - removed some obsolete variables
7468 - replaced for by while
7469 - removed obsolete casts
7470
7471 * mmain/MEventDisplay.cc:
7472 - gave names to the filters
7473 - removed adding MHCamera to fList because it was deleted twice
7474
7475 * mhist/MHCamera.cc:
7476 - fixed usage of fPainter in Paint() - title was not updated
7477 correctly
7478
7479
7480
7481 2004/01/28: Sebastian Raducci
7482
7483 * manalysis/MArrivalTime.[h,cc]:
7484 - removed all the code relative to the cluster evaluation
7485
7486
7487
7488 2004/01/27: Markus Gaug
7489
7490 * manalysis/MPedestalPix.cc:
7491 - initialize default values to 0 instead of -1.
7492
7493 * manalysis/MPedestalCam.[h,cc]:
7494 - include CheckBounds, also in operator[]
7495
7496 * mcalib/MCalibrationCam.[h,cc]:
7497 - apparently, there was a reference to InitSize(UInt_t i) instead
7498 of InitSize(Int_t i), where compiler complained, now changed
7499
7500 * mcalib/MHCalibration*, mcalib/MCalibration*:
7501 - fixed all Clear()'s, Reset()'s, direct intializers
7502
7503
7504
7505 2004/01/27: Thomas Bretz
7506
7507 * mdata/MDataChain.cc:
7508 - added '%' to supported operators
7509
7510
7511
7512 2004/01/26: Nicola Galante
7513
7514 * manalysis/MMcTriggerLvl2.[cc,h]:
7515
7516 - Defined some static constants to avoid ugly "magic numbers"
7517 in arrays: gsNCells, gsNTrigPixels,
7518 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
7519 - Added method
7520 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
7521 which computes compact pixels into a given L2T macrocell.
7522 - Added method
7523 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
7524 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
7525 macrocells
7526 - Added method
7527 MMcTriggerLvl2::GetCellPseudoSize() const
7528 which returns fCellPseudoSize
7529 - Added method
7530 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
7531 which controls whether a pixel belongs to a given L2T cell.
7532 - Added method
7533 MMcTriggerLvl2::GetMaxCell() const
7534 which returns fMaxCell, the cell with the maximum
7535 fCellPseudoSize.
7536
7537
7538
7539 2004/01/26: Markus Gaug, Michele Doro
7540
7541 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
7542 - moved calculation of arrival time from MArrivalTime to
7543 MArrivalTimeCalc. MArrivalTime does not do any Process-job
7544 anymore
7545 - TSpline5 now on stack.
7546 - function to set the stepsize
7547
7548 * mcalib/MHCalibrationBlindPixel.[h,cc]:
7549 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
7550 - implement combined Polya fit and Michele's back-scattered electron
7551 fit
7552
7553 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
7554 mcalib/MCalibrationPINDiode.cc:
7555 - combine FitChargeHiGain and FitChargeLoGain into one function
7556
7557 * macros/calibration.C
7558 - improve double gauss fit a bit
7559
7560
7561
7562 2004/01/26: Thomas Bretz
7563
7564 * mraw/MRawEvtPixelIter.[h,cc]:
7565 - removed member function GetNumPixels. For more details see mantis.
7566
7567 * manalysis/MArrivalTime.[h,cc]:
7568 - reorganized includes
7569 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
7570 definition
7571 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
7572 PROGRAM
7573
7574 * manalysis/MArrivalTimeCalc.[h,cc]:
7575 - reorganized includes
7576 - removed many obsolete code, exspecially copy&paste relicts!
7577 - fixed usage of InitSize
7578 - removed CleanArray. Reset() is called automatically before Process()
7579
7580 * manalysis/MExtractedSignalCam.[h,cc]:
7581 - added SetLogStream
7582 - removed obsolete include MGeomCam
7583 - replaced PrintOut by Print
7584 - added const-qualifiers to all Getters
7585 - fixed documentation
7586
7587 * manalysis/MExtractedSignalPix.[h,cc]:
7588 - replaced PrintOut by Print
7589 - fixed documentation
7590
7591 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
7592 - replaced memset by Reset()
7593
7594
7595
7596 2004/01/24: Abelardo Moralejo
7597
7598 * macros/starmcstereo.C
7599 - Added. Example of how to run the analysis chain for MC files
7600 containing simulation of stereo systems of 2 telescopes.
7601
7602 * mcalib/MCalibrate.cc
7603 - Added check that value of signal from MExtractedSignalPix is not
7604 the default (error) value. In such a case, the signal in
7605 MCerPhotEvt is now set to 0. Before, all pixels got very high
7606 values in MCerPhotEvt in case the MRawEvtData object for the
7607 event was missing in the file. This happened in MC files, in
7608 which in some circumstances an event is written without the
7609 pixel information (for instance, when running stereo simulations
7610 the pixel data is missing for non-triggered telescopes, but the
7611 event headers are present).
7612
7613
7614
7615 2004/01/23: Markus Gaug
7616
7617 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
7618 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
7619 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
7620 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
7621 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
7622 - use MArrivalTime for Storage (or calculation) of time
7623 in MExtractSignal
7624 - pass from TH1I histos to TH1F for times
7625
7626 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
7627 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
7628 mcalib/MCalibrationCalc.[h,cc]:
7629 - clean up setters
7630 - pass to bit-fields for all flags
7631
7632 * mcalib/MCalibrationCam.cc
7633 - exclude Blind Pixel from Camera display
7634 - do not fill &val when return kFALSE
7635
7636 * macros/calibration.C
7637 - include functions to exclude the blind pixel,
7638 calculation of times and quality checks
7639
7640
7641
7642 2004/01/23: Abelardo Moralejo
7643
7644 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
7645 - Added support (using AddSerialNumber) for stereo MC files.
7646
7647
7648
7649 2004/01/23: Thomas Bretz
7650
7651 * mbase/MAstro.cc:
7652 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
7653
7654 * mreport/MReport*.[h,cc]:
7655 - changed all classes to return Int_t instead of Bool_t in
7656 InterpreteBody
7657 - changed MReportFileRead such, that a wrong line results in
7658 skipping the line instead of abort reading.
7659
7660 * manalysis/MExtractSignal.cc:
7661 - do not print information for each pixel - it's too much.
7662
7663 * mbase/MStatusDisplay.cc:
7664 - when reading a status display do not display tabs with
7665 the same name than one which is already existing.
7666
7667 * mcalib/MCalibrate.cc:
7668 - directly store pointer to pixel when setting saturation flag
7669
7670 * mcamera/MCameraDC.cc:
7671 - fixed some comments
7672
7673 * mhist/MHCamEvent.cc:
7674 - fixed a crash when no geometry was available
7675
7676 * mhist/MHCamera.[h,cc]:
7677 - removed obsolete member function SetPix
7678
7679 * mbase/MStatusDisplay.[h,cc]:
7680 - added EventInfo member function
7681 - implemented preliminary redirection of GetObjectInfo to
7682 StatusLine2 -> An own status line for this is missing
7683
7684 * manalysis/MExtractSignal.[h,cc]:
7685 - implemented StreamPrimitive
7686 - changed deafults to be static const data members
7687
7688 * manalysis/MGeomApply.[h,cc]:
7689 - implemented StreamPrimitive
7690
7691
7692
7693 2004/01/23: Abelardo Moralejo
7694
7695 * manalysis/MMcCalibrationUpdate.[h,cc]
7696 - Added check to guarantee that the FADC simulation parameters of
7697 all read files (those used for calibration and those analyzed)
7698 are the same.
7699 - Added missing support for analysis of stereo files.
7700
7701 * mcalib/MMcCalibrationCalc.cc
7702 - Removed obsolete FIXME comment.
7703 - Added missing support for analysis of stereo files.
7704
7705
7706 2004/01/23: Raquel de los Reyes
7707
7708 * macros/CCDataCheck.C
7709 - Added the temperature distribution of the optical links
7710 and the plots of the LV power supplies.
7711 * mcamera/MCameraLV.h
7712 - Added the "Get" functions to access the private data
7713 members of the class.
7714
7715
7716 2004/01/22: Abelardo Moralejo
7717
7718 * manalysis/MMcCalibrationUpdate.[h,cc]
7719 - Now ratio of high to low gain is taken from MCalibrationCam if
7720 it existed previously in the parameter list, instead of being
7721 read again from the MMcFadcHeader. Removed Setter function for
7722 fADC2PhInner, no longer necessary. Fixed error regarding the
7723 pedestal conversion to photons (did not read conversion factor
7724 from preexisting MCalibrationCam object).
7725
7726 * mcalib/MMcCalibrationCalc.cc
7727 - Changed parameters of the histogram, and also the quantity being
7728 histogrammed. Check that input data come from a noiseless camera
7729 file before proceeding to do the calibration. Introduced lower
7730 size in cut for calibration. Now rhe calibration constant is not
7731 calculated from the mean of photons/ADC counts, but from the peak
7732 of the histogram.
7733
7734 * macros/starmc.C
7735 - Introduced new scheme. Now there are two loops over two different
7736 sets of files. First loop calculates the calibration constants,
7737 second one does the analysis. Introduced comments. Now the
7738 histogram used in the light calibration is written to the output
7739 file.
7740
7741
7742
7743 2004/01/22: Thomas Bretz
7744
7745 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
7746 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
7747 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
7748 mcalib/MCalibrationBlindPixel.[h,cc],
7749 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
7750 mcalib/MHCalibrationBlindPixel.[h,cc],
7751 mcalib/MHCalibrationPINDiode.[h,cc]:
7752 - cleaned up includes
7753
7754
7755
7756 2004/01/22: Raquel de los Reyes
7757
7758 * macros/CCDataCheck.C
7759 - macro to check the data from the central control (.rep files).
7760
7761
7762
7763 2004/01/22: Markus Gaug
7764
7765 * macros/calibration.C
7766 - made MStatusDisplay 3 bit smaller
7767
7768 * manalysis/MExtractSignal.cc
7769 - put fSignals->SetUsedFADCSlices into PreProcess
7770
7771 * manalysis/MPedCalcPedRun.cc
7772 - calculate PedRMS as RMS of the sums, later renormalized to units
7773 of RMS/slice (eliminate the wrong effect of odd and even slices)
7774
7775 * mcalib/MCalibrationCalc.cc
7776 - if bit SkipBlindPixelFit is set, now number of photons outside
7777 plexiglass is not intended to be calculated any more (previous
7778 bug)
7779 - exclude excluded pixels in eventloop
7780
7781 * mcalib/MHCalibrationBlindPixel.[h,cc]
7782 - move functions to pointer again (otherwise, Clone will give
7783 strange results)
7784
7785
7786
7787 2004/01/21: Abelardo Moralejo
7788
7789 * mcalib/MMcCalibrationCalc.[h,cc]
7790 - Added. First version of the task intended to calculate the
7791 conversion factors from ADC counts to photons in the MC. It has
7792 a different aim than the recently renamed class
7793 "MMcCalibrationUpdate" (which takes care that the correct
7794 pedestals and conversion factors are supplied to each event, but
7795 does not really calculate anything).
7796
7797 * mcalib/Makefile, CalibLinkDef.h
7798 - Added new class MMcCalibrationCalc
7799
7800 * manalysis/MMcCalibrationUpdate.[h,cc]
7801 - Now the container MCalibrationCam is not created or modified if
7802 it is found that one such container already exists in the
7803 Parameter list (from a previous calibration).
7804
7805
7806
7807 2004/01/21: Thomas Bretz
7808
7809 * mraw/MRawRead.cc:
7810 - restore the fake time for all runs (current time stamp in
7811 the data seems to be toally nonsense)
7812
7813 * mraw/MRawEvtHeader.cc:
7814 - removed decoding of real time (current time stamp in the data
7815 seems to be toally nonsense)
7816
7817
7818
7819 2004/01/21: Abelardo Moralejo
7820
7821 * mmc/MMcEvt.hxx
7822 - Uncommented 6 Getter functions (those regarding the number of
7823 photons surviving the different stages of simulation).
7824
7825 * manalysis/MMcCalibrationUpdate.[h,cc]
7826 - Added (see below).
7827
7828 * manalysis/MMcCalibrationCalc.[h,cc]
7829 - Removed: changed name of this class to MMcCalibrationUpdate,
7830 which is more representative of what it really does. Moved
7831 the filling of the MCalibrationCam container from Process to
7832 ReInit, since it does not change on an event by event basis.
7833 Simplified PreProcess (MCalibrationCam was searched for twice).
7834 Updated class description and comments.
7835
7836 * manalysis/Makefile, AnalysisLinkDef.h
7837 - Adapted to change above
7838
7839 * macros/starmc.C
7840 - Adapted to change above. Changed also task instance name from
7841 mccalibcalc to mccalibupdate.
7842
7843
7844
7845 2004/01/21: Raquel de los Reyes
7846
7847 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
7848 and mcamera/MCameraCalibration.h
7849 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
7850 the private data members of the class.
7851
7852
7853
7854 2004/01/20: Thomas Hengstebeck
7855
7856 * mranforest/MRanForestCalc.[h,cc]
7857 - Added member functions Grow (training of RF) and Fill (reading in
7858 trained forest from file) which simplify macros.
7859 One just needs to call them instead of using MRanForestGrow and
7860 MRanForestFill (and the related training and fill loops) in a
7861 macro.
7862
7863
7864
7865 2004/01/20: Abelardo moralejo
7866
7867 * manalysis/MMcCalibrationCalc.cc
7868 - removed call to MCalibrationPix::SetPedestal, which was not
7869 needed.
7870
7871
7872
7873 2004/01/20: Thomas Bretz
7874
7875 * Makefile:
7876 - replaced 'make' by '$(MAKE)'
7877
7878 * Makefile.rules:
7879 - added Makefile itself to dependencies
7880
7881 * mbase/MTask.cc:
7882 - added comment about ReInit
7883
7884 * mhbase/MH.cc:
7885 - do not clear pad in DrawClone if 'same' option given
7886
7887 * mhist/MHVsTime.cc:
7888 - evaluate 'same' option
7889
7890 * mfileio/MReadCurrents.[h,cc]:
7891 - obsolete, removed
7892
7893 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
7894 - added some comments
7895
7896
7897
7898 2004/01/20: Abelardo moralejo
7899
7900 * mcalib/MHCalibrationPINDiode.cc
7901 - Added call to SetDirecory(0) for histograms fHErrCharge,
7902 fHPCharge, fHPTime.
7903
7904 * manalysis/MCerPhotPix.h:
7905 - Changed position of declaration of fIsSaturated to be the last
7906 private variable. Otherwise, since in the constructor it is
7907 initialized in the last place, a warning is displayed upon
7908 compilation in some systems.
7909
7910
7911
7912 2004/01/20: Markus Gaug
7913 * mcalib/Makefile, manalysis/Makefile:
7914 - include directory ../mtools
7915
7916 * mtools/MFFT.[h,cc]
7917 - class inherits from TObject now
7918
7919
7920
7921 2004/01/19: Markus Gaug
7922
7923 * mcalib/MHCalibrationBlindPixel.[h,cc]
7924 - fixed a bug in fFitLegend due to which program crashed by calls
7925 to DrawClone
7926 - Modified way to change the fit function
7927
7928 * mcalib/MHCalibrationPixel.[h,cc]
7929 - reordered function calls
7930 - removed SetupFill
7931
7932 * mcalib/MHCalibrationPINDiode.h
7933 - reordered function calls
7934
7935 * mcalib/MCalibrationPix.[h,cc]
7936 - limits to define fFitValid now as variables in class
7937
7938 * mcalib/MCalibrationCam.[h,cc]
7939 - reordered function calls
7940 - incorporate option to exclude pixels
7941
7942 * mcalib/MCalibrationBlindPix.h
7943 - Modified way to change the fit function
7944
7945 * mcalib/MCalibrationCalc.[h,cc]
7946 - Modified way to change the fit function
7947 - incorporate option to exclude pixels from configuration file
7948
7949 * macros/calibration.C
7950 - Modified way to change the fit function
7951 - incorporate option to exclude pixels from configuration file
7952
7953
7954
7955 2004/01/19: Javier Rico
7956
7957 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
7958 - Added documentation of member functions
7959
7960
7961
7962 2004/01/19: Abelardo Moralejo
7963
7964 * manalysis/MCerPhotPix.[h,cc]
7965 - Added fIsSaturated to flag whether low gain of the pixel is
7966 saturated. Added corresponding getter and setter functions.
7967 Updated ClassDef to version 2.
7968
7969 * mcalib/MCalibrate.cc
7970 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
7971 one low gain FADC slice is saturated.
7972
7973 * mimage/MNewImagePar.[h,cc]
7974 - Added new member variable fNumSaturatedPixels to count how many
7975 pixels were saturated. Updated ClassDef to version 2.
7976
7977
7978
7979 2004/01/19: Thomas Bretz
7980
7981 * manalysis/MPedPhotCalc.[cc,h]:
7982 - fixed order of includes
7983 - removed obsolete forward declarations
7984 - removed obsolete data member fNumPixels (stored already twice in
7985 the two TArrayF)
7986 - fixed some small bugs in the documentation
7987
7988 * manalysis/MPedCalcPedRun.cc:
7989 - updated my eMail address
7990
7991
7992
7993 2004/01/19: Javier Rico
7994
7995 * macros/dohtml.C, NEWS
7996 - include some missing info
7997
7998
7999
8000 2004/01/19: Abelardo Moralejo
8001
8002 * manalysis/MExtractedSignalPix.h
8003 - added GetNumLoGainSaturated()
8004
8005
8006
8007 2004/01/19: Markus Gaug
8008
8009 * macros/dohtml.C
8010 - include calibration.C
8011
8012 * manalysis/MExtractSignal.cc
8013 - warning of logain saturation now only once per event (out of loop)
8014
8015 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
8016 - new Flag fExcluded to indicate if pixel has been excluded from
8017 further analysis
8018
8019
8020
8021 2004/01/16: Javier Rico & Pepe Flix
8022
8023 * manalysis/MPedPhotCalc.[cc,h]
8024 - added
8025 - new class for the evaluation of pedestals in units of photons
8026 using the extracted signal from pedestal runs and calibration
8027 constants defined in MCalibrate
8028
8029 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
8030 - added entries for MPedPhotCalc
8031
8032 * macros/pedphotcalc.C
8033 - added
8034 - example on how to use MPedPhotCalc task
8035
8036
8037
8038 2004/01/16: Markus Gaug
8039
8040 * mcalib/MCalibrationFits.h
8041 - removed and incorporated in MHCalibrationBlindPixel.h
8042
8043 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
8044 mcalib/MCalibrationBlindPix.h:
8045 - incorporate Fit functions
8046 - fixed a bug due to which DrawClone crashed when class was used
8047 in a compiled macro
8048
8049 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
8050 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
8051 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
8052 mcalib/MHCalibrationPixel.cc:
8053 - fixed the warns and errs in fLog's
8054
8055
8056
8057 2004/01/16: Abelardo Moralejo
8058
8059 * manalysis/MMcCalibrationCalc.cc
8060 - TMath::Max() is no longer used because it did not compile in some
8061 systems for unkown reasons. I replaced it by a safer (and may be
8062 slower) code.
8063 - Added calpix.SetFitValid();
8064
8065 * mhist/MHEvent.cc
8066 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
8067 be 1 in case of RMS:
8068 case kEvtPedestalRMS:
8069 fHist->SetCamContent(*(MCamEvent*)par, 1);
8070
8071
8072
8073 2004/01/15: Abelardo Moralejo
8074
8075 * macros/starmc.C
8076 - Added. Version of star showing new chain to get Hillas
8077 parameters (with Size calibrated in photons) from MC files.
8078
8079
8080
8081 2004/01/15: Javier Rico
8082
8083 * manalysis/MPedCalcPedRun.[h,cc]
8084 - optimize the running time
8085 - add (some) documentation
8086 - correct treatment for the case of several input files
8087
8088 * macros/pedvsevent.C
8089 - added
8090 - draw pedestal mean and rms vs event# for input pixel# and run
8091 file, and compares them to the global pedestal mean and rms
8092
8093
8094
8095 2004/01/15: Raquel de los Reyes
8096
8097 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
8098 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
8099 functions to compute the estimation of the error of the
8100 mean. It can be done calling to the function
8101 MCamEvent::SetBit(MHCamera::kVariance) in the macro
8102
8103
8104
8105 2004/01/15: Markus Gaug
8106
8107 * mhist/MHCamera.[h,cc]
8108 - incorporate Thomas's changes
8109 - replace void CreateProjection() by TH1D *Projection(const char*)
8110
8111 * macros/calibration.C
8112 - replace MHCamera->Draw("proj") by MHCamera->Projection()
8113 - produce better fits to the projection
8114
8115 * manalysis/MSimulatedAnnealing.[h,cc],
8116 mhist/MHSimulatedAnnealing.[h,cc]:
8117 - moved to directory mtools
8118 - MSimulatedAnnealing now inherits from TObject
8119
8120 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
8121 mhist/Makefile, mhist/HistLinkDef.h:
8122 - removed MSimulatedAnnealing
8123 - removed MHSimulatedAnnealing
8124
8125 * mtools/Makefile, mtools/AnalysisLinkDef.h:
8126 - added MSimulatedAnnealing
8127 - added MHSimulatedAnnealing
8128
8129
8130
8131 2004/01/15: Thomas Bretz
8132
8133 * manalysis/AnalysisLinkDef.h:
8134 - removed MCurrents
8135
8136 * mhist/MHCamera.[h,cc]:
8137 - added member function Projection
8138 - removed fYproj
8139
8140 * mreport/MReport*.*:
8141 - added more comments
8142
8143
8144
8145 2004/01/14: Markus Gaug
8146
8147 * mtools/MFFT.[h,cc]
8148 - new class to perform Fast Fourier Transforms
8149
8150 * mtools/Makefile
8151 * mtools/ToolsLinkDef.h
8152 - include MFFT
8153
8154 * manalysis/MExtractedSignalCam.h
8155 - removed variables fNumHiGainSamples and fNumLoGainSamples
8156 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
8157
8158 * manalysis/MExtractSignal.cc
8159 - updated call to SetUsedFADCSlices
8160
8161
8162
8163 2004/01/14: Abelardo Moralejo
8164
8165 * manalysis/MMcCalibrationCalc.cc:
8166 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
8167 This can happen (depending on camera simulation parameters), and
8168 rms = 0 later resulted in the pixel being eliminated in the
8169 image cleaning.
8170
8171
8172
8173 2004/01/14: Thomas Bretz
8174
8175 * Makefile:
8176 - replaced old style Makefile.depend by directory specific
8177 dependancy files
8178
8179 * Makefile.rules:
8180 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
8181 - added rule to make dependency files
8182 - added rule to remove dependancy files.
8183 - added rmdep as prerequisite to clean
8184 - include dependency file
8185
8186 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
8187 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
8188 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
8189 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
8190 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
8191 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
8192 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
8193 mtools/Makefile:
8194 - removed clean-rule, use the one in Makefile.rules instead
8195
8196 * mreport/Makefile, mreport/ReportLinkDef.h:
8197 - added MReportHelp
8198
8199 * mreport/MReportFileRead.cc:
8200 - moved code from MReportHelp to new file
8201 - removed usage of MReport class completely
8202
8203 * mfilter/MFGeomag.[h,cc]:
8204 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
8205 - changed the second loop from 0->1151 to 1152->2304
8206 - removed dummy arrays used for reading
8207 - output filename in case of 'file not found'
8208 - removed obsolete data members
8209 - removed obsolete Init function
8210 - removed forbidden underscore from member variable
8211 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
8212
8213 * mbase/MStatusDisplay.[h,cc]:
8214 - added new member function Open
8215 - added new menu entry kFileOpen
8216 - changed UpdatePSheader algorithm (the old one was much too slow)
8217
8218 * manalysis/MCurrents.[h,cc]:
8219 - removed (old outdated)
8220
8221 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
8222 - removed MCurrents
8223
8224
8225
8226 2004/01/14: Wolfgang Wittek
8227
8228 * macros/ONOFFAnalysis.C:
8229 - current version
8230
8231 * mhist/MHSigmaTheta.[h,cc]:
8232 - replace MPedestalCam by MPedPhotCam
8233
8234 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
8235 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
8236 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
8237 - replace MPedestalCam by MPedPhotCam
8238
8239 * manalysis/MPedPhotPix.[h,cc]
8240 - uncomment SetRms()
8241
8242
8243
8244 2004/01/13: Markus Gaug
8245
8246 * manalysis/MExtractSignal.h
8247 - seems that the reduced light intensity of the CT1 Pulser
8248 results in broader pulses -> Set Default time slices to [3,10]
8249
8250 * mhist/MHCamera.cc
8251 - make Stat Window in option 'proj' bigger
8252 - add comment line at beginning of Draw()
8253
8254 * mcalib/MHCalibrationBlindPixel.[h.cc]
8255 - add Function DrawClone()
8256 - fix bug in calculation of integral (GetIntegral("width"))
8257 - restrict parameters tighter
8258 - declare fit as not valid, if less than 100 events
8259 in single photo-electron peak
8260
8261 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
8262 - fit now with fixed normalization
8263
8264 * mcalib/MHCalibrationPixel.[h.cc]
8265 - new function IsEmpty()
8266 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
8267
8268 * mcalib/MCalibrationPix.[h.cc]
8269 - F-Factor corrected and added error
8270 - Histograms not fitted if they are empty
8271 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
8272
8273 * mcalib/MCalibrationCam.cc
8274 - Square Root of Reduced Sigmas not taken, if they are < 0.
8275 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
8276
8277 * mcalib/MCalibrationCalc.cc
8278 - Blind Pixel is not additionally treated as normal pixel any more
8279 - Blind Pixel Draw replaced by DrawClone
8280
8281 * macros/calibration.C
8282 - took out some unused code
8283 - some default axis labelling corrected
8284
8285
8286
8287 2004/01/13: Abelardo Moralejo
8288
8289 * manalysis/MMcPedestalCopy.cc
8290 - added check of whether input file is a MC file before executing
8291 the PreProcess.
8292
8293
8294
8295 2004/01/13: Wolfgang Wittek
8296
8297 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
8298 - change macro to handle also MC events with finite sigmabar
8299
8300 * manalysis/MPadOn.[h,cc]:
8301 - deleted, is replaced by MPad
8302
8303 * manalysis/MPadOnOFF.[h,cc]:
8304 - deleted, is replaced by MPad
8305
8306 * manalysis/MPad.[h,cc]:
8307 - new class, replacing MPadON and MPadONOFF
8308 - handle also MC events with finite sigmabar
8309
8310 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
8311 - replace MPadON and MPadONOFF by MPad
8312
8313
8314
8315 2004/01/13: Thomas Bretz
8316
8317 * mraw/MRawRunHeader.[h,cc]:
8318 - implemented new member function GetRunTypeStr
8319
8320 * Changelog.03:
8321 - added (contains entries of 2003)
8322
8323 * Changelog:
8324 - removed entries of 2003
8325
8326 * mfilter/MFGeomag.cc:
8327 - simplified open/close of input files
8328
8329 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
8330 - added some comments
8331 - added new member function GetError
8332
8333 * Makefile:
8334 - updated 'make dox' output for convinience
8335
8336 * macros/dohtml.C:
8337 - do not print Info's
8338 - added mcamera
8339 - added mpointing
8340 - added mreport
8341
8342 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
8343 - removed some obsolete comments (these comments confused THtml)
8344
8345 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
8346 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
8347 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
8348 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
8349 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
8350 - replaced MPedestalCam by MPedPhotCam
8351 - removed some obsolete includes
8352
8353 * mbase/BaseLinkDef.h, mbase/Makefile:
8354 - added MLogPlugin
8355 - added MLogHtml
8356
8357 * mbase/MLog.[h,cc]:
8358 - added use of plugins
8359
8360 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
8361 - added
8362
8363 * mbase/MStatusDisplay.[h,cc]:
8364 - added a Save-As dialog
8365
8366
8367
8368 2004/01/12: Thomas Bretz
8369
8370 * macros/rootlogon.C:
8371 - added mcamera to include path
8372 - added mpointing to include path
8373 - added mreport to include path
8374
8375 * mbase/MLog.cc:
8376 - updated my eMail address
8377
8378 * mbase/MParContainer.h:
8379 - added Read member function
8380
8381 * mbase/MStatusDisplay.[h,cc]:
8382 - changed size of ps-paper
8383 - added a user defined bottom line to the ps-files
8384 - added name (currently unused)
8385 - added title (used as possible bottom line in ps-file)
8386
8387 * mraw/MRawRunHeader.cc:
8388 - added some comments
8389
8390 * status.cc:
8391 - set name of input as bottom line of status display
8392
8393
8394
8395 2004/01/12: Abelardo Moralejo
8396
8397 * mimage/MStereoPar.cc
8398 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
8399 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
8400 Bug had no effect unless scale1 != scale2 (-> telescopes of
8401 different size).
8402
8403
8404
8405 2004/01/12: Markus Gaug
8406
8407 * manalysis/MExtractSignal.[h,cc]
8408 - take out some uncommented code
8409 - replace logainshift by two independent variables:
8410 logainfirst, logainlast
8411 - because in most data, maximum occurs in slice 4, shift default
8412 from slices 4-9 to slices 3-8.
8413
8414 * manalysis/MExtractedSignalPix.[h,cc]
8415 - took out some uncommented code
8416 - new initializers: instead of -1. now 99999.9
8417
8418
8419
8420 2004/01/09: Markus Gaug
8421
8422 * mcalib/MCalibrationCam.[h,cc]
8423 - take out 1-dim histos because we can use
8424 the projections in MHCamera (s.b.)
8425
8426 * mcalib/MHCalibrationBlindPixel.h
8427 - make the fit by default quiet
8428
8429 * mcalib/MHCalibrationPixel.[h,cc]
8430 * mcalib/MCalibrationPix.[h,cc]
8431 - Ranges of time slices stored independently for HiGain and LoGain
8432 in order to allow consecutive checks
8433
8434 * mhist/MHCamera.[h.cc]
8435 - add the possibility to call a Draw("proj") which will
8436 draw a Y-Projection of the histogram
8437
8438 * macros/calibration.C
8439 - apply the drawing of the projections and fit them
8440
8441 * mcalib/MCalibrationCalc.cc
8442 - catch the possibility of a calibration file,
8443 unintendedly being a pedestal or cosmic file.
8444 Program now exits with an error before doing the fits
8445
8446 * mcalib/MCalibrationPix.[h,cc]
8447 - fixed a bug in calculation of fFitValid.
8448 before, a call to IsFitValid() always returned false
8449
8450
8451
8452 2004/01/09: Javier Lpez
8453
8454 * macros/bootcampstandardanalysis.C
8455 - added new macro that holds the main scheleton discussed in the
8456 december bootcamp in Wuerzburg. It runs first over a pedestal
8457 run, then over a calibration run, again over the pedestal run
8458 to compute de pedestal in number of photons and finally over a
8459 data run to calibrate the data.
8460
8461
8462
8463 2004/01/06: Sebastian Raducci
8464
8465 * manalysis/MArrivalTime.[h,cc]
8466 - added new method to calculate photon arrival times. It uses the
8467 TSpline5 Root Class to interpolate the Fadc Slices. The time is
8468 the abscissa value of the absolute maximum of the interpolation
8469 - added new method to find clusters with similar arrival times.
8470 For now it's a preliminary version. It simply search for adiacent
8471 pixels having the same arrival time (color).
8472
8473 * manalysis/MArrivalTimeCalc.[h,cc]
8474 - modified the Process() method according to the changes in the
8475 Arrival Time Cointainer
8476
8477 * mmain/MEventDisplay.cc
8478 - added new tab in the camera event display to show the arrival
8479 time. This arrival time is calculated with the spline method
8480 - the old Arrival Time pad now it's called Max Slice Idx, because
8481 it's only the index of the slice with the max content.
8482
8483 * mhist/MHEvent.[h,cc]
8484 - added new fType in te enumeration to handle the arrival time
8485 histos
Note: See TracBrowser for help on using the repository browser.