source: trunk/MagicSoft/Mars/Changelog@ 3274

Last change on this file since 3274 was 3274, checked in by wittek, 21 years ago
*** empty log message ***
File size: 72.7 KB
Line 
1Please do not write behind the end of line tag so that it is possible
2to send a Changelog file to a line printer directly. Thanks.
3
4
5 -*-*- END OF LINE -*-*-
6
7
8
9
10 2004/02/24: Wolfgang Wittek
11 * manalysis/MSourcPosfromStarPos.[h,cc]
12 - change member function SetSourceAndStarPosition() to expect sky
13 coordinates in the standard units
14 - generalize to more than 1 star
15 - the class is not yet fully tested
16
17 * mfilter/MFSelBasic.[h,cc]
18 - change default values of cuts
19
20
21 2004/02/24: Markus Gaug
22
23 * mcalib/MCalibrationChargePix.cc
24 - discovered an error in the calculation of phe's in
25 CalcFFactorMethod(). The average QE was applied twice.
26 This error has been introduced on 13/02/04
27
28
29 2004/02/23: Markus Gaug
30
31 * mraw/MRawEvtPixelIter.h
32 - include GetNumHiGainSamples and GetNumLoGainSamples
33
34 * mcalib/MExtractedSignalBlindPixel.h
35 * mcalib/MExtractBlindPixel.[h,cc]
36 - included storage of pedestal
37
38 * mcalib/MHGausEvents.[h,cc]
39 - make the fit functions protected
40
41
42 2004/02/22: Markus Gaug
43
44 * mfilter/MFCosmics.[h,cc]
45 - fMaxNumEmpty changed from absolute number to relative number of
46 pixels
47
48
49 * mcalib/MHGausEvents.h
50 - remove the "->" from the pointers which are initialized only
51 in certain cases. The streamer did not work in case that
52 MFGausFit was left at the NULL pointer.
53
54
55 2004/02/21: Markus Gaug
56
57 * manalysis/MExtractedSignalPix.[h,cc]
58
59 - changed variable fIsLoGainUsed to fLoGainUsed
60 - added function GetNumHiGainSaturated()
61
62
63 2004/02/20: Markus Gaug
64
65 * mcalib/MHCalibrationChargeHiGainPix.[h,cc]
66 * mcalib/MHCalibrationChargeLoGainPix.[h,cc]
67 * mcalib/Makefile
68 * mcalib/CalibLinkDef.h
69
70 - new class to replace MHCalibrationPixel,
71 based on MHCalibrationChargePix
72
73 * mcalib/MCalibrationChargeCalc.[h,cc]
74 * mcalib/MCalibrationChargeCam.[h,cc]
75 * mcalib/MCalibrationChargePix.[h,cc]
76 * mcalib/MCalibrationChargePINDiode.[h,cc]
77 * mcalib/MCalibrationCalc.[h,cc]
78 * mcalib/MCalibrationCam.[h,cc]
79 * mcalib/MCalibrationPINDiode.[h,cc]
80
81 - added the "charge" versions, remove the old ones. The histograms
82 should be filled in the MH... versions independently of
83 MCalibrationChargeCalc. This is fully realized for the PIN Didoe
84 now and will later be so for the pixels and the blind pixel.
85
86 * mcalib/MHCalibrationChargePINDiode.[h,cc]
87
88 - receives a pointer to MCalibrationChargePINDiode which is filled
89 with the results and told to calculate the fluxes in the
90 Finalize function
91
92 * mcalib/MCalibrate.[h,cc]
93 * mcalib/MCalibrateData.[h,cc]
94 * mcalib/MMcCalibrationCalc.[h,cc]
95 * manalysis/MMcCalibrationUpdate.[h,cc]
96 * mjobs/MJCalibration.[h,cc]
97 * mjobs/MJExtractSignal.[h,cc]
98 * manalysis/MGeomApply.cc
99 * mcalib/Makefile
100 * mcalib/CalibLinkDef.h
101 * macros/calibration.C
102 * macros/bootcampstandardanalysis.C
103 * macros/pedphotcalc.C
104
105 - replace MCalibrationCam by MCalibrationChargeCam
106 - replace MCalibrationCalc by MCalibrationChargeCalc
107
108
109 2004/02/19: Markus Gaug
110
111 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc,
112 mcalib/MCalibrate.cc, mcalib/MCalibrateDate.cc,
113 manalysis/MMcCalibrationUpdate.cc:
114 - standardized naming of variables containing "Error", this also affected
115 the calling functions MCalibrate, MMcCalibrationUpdate and MCalibrateData
116
117 * mcalib/MCalibrationCam.cc, mcalib/MCalibrationPix.cc,
118 mcalib/MCalibrationCalc.cc, mcalib/MCalibrate.cc,
119 mcalib/MCalibrateData.cc, mcalib/MCalibrationConfig.h:
120 - took out some configuration numbers and put them directly into
121 the class
122 - remove completely MCalibrationConfig.h
123
124
125
126 2004/02/19: Abelardo Moralejo
127
128 * mhist/MHEvent.[h,cc]:
129 - Changed names of Event "types" to make them more descriptive.
130 Former kEvtSignal is now called kEvtSignalDensity, and indicates
131 pixel content scaled by area. Added kEvtSignalRaw, which
132 corresponds to pixel content (with no scaling) in whatever units
133 (this depends on how the MHEvent object is filled!). The default
134 constructor initializes type=kEvtSignalRaw.
135
136 * mmain/MEventDisplay.cc
137 - Changed filling of evt1 and evt2. Now they are filled with raw
138 content of MCerPhotEvt. Since in MEventDisplay, MCerPhotEvt is
139 still filled uncalibrated (hence in ADC counts), this means that
140 what will be now shown in Mars' camera display is now the signal
141 in each pixel without scaling with pixel area. Given that the
142 default flat fielding is such that equal light density
143 corresponds to equal absolute signal (in ADC counts), this is
144 more reasonable, and allows to check for instance how the
145 relative pixel gains are adjusted by looking at calibration
146 events. To be FIXED: there is however an "inconsistency" in
147 MEventDisplay, and it is that MCerPhotEvt is still used to keep
148 uncalibrated signals. To be replaced by MExtractedSignalCam?
149
150
151
152 2004/02/19: Thomas Bretz
153
154 * manalysis/MCerPhotEvt.h:
155 - added operator= to MCerPhotEvtIter -- is this correct?
156
157 * mhist/MHCamera.[h,cc]:
158 - added member function to calculate minimum content and
159 maximum content for a single sector
160 - Added possibility to get a projection for a single sector.
161 - GetMinimum/GetMaximum now only takes used pixels into account
162 (you can request all pixels using a different member function)
163 - fixed projection (projection only took pixels with contents!=0
164 instead of 'used' pixels
165 - Don't call Sumw2() anymore for projection
166
167 * mjobs/MJPedestal.cc:
168 - added MPedestalCam to output again - MPedestalCam was fixed
169 yesterday
170 - Added Histograms for the two camera halves
171
172
173
174 2004/02/18: Markus Gaug
175
176 * macros/calibration.C
177 - fixed a buggy display of the F-Factor method
178
179 * mcalib/MCalibrationCalc.cc
180 - calculate the F-Factor method already in the post-Process
181
182 * mcalib/MCalibrationPix.h
183 - move CalcFFactorMethod to public
184
185
186
187 2004/02/18: Abelardo Moralejo
188
189 * mtools/MCubicSpline.cc
190 - in Init, corrected initialization of arrays temp and ysd, which
191 was done with n-1 elements instead of n.
192
193 * mgui/MHexagon.cc
194 - added comment explaining the algorithm.
195 - changed explicit values of Sin and Cos 60 degrees by const
196 variables (more readable).
197
198
199
200 2004/02/18: Hendrik Bartko
201
202 * msignal/:
203 - removed the backup files *~
204 - removed the object files *.o
205 - removed the files SignalCint.*
206
207 * mgui/MHexagon.cc
208 - added comment explaining the algorithm.
209
210
211
212 2004/02/18: Thomas Bretz
213
214 * manalysis/MPedestalCam.[h,cc]:
215 - Changed order of derivements - seems to be VERY important!
216 - changed GetSize from UInt_t to Int_t which is the type
217 of TClonesArray::GetSize() !
218
219 * mfileio/MReadReports.cc:
220 - skip trees with no entries
221
222 * mgui/MCamEvent.cc:
223 - added a comment
224
225 * mhbase/MFillH.cc:
226 - in case SetupFill returns kFALSE and kCanSkip is set
227 Skip task
228
229 * mraw/MRawFileRead.cc:
230 - don't print warning in case of none executions
231
232 * manalysis/MArrivalTimeCalc2.cc:
233 - added some const-qualifiers
234
235
236
237 2004/02/17: Raquel de los Reyes
238
239 * macros/CCDataCheck.C
240 - Added some improvements in the plots.
241
242
243
244 2004/02/17: Abelardo Moralejo
245
246 * macros/readrfl.C
247 - Added missing gPad->cd(1), otherwise the display of events was
248 not updated.
249
250 * mgui/MHexagon.cc
251 - DistanceToPrimitive(Float_t px, Float_t py) Changed check of
252 whether px,py is inside the pixel or not. Previous algorithm
253 was just an approximation.
254
255
256
257 2004/02/17: Raquel de los Reyes
258
259 * mcamera/MCameraHV.h
260 - Now it derives from a MCamEvent class and implemented the
261 GetPixContent() and DrawPixelContent() functions. Added the
262 GetMean function to get the mean HV settings of the camera.
263
264 * macros/CCDataCheck.C
265 - Added the HV settings plots.
266
267
268
269 2004/02/17: Hendrik Bartko
270
271 * msignal:
272 - new: directory for all signal and time extraction classes
273
274 * msignal/MArrivalTimeCam.[h,cc], manalysis/Makefile,
275 msignal/AnalysisLinkDef.h, MGeomApply.cc:
276 - new: Storage Container for the ArrivalTime in the camera
277
278 * msignal/MArrivalTimePix.[h,cc], manalysis/Makefile,
279 msignal/AnalysisLinkDef.h:
280 - new: Storage Container for ArrivalTime information of one pixel
281
282 * msignal/Makefile, SignalCint.[h,cc], SignalDep.d, SignalIncl.h,
283 SignalLinkDef.h
284 - auxiliary files for msignal directory
285
286 * manalysis/MArrivalTimeCalc2.[h,cc]:
287 - added functionality to compute error of the extracted ArrivalTime
288 - calculated ArrivalTime is stored in MArrivalTimeCam
289
290 * manalysis/MGeomApply.cc
291 - geometry is applied to MArrivalTimeCam
292
293 * Makefile:
294 - directory msignal is included
295
296
297
298 2004/02/17: Sebastian Raducci
299
300 * mtools/MCubicSpline.[h,cc]
301 - little corrections in minimums evalustion methods
302 - changed constructors (they require the fadc slices to be const)
303
304 * macros/spline.C
305 - changed according to the MCubicSpline new constructors
306
307 * manalysis/MArrivalTimeCalc.[h,cc]
308 - changed to use the MCubicSpline class intead of the TSpline class
309 - warning: now the arrival time is again the maximum of the spline,
310 soon it will be changed to half maximum
311
312
313
314 2004/02/17: Wolfgang Wittek
315
316 * manalysis/MSourcPosfromStarPos.[h,cc]
317 - new class; calculates the position of the source in the camera from
318 the position of a star in the camera and puts it into
319 MSrcPosCam
320
321
322
323 2004/02/16: Abelardo Moralejo
324
325 * mcalib/MMcCalibrationCalc.cc
326 - Fixed two typos in screen output.
327
328
329
330 2004/02/16: Markus Gaug
331
332 * mcalib/MCalibrationPix.cc
333 - documentation from David's email added
334 - EffectiveQE decreased from 0.2 to 0.18 (see documentation)
335
336 * mcalib/Makefile, mcalib/CalibLinkDef.h:
337 - added MExtractBlindPixel and MExtractedSignalBlindPixel
338
339 * mcalib/MExtractBlindPixel.[h,cc]
340 - new signal extractor for the Blind Pixel
341
342 * mcalib/MExtractedSignalBlindPixel.[h,cc]
343 - new container for the extracted signal of the BlindPixel
344
345 * mcalib/MCalibrationCalc.[h,cc]
346 - does not extract signal from Blind Pixel any more, searches
347 for MExtractedSignalBlindPixel and fills the hists from there
348
349 * macros/calibration.C, macros/bootcampstandardanalysis.C,
350 macros/pedphotcalc.C, mjobs/MJCalibration.cc:
351 - introduce the blind pixel and PIN diode extraction in the macro
352
353 * manalysis/MPedestalCam.h
354 - changed type of fTotalEntries from ULong_t to UInt_t
355 - fixed documentation of fTotalEntries
356
357 * manalysis/MPedCalcPedRun.h
358 - changed type of fNumSamplesTot from ULong_t to UInt_t
359
360 * mcalib/MHGausEvents.h
361 - changed type of fCurrentSize from ULong_t to UInt_t
362
363 * mcalib/MCalibrationConfig.h
364 - removed gkConversionHiLo and gkConversionHiLoErr which is now
365 directly in the class MCalibrationPix
366
367
368
369 2004/02/16: Thomas Bretz
370
371 * manalysis/AnalysisLinkDef.h:
372 - added missing MCerPhotEvtIter
373
374 * merpp.cc:
375 - added possible usage of database
376
377 * star.cc:
378 - moved source code into new class MJStar - preliminary
379
380 * manalysis/MCerPhotPix.cc:
381 - updated class header
382 - fixed Print-output
383
384 * mbase/MAGIC.h:
385 - removed definition of MLog
386
387 * mbase/MArgs.h:
388 - removed include of MAGIC.h
389
390 * mbase/MLog.h:
391 - added extern definition of gLog
392
393 * mbase/MParContainer.[h,cc]:
394 - move body of constructors to source file
395
396 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
397 mraw/MRawCrateArray.cc, mraw/MRawCrateData.cc,
398 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawRead.cc,
399 mraw/MRawEvtPixelIter.cc, mraw/MRawFileWrite.cc:
400 - fixed documentation header
401
402 * mcalib/MMcCalibrationCalc.[h,cc]:
403 - fixed documentation header
404 - fixed usage of FindCreateObj and FindObject
405 - removed data member to count entries (use histogram instead)
406 - use TH1 function Integral instead of doing it manually
407
408 * mfilter/MFCosmics.cc:
409 - fixed documentation
410
411 * mimage/MHillas.cc, mimage/MImgCleanStd.cc,
412 mimage/MNewImagePar.[h,cc]:
413 - replaced for-loops by Iterators
414
415 * mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc:
416 - fixed documentation header
417 - check return value of MRawRunHeader::ReadEvt
418
419 * mraw/mraw/MRawRunHeader.[h,cc]:
420 - fixed documentation header
421 - added return value to MRawRunHeader::ReadEvt
422 - added constant number for max format version - preliminary
423 (should by a static data member)
424
425 * mcalib/MHCalibrationPINDiode.cc:
426 - do not delete pointers in the destructor which are already
427 deleted in the base class
428 - reset histograms in Clear()
429
430 * mcalib/MHCalibrationPixel.cc:
431 - after deletion of instances in Clear() initialize pointer to NULL
432
433 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
434 - fixed usage of logging stream output levels
435
436 * manalysis/MPedCalcPedRun.[h,cc]:
437 - removed obsolete fSignals
438
439 - removed obsolete fNumPixels
440
441 * manalysis/MPedestalCam.h:
442 - added '->' to fArray
443
444 * mfileio/MWriteRootFile.cc:
445 - changed some output to make debugging easier
446
447 * mjobs/MJCalibration.cc:
448 - fixed a bug in drawing
449
450 * mjobs/MJExtractSignal.cc:
451 - removed MPedestalCam from MWriteRootFile output.
452 When creating the branch it crashes - reason unknown I'll
453 investigate further
454
455
456
457 2004/02/16: Markus Gaug
458
459 * mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C:
460 - added MHCalibrationRelTimePix
461
462 * mcalib/MHCalibrationRelTimePix.[h,cc],
463 mcalib/MHCalibrationRelTimeCam.[h,cc]:
464 - new classes to fit and display the relative arrival times.
465 - filled from MArrivalTime
466 - need: MFillH("MHCalibrationRelTimeCam","MArrivalTime")
467
468 * manalysis/MCalibrationCalc.cc
469 - take out all uncommented code referring to the relative arrival time
470
471 * manalysis/MArrivalTime.h
472 - changed function GetNumPixels to GetSize
473
474 * macros/bootcampstandardanalysis.C, macros/pedphotcalc.C
475 - included cosmics rejection which was in MCalibrationCalc before
476
477
478
479 2004/02/14: Markus Gaug
480
481 * mcalib/Makefile, mcalib/CalibLinkDef.h:
482 - added MHCalibrationChargePINDiode
483
484 * mcalib/MHCalibrationChargePINDiode.[h,cc]
485 - new class to fill the PIN Diode histograms. Derives from
486 MHCalibrationChargePix and is filled with MFillH from the
487 container MExtractedSignalPINDiode.
488 Will replace MHCalibrationPINDiode entirely soon.
489
490 * mcalib/MHCalibrationChargePix.[h,cc]
491 - new base class for the calibration charges histogram pixel.
492 Derives from MH and can be filled with the MH with the MH
493 functions.
494
495 * mcalib/MExtractPINDiode.[h,cc]
496 - new signal extractor for the PIN Diode
497
498 * mcalib/MExtractedSignalPINDiode.[h,cc]
499 - new container for the extracted signal of the PIN Diode
500
501 * mcalib/MCalibrationCalc.[h,cc]
502 - remove the PIN Diode signal extraction
503
504 * manalysis/MHPedestalPix.[h,cc]
505 - new version of MHPedestalPixel, deriving from MHGausEvents.
506
507 * manalysis/MHPedestalPixel.[h,cc]
508 - old version removed, since obsolete (and erroneous)
509
510 * manalysis/MHPedestalCam.[h,cc]
511 - histogramming part of MPedestalCam now in own class
512
513 * manalysis/MPedestalPix.h
514 - removed include of MHPedestalPixel
515
516 * macros/calibration.C
517 - changed pedestal displays accordingly
518
519 * mjobs/MJPedestal.h
520 - class TCanvas included (did not compile otherwise)
521
522 * mhbase/MH.cc
523 - included call to FindGoodLimits(..) in CutEdges()
524 - axe from pointer to reference
525 - "CutEdges" renamed to "StripZeros"
526
527 * manalysis/MHPedestalPixel.cc, mcalib/MHCalibrationPixel.cc,
528 mcalib/MHCalibrationBlindPixel.cc:
529 - "CutEdges" renamed to "StripZeros"
530
531 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
532 - replaced by the improved version: MHGausEvents.[h,cc]
533
534
535
536 2004/02/14: Thomas Bretz
537
538 * manalysis/MCerPhotEvt.[h,cc]:
539 - added 'Iterator' facility, this will replace some for-loops
540 in the near future
541
542 * mbase/MTime.[h,cc]:
543 - added a more powerfull interface to get and interprete the
544 MTime contents as string
545 - added a new constructor
546
547 * mreport/MReportTrigger.h:
548 - fixed GetPixContent
549
550 * mtools/MCubicCoeff.cc, mtools/MCubicSpline.[h,cc]:
551 - many small changes to simple details (like order of includes)
552 - some speed improvements
553 - many small simplifications
554 - changed parts of the code to be more C++ like (eg Iterators
555 instead of for-loops)
556 - disentangles some if-cases
557 - replaced some math.h function by TMath::
558 - removed data-member fN (obsolete with iterators)
559
560
561
562 2004/02/13: Wolfgang Wittek
563
564 * mcalib/MCalibrateData.[h,cc]
565 - new class;
566 like MCalibrate, but in ReInit it fills the MPedPhot container
567 using informations from MPedestal, MExtracteSignalCam and
568 MCalibrationCam
569
570 * mcalib/Makefile, mcalib/CalibLinkDef.h
571 - added MCalibrateData
572
573 * manalysis/MPedestalWorkaround.[h,cc]
574 - create MMcEvt container and fill with theta = 10.0
575 - set pedestalRMS = 0. if it is > 10.0
576
577 * manalysis/MSupercuts.[h,cc]
578 - change default values of parameters
579
580 * manalysis/MSupercutsCalc.[h,cc]
581 - change dNOMLOGSIZE from 4.1 to 5.0
582
583 * mhist/MHBlindPixels.[h,cc]
584 - change MPedestalCam to MPedPhotCam
585
586 * mhist/MHSigmaTheta.[h,cc]
587 - automatic binning for pixel number doesn't work
588 use default binning
589
590
591
592 2004/02/13: Markus Gaug
593
594 * mcalib/MCalibrationPix.[h,cc]
595 - added variables gkAverageQE, gkAverageQEErr, and fAverageQE,
596 fAverageQEErr
597 - gkAverageQE initializes to 0.2 (according to David)
598 - gkAverageQEErr initializes to 0.02 (dito)
599 - added new member function: SetAverageQE
600 - call to GetMeanConversionFFactorMethod returns:
601 fMeanConversionFFactorMethod/fAverageQE.
602 - call to GetErrorConversionFFactorMethod returns:
603 errors of fMeanConversionFFactorMethod and fAverageQEErr added
604 quadratically
605
606 * mcalib/Makefile
607 - split into two parts one comment line
608
609
610 2004/02/13: Thomas Bretz
611
612 * mbadpixels/MBadPixelsTreat.[h.cc]:
613 - added for new bad pixel treatment
614
615 * mbadpixels/Makefile, mbadpixels/BadPixelsLinkDef.h:
616 - added MBadPixelsTreat
617
618 * merpp.cc:
619 - changed the name of the "DC" tree to "Currents" to make
620 MReportRead work correctly with this tree
621
622 * mbase/MTime.[h,cc]:
623 - Changed UpDMagicTime to support nanosec instead of millisec
624 - exchanged Reset() by Clear() not to clear the yy/mm/dd
625 information away in an eventloop
626
627 * mraw/MRawEvtHeader.[h,cc]:
628 - implemented decoding of the time-stamp for raw-data files
629 with version>2. Thanks to Marcos.
630
631 * mraw/MRawRead.[h,c]:
632 - pipe file version number to MRawEvtHeader::ReadEvt
633 - create fake time for file-version<3
634
635 * macros/readMagic.C:
636 - changed to use MInteractiveTask
637
638 * mbase/MPrint.cc:
639 - fixed debugging level of some output
640
641 * mhist/MHCamera.[h,cc]:
642 - fixed handling in AddNotify (necessayr due to change of
643 inheritance from MCamEvent)
644 - replaced cout by gLog
645 - added fNotify to list of cleanups
646
647 * mhist/MHEvent.cc, mjobs/MJCalibration.cc,
648 mjobs/MJPedestal.cc:
649 - fixed usage of AddNotify
650
651 * mfileio/MReadReports.cc:
652 - use a different way to determin whether the tree is a valid tree,
653 skip invalid trees
654
655 * mfileio/MReadTree.cc:
656 - added another sanity check at the beginning of PreProcess
657
658 * mhbase/MFillH.[h,cc]:
659 - added bit kCanSkip which skips MFillH in case the necessary container
660 wasn't found.
661 - cd into the corresponding canvas before filling the MH
662
663
664
665 2004/02/12: Markus Gaug
666
667 * mbase/MArray.[h,cc]:
668 - changed name of StripZeros
669
670 * mcalib/MHGausEvent.cc:
671 - corrected call to StripZeros
672
673 * mcalib/MCalibrationPix.[h,cc]
674 - implemented dummy for combined method
675
676 * mcalib/MCalibrate.[h,cc]
677 - implemented a dummy for calibration factor 1. (requested by
678 Javier Rico)
679 - implemented combined method
680 - check for valid methods moved to ReInit
681
682 * mcalib/MCalibrationCalc.cc
683 - removed initialization of non-used nsamples
684
685 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.[h,cc],
686 mcalib/MCalibrationCalc.[h,cc]
687 macros/calibration.C
688 - implemented new histograms:
689 HSinglePheFADCSlices and HPedestalFADCSlices
690 They are filled with the FADC slice values of either a s.phe.
691 event or a pedestal event. The decision is taken with the
692 variable: MCalibrationCalc::fBlindPixelSinglePheCut, to be set
693 with a setter
694
695 * mtools/MFFT.[h,cc]
696 - PowerSpectrumDensity of TArrayI implemented
697
698
699
700 2004/02/12: Thomas Bretz
701
702 * mbase/MArray.[h,cc]:
703 - changed argument of CutEdges from pointer to reference
704
705 * mgeom/MGeomPix.h:
706 - fixed calculation of area of pixel. It was too big for a
707 factor of 2
708
709 * mjobs/MJCalibration.cc:
710 - slight change of name of a MHCamera
711
712 * manalysis/MExtractSignal.cc:
713 - slight change to the creation of the satpixels list
714
715 * mcalib/MHCalibrationBlindPixel.cc, mcalib/MHCalibrationPixel.cc,
716 mcalib/MHGausEvent.cc:
717 - corrected call to ProjectArray
718 - corrected call to CutEdges
719
720 * mfilter/MFCosmics.[h,cc]:
721 - small fixes to logging output
722 - small simplification to return statement
723 - declared CosmicsRejection const
724
725 * mhbase/MH.[h,cc]:
726 - changed argument of ProjectArray from pointer to reference
727 - added missing calcualtion of minimum
728 - removed obsolete SetEntries
729 - changed SetDirectory from NULL to gROOT
730
731
732
733 2004/02/12: Javier López
734
735 * macros/pointspreadfunction.C
736 - added new macro that fits with a 2D gaussian the DC spot for an
737 star. It gives you the RMS of the PSF and the center of the star,
738 very useful for misspointing studies.
739
740
741
742 2004/02/11: Hendrik Bartko
743
744 * manalysis/MExtractSignal2.cc:
745 - introduced a validity check for the set-function of the window
746 size (even number of slices, WindowSize < NumberSlices)
747
748 * manalysis/MArrivalTimeCalc2.[h,cc], manalysis/Makefile,
749 manalysis/AnalysisLinkDef.h:
750 - new: introduced the calculation of the arrival time as the signal
751 weighted mean of the time slices in the maximum window
752
753
754
755 2004/02/11: Markus Gaug
756
757 * mcalib/MCalibrationCalc.cc:
758 - the blind pixel signal extractor introduced one week ago, counted
759 one FADC slice too little, thus the normalization w.r.t. pedestals
760 was wrong. Now corrected.
761
762 * manalysis/MExtractSignal.cc, manalysis/MExtractSignal2.cc:
763 - when "WARNING - Lo Gain saturated" occurs, display also the
764 corr. pixel numbers.
765
766 * mbase/MArray.[h,cc]:
767 - introduced function to cut array edges with zeros.
768 (Thomas, should we keep it there or move it to another class? )
769
770 * mcalib/MCalibrationCalc.[h,cc]:
771 - new function SetBlindPixelRange to set start and end of FADC slices
772 used for the blind pixel signal extraction.
773 - remove fEvents which are not necessary any more after the shift
774 to MFCosmics.
775
776 * mcalib/MHCalibration(Blind)Pixel.[h,cc]:
777 - show the fourier spectrum now with axes in frequency [Hz] instead
778 of inverted events.
779
780 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
781 - new base class for all kind of events with variables having a
782 Gaussian distribution. Will serve as base class for the
783 existing and new calibration histogram classes.
784
785
786
787 2004/02/11: Abelardo Moralejo
788
789 * mmain/MEventDisplay.cc
790 - Switched order of MMcPedestalCopy and MCerPhotCalc in tasklist:
791 MMcPedestalCopy must be executed earlier!
792
793
794
795 2004/02/10: Raquel de los Reyes
796
797 * mhist/MHPixVsTime.[h,cc]:
798 - Added a default draw function and replaced the TGraph object
799 by a pointer to a TGraph object.
800
801 * mreport/MReportTrigger.h:
802 - Now it dereives from a MCamEvent class and implemented the
803 GetPixContent() and DrawPixelContent() functions.
804
805 * maccros/CCDataCheck.C:
806 - An update of the previous macro. New plots: subsystems status and
807 macrocells trigger.
808
809
810
811 2004/02/10: Markus Gaug
812
813 * mcalib/MCalibrationCam.cc:
814 - fixed documentation
815
816 * mhbase/MH.[h,cc]:
817 - new function ProjectArray
818
819 * mcalib/MHCalibrationPixel.[h,cc],
820 mcalib/MHCalibrationBlindPixel.[h,cc]:
821 - use ProjectArray from MH to plot the projection of the fourier
822 spectrum
823
824 * mfilter/MFCosmics.[h,cc], mfilter/Makefile,
825 mfilter/FilterLinkDef.h:
826 - new filter removing cosmics, the same as in MCalibrationCalc
827 where it was removed now.
828 Call: MFCosmics cosmics;
829 MContinue cont(&cosmics);
830 tlist.AddToList(&cont);
831
832 * mcalib/MCalibrationCalc.[h,cc]:
833 - removed cosmics rejection from there
834
835 * macros/calibration.C, mjobs/MJCalibration.cc:
836 - changed cosmics rejection to the filter algorithm
837
838
839
840 2004/02/09: Markus Gaug
841
842 * mcalib/MCalibrationBlindPix.[h,cc]:
843 - added histogram to display the average in FADC slices of all
844 single and double phe events
845
846 * mcalib/MCalibrationCalc.cc:
847 - fill histograms of single-phe events with higain and logain
848 sampls
849
850 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationCalc.cc,
851 mcalib/MCalibrationConfig.h:
852 - take all pixel areas out of MGeomPix::GetA(), remove all previous
853 areas
854 - calculate photon fluxes from blind pixel and PIN diode, use
855 area only to fill the conversion factors in MCalibrationPix
856
857
858 * mcalib/MJCalibration.cc:
859 - display of number of photons for Blindpixel and PIN Diode Method
860 changed to display of photon flux which is the actually
861 calculated quantity
862
863
864
865 2004/02/09: Thomas Bretz
866
867 * mbadpixels/*:
868 - added
869
870 * Makefile:
871 - added MBadPixels
872
873 * manalysis/MGeomApply.cc:
874 - fixed class description
875
876 * mjobs/MJCalibration.[h,cc], mjobs/MJExtractSignal.[h,cc]:
877 - added bad pixel treatment
878
879 * mjobs/MJPedestal.[h,cc]:
880 - reorganized order of functions
881 - removed a nonsense scrren output (some BLABABLA or so)
882
883 * mjobs/Makefile:
884 - added include for mbadpixels
885
886 * mmain/MBrowser.cc:
887 - do not call construtor of TGTReeLBEntry if pic0=0
888
889
890
891 2004/02/09: Raquel de los Reyes
892
893 * mcamera/MCameraLids.h, mreport/MReportCamera.h
894 - Added the "Get" functions to access the private data
895 members of the class.
896
897
898
899 2004/02/09: Markus Gaug
900
901 * MMcCalibrationUpdate.cc, MCalibrate.cc, MCalibrationPix.cc,
902 MCalibrationPix.h:
903 - replace MCalibrationPix->IsChargeFitValid() by IsChargeValid()
904 because we can calibrate with the histogram mean and RMS even
905 if the fit is not OK. Thus, there is a question: IsFitted() and
906 IsChargeValid(), i.e. does the charge make any sense?
907
908 * MCalibrationCam.cc, MCalibrationConfig.h, MCalibrationCalc.cc:
909 - found serious bug in calculation of conversion factors for the
910 outer pixels:
911 GetMeanConversionBlindPixelMethod and
912 GetMeanConversionPINDiodeMethod
913 did not correct for the area of the outer pixel, this did only
914 MCalibrationCam::GetPixelContent which is not used by MCalibrate
915
916
917
918 2004/02/06: Markus Gaug
919
920 * mgeom/MGeomCam.h
921 - replaced in Comment of fPixRatio:
922 "ratio between size of pixel idx and pixel 0" by
923 "ratio between size of pixel 0 and pixel idx"
924
925 * manalysis/MPedestalCam.cc
926 - catch calls to MHPedestalPixel in case that they are not filled
927 This led previous calls to segmentation violations
928 - remove include of MHExtractedSignalPix
929
930 * manalysis/MHExtractedSignalPix.[h,cc]
931 - is everything in MHPedestalPixel, so removed it again
932
933 * mjobs/MJPedestal.cc
934 - put the projections into Display()
935 - correct the input of Display (0: pedestal, 1: pedestalerror,
936 2: pedRMS, 3: pedRMSerror)
937
938 * manalysis/MHPedestalPixel.cc
939 - increased number of bins in for charges plot
940
941 * mtools/MFFT.[h,cc]
942 - possibility to have PSD directly from TArray
943
944 * mjobs/MJCalibration.[h,cc]
945 - fixed displays
946 - replaced MExtractSignal by MExtractSignal2
947
948 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc],
949 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationBlindPix.[h,cc],
950 mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationPINDiode.[h,cc]:
951 - remove histograms MHChargevsN..., now keep TArrays directly
952 - check for oscillations for all pixels (and you will not trust
953 your eyes when you look at the results :-((((
954
955 * mcalib/MCalibrationCalc.[h,cc]
956 - remove ArrivalTime -> go to separate class
957 - remove BlindPixel and PIN Diode overflow, now handled directly
958 inside the corr. classes.
959 - remove SkipTimeFits -> go the arrival time class
960
961 * mcalib/MCalibrationCam.h
962 - new getters for number of photons
963 - removed timeslicewidth -> go the corr. time containers
964
965 * mcalib/MCalibrationCam.cc
966 - removed times of GetPixelContent
967 - added OscillationChecks in GetPixelContent
968
969 * manalysis/MMcCalibrationUpdate.cc
970 - remove calpix.SkipTimeFits which is now obsolet
971
972 * macros/calibration.C
973 - all previous changes now in this macro.
974 - (NB: Thomas, du brauchst in MJCalibration nicht mehr aendern,
975 das ging diesmal in einem Aufwasch)
976
977
978
979 2004/02/06: Thomas Bretz
980
981 * mhist/MHPixVsTime.[h,cc]:
982 - changed such that you can set the name of the time container now
983
984 * mraw/MRawRunHeader.[h,cc]:
985 - added GetMaxPixId()
986
987 * mraw/MRawEvtData.cc:
988 - fixed wrong size calculation for fABflags
989
990
991
992 2004/02/06: Oscar Blanch
993
994 * mmc/MFadcDefine.h && mmc/MMcFadcHeader.cxx
995 - We cahnged the name (and values) of the global variable
996 MFADC_RESPONSE_AMPLITUDE to MFADC_RESPONSE_INTEGRAL
997
998
999
1000 2004/02/05: Markus Gaug
1001
1002 * mcalib/MHCalibrationPixel.[h,cc]
1003 - put an NDF limit for the fit
1004 - removed all TStrings and replace them by Form(..)
1005 - Check for nan's of all returned fit values
1006
1007 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc:
1008 - reshuffled HiLoGainConversion, calculation of F-Factor method,
1009 - calculation of total F-Factor of the readout.
1010
1011 * mcalib/MCalibrationCam.cc
1012 - include relative times to display with GetPixelContent
1013
1014 * mcalib/MCalibrationCalc.[h,cc]
1015 - flag to skip Hi-Lo Calibration
1016 - Hi-LO Graph not filled any more after overflow of ChargevsN
1017 - fill the blind pixel differently from the rest of pixels
1018
1019 * mcalib/MCalibrate.cc:
1020 - call to const MCalibrationPix &pix replaced by MCalibrationPix &pix
1021
1022 * manalysis/MArrivalTimeCalc.cc
1023 - default step width 100 ps.
1024 - look for half maximum (at rising edge)
1025
1026 * manalysis/MExtractSignal.[h,cc]
1027 - removed uncommented code (arrival time)
1028 - set start byte back by one like it was before TB's changes
1029 (does not affect the calculation of number of FADC slices)
1030
1031 * manalysis/MExtractSignal2.[h,cc]
1032 - removed uncommented code (arrival time)
1033
1034 * manalysis/MHPedestalPixel.[h,cc]
1035 - is now filled with total pedestals (not per slice), but results are
1036 renormalized to values per slice (this is not to screw up with the
1037 pedestal RMS and the derived uncertainties)
1038 - new function Renorm(nslices)
1039
1040 * manalysis/MPedestalCam.[h,cc]
1041 - introduced function Clone() (like proposed by TB)
1042 - call to MHPedestalPixel operator() not const any more
1043 - take out lots of uncommented code
1044 - found bug in initialization of hists. SetupFill is called in
1045 PreProcess, therefore, TObjArray is not yet enlarged there.
1046 Now, InitUseHists is called in Fill
1047 - MHPedestalPixel is now filled with total pedestals (not per slice),
1048 but results are
1049 renormalized to values per slice (this is not to screw up with the
1050 pedestal RMS and the derived uncertainties)
1051
1052 * manalysis/MPedCalcPedRun.cc
1053 - added author
1054 - split calculation of RMS into two steps to make it more clear to
1055 the user
1056
1057 * macros/calibration.C
1058 - found bug introduced two days ago, namely calculating pedestlas with
1059 MExtractSignal2 which is now fixed
1060 - Skip HiLoConversionCalibration
1061
1062
1063
1064 2004/02/05: Abelardo Moralejo
1065
1066 * macros/starmc2.C
1067 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add
1068 for both MMcEvt and MMcRunHeader since these containers are
1069 not present in real data. Name of macro is no longer adequate if
1070 we will use it for calibrated real data (to be changed if so).
1071
1072
1073
1074 2004/02/05: Sebastian Raducci
1075
1076 * mtools/MCubicSpline.[h,cc]
1077 - added
1078 - this class will take the place of the TSpline class to
1079 calculate arrival times
1080
1081 * mtools/MCubicCoeff.[h,cc]
1082 - added
1083 - this class is used by MCubicSpline to store coefficients
1084
1085 * macros/spline.C
1086 - added
1087 - test macro. Shows how to use the MCubicSpline class
1088 - it could be used to test the methods of the Spline class
1089
1090
1091
1092 2004/02/05: Thomas Bretz
1093
1094 * mmain/MBrowser.cc:
1095 - fixed a double deletion of a TGLayoutHints
1096
1097
1098
1099 2004/02/04: Markus Gaug
1100
1101 * mmain/MBrowser.cc:
1102 - corrected TGTReeLBEntry for TGTreeLBEntry
1103
1104
1105
1106 2004/02/04: Thomas Bretz
1107
1108 * manalysis/MExtractSignal2.cc:
1109 - don't allow odd numbers for the window size
1110
1111 * mfilter/MFilterList.cc:
1112 - corrected a wrong logging message
1113
1114 * mmain/MBrowser.cc:
1115 - added '/data/MAGIC' as shortcut in the combo box
1116
1117 * mraw/MRawEvtPixelIter.cc:
1118 - optimized calculation of MaxIdx
1119
1120
1121
1122 2004/02/04: Abelardo Moralejo
1123
1124 * macros/starmc2.C
1125 - removed unnecessary variables BinsHigh, BinsLow
1126
1127
1128
1129 2004/02/04: Markus Gaug
1130
1131 * manalysis/MPedestalCam.[h,cc], manalysis/MPedestalPix.[h,cc],
1132 manalysis/MPedCalcPedRun.[h,cc], manalysis/MHPedestalPixel.[h,cc],
1133 macros/calibration.C:
1134 - histograms are now filled with MFillH as proposed and coded by
1135 Thomas Bretz. Some modifications had to be done, however.
1136 - Class to hold MHPedestalPixel is still MPedestalCam
1137 - MPedCalcPedRun does nothing any more (except from what is was
1138 doing before)
1139
1140 * manalysis/MExtractSignal.cc
1141 - remove uncommented code
1142
1143 * mcalib/MCalibrationCalc.[h,cc]
1144 - modified way to handle histogram overflow: Now flags are set and
1145 ChargevsN histogram is not tried to be filled subsequently
1146
1147
1148
1149 2004/02/03: Markus Gaug
1150
1151 * manalysis/MHExtractedSignalPix.[h,cc]
1152 - added Thomas B. modified version of MHPedestalPixel. Later will
1153 remove MHPedestalPixel
1154
1155 * manalysis/MCalibrationPix.[h,cc], manalysis/MHCalibrationPixel.[h,cc],
1156 manalysis/MCalibrationCam.cc, macros/calibration.C:
1157 - now split completely absolute and relative times. Absolute
1158 times are not fitted, but their histogram mean and rms are
1159 returned.
1160
1161
1162
1163 2004/02/03: Thomas Bretz
1164
1165 * mfileio/MReadTree.cc:
1166 - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
1167
1168 * manalysis/MExtractSignal.[h,cc]:
1169 - moved code to extract the signal from Process to
1170 new member function FindSignal, I left the arrival time
1171 extraction as commented-out code in the code just as a
1172 demonstration to do this very fast.
1173
1174
1175
1176 2004/02/02: Markus Gaug
1177
1178 * manalysis/MPedCalcPedRun.cc
1179 - corrected formulae in Class description
1180
1181 * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
1182 manalysis/MMcCalibrationUpdate.cc:
1183 - calculate relative times and absolute times. Fit only
1184 the relative ones.
1185
1186
1187
1188 2004/02/02: Abelardo Moralejo
1189
1190 * manalysis/MMcCalibrationUpdate.cc, MMcPedestalCopy.cc
1191 - removed file type check (MC or data) from PreProcess since now
1192 run headers are not yet known at that point.
1193
1194 * mcalib/MMcCalibrationCalc.cc
1195 - same as above.
1196
1197 * NEWS
1198 - updated.
1199
1200
1201
1202 2004/02/02: Thomas Bretz
1203
1204 * manalysis/MExtractSignal2.[h,cc]:
1205 - added new task which takes a given number of slices with the
1206 highest integral content as signal.
1207
1208 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1209 - added MExtractSignal2
1210
1211
1212
1213 2004/01/30: Abelardo Moralejo
1214
1215 * macros/starmc.C
1216 - changed default FADC integration range (more adequate for coming
1217 camera version).
1218
1219 * macros/mccalibrate.C, starmc2.C
1220 - added. First macro transforms input files from camera simulation
1221 into files with pixel data already calibrated in photons. The
1222 second reads in an already calibrated data file and produces an
1223 output file with Hillas parameters. Both together do the same as
1224 starmc.C, but it is convenient to have files containing
1225 calibrated pixel information.
1226
1227
1228
1229 2004/01/30: Thomas Bretz
1230
1231 * mbase/MDirIter.h:
1232 - added GetNumEntries
1233
1234 * mhist/MHEvent.cc:
1235 - added a dynamic_cast from MParContainer to MCamEvent to get the
1236 correct pointer to the correct base-class.
1237
1238 * mbase/MStatusDisplay.cc:
1239 - In EventInfo check whether gPad==0
1240
1241 * mfileio/MReadMarsFile.cc:
1242 - removed reading RunHeaders from PreProcess, this resulted
1243 in strange behaviour of writing RunHeaders
1244 - fixed consistency check for RunType accordingly
1245
1246 * mfilter/MFilterList.cc:
1247 - do not skip adding filter if only a filter with the same name
1248 exists
1249
1250 * mraw/MRawFileRead.cc:
1251 - added an output message if run header is not accessible
1252
1253 * mraw/MRawRunHeader.[h,cc]:
1254 - initialize fRunType to new enum kRTNone
1255
1256 * mfilter/MFGeomag.cc:
1257 - set fResult to kFALSE at the beginning of Process
1258 - according to this removed setting fResult=kFALSE before return
1259 - replaced some float by Float_t
1260 - added some const-qualifiers
1261 - replaced (rig<0.5/pr*R*(r2-r1)+r1) by (rig-r1)*pr<rnd
1262 with rnd = R * (r2-r1)/2 to make sure that we cannot
1263 devide by 0
1264
1265 * manalysis/MPedCalcPedRun.cc:
1266 - added some comments
1267
1268 * Makefile:
1269 - added mjobs
1270
1271 * mjobs/*:
1272 - added
1273
1274 * mbase/Makefile, mbase/BaseLinkDef.h:
1275 - added MRunIter
1276
1277 * mbase/MRunIter.[h,cc]:
1278 - added
1279
1280
1281
1282 2004/01/30: Markus Gaug
1283
1284 * manalysis/MPedestalCam.h
1285 - added function IsUsedHists()
1286
1287 * manalysis/MPedestalCam.cc
1288 - modified GetPixelContent
1289
1290 * manalysis/MPedestalCam.cc, manalysis/MPedCalcPedRun.cc:
1291 - include storage of number of used FADC slices to compare later
1292 the pedestal per slice ( and sigma per slice)
1293 - return relative differences in GetPixelContent
1294
1295 * mcalib/MCalibrationCalc.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc]:
1296 - fBlindPixelId and fPINDiodeId now like in PedestalCam
1297 - fill Blind Pixel with information about its fitted pedestal if
1298 available
1299 - initialize charges histogram with a bigger range
1300 - use pedestal information to constrain the pedestal fit ranges
1301
1302 * manalysis/MHPedestalPixel.cc
1303 - initialize charges histogram with a bigger range
1304
1305 * macros/calibration.C
1306 - SetRange of MExtractSignal to 1,14 (see emails of yesterday)
1307 - apply new GetPixelContents of MPedestalCam (more calculations
1308 and displays of errors, correction for different FADC slice
1309 number)
1310
1311 * manalysis/MExtractSignal.cc
1312 - not access to MArrivalTime any more. The same information is
1313 stored in MRawEvt->GetPixelContent(...)
1314
1315 * manalysis/MCalibrationCalc.cc
1316 - retrieve default arrival time from MRawEvt
1317
1318 * manalysis/MCalibrationBlindPix.cc, manalysis/MCalibrationPix.cc
1319 - check for NaN's in fit results
1320
1321
1322
1323 2004/01/29: Abelardo Moralejo
1324
1325 * mfileio/MWriteFile.h
1326 - added missing declaration of ReInit
1327
1328 * manalysis/MMcCalibrationUpdate.cc
1329 - added call to MCalibrationCam::SetBlindPixelMethodValid(kTRUE)
1330 to adapt to recent changes in MCalibrate.
1331
1332
1333
1334 2004/01/29: Thomas Bretz
1335
1336 * manalysis/MArrivalTime.h, manalysis/MCameraData.h,
1337 manalysis/MCerPhotEvt.h, manalysis/MExtractSignalCam.h,
1338 manalysis/MPedPhotCam.h, manalysis/MPedestalCam.h,
1339 mcalib/MCalibrationCam.h, mcamera/MCameraDC.h,
1340 mraw/MRawEvtData.h, mreflector/MRflEvtData.h:
1341 - split derivement into MParContainer and MCamEvent
1342
1343 * manalysis/MExtractSignalCam.[h,cc]:
1344 - removed obsolete MExtractSignal::ReInit
1345 - added -> to fArray
1346
1347 * mbase/MParList.h:
1348 - added a new bit kIsProcessing
1349
1350 * mbase/MTaskList.cc:
1351 - fixed the handling of kDoNotReset and the bahaviour of
1352 SetReadyToSave, such that it is possible to write all
1353 headers
1354
1355 * mfileio/MWriteFile.cc:
1356 - added ReInit which also calls CheckAndWrite
1357
1358 * mgui/MCamEvent.h:
1359 - does not derive from MParContainer anymore
1360
1361
1362
1363 2004/01/29: Markus Gaug
1364
1365 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
1366 mcalib/MCalibrationConfig.h
1367 - put gkCalibrationBlindPixelId and gkCalibrationPINDiodeId
1368 directly into the corresponding classes.
1369
1370
1371
1372 2004/01/29: Nicola Galante
1373
1374 * mhistmc/MHMcTriggerLvl2.[h,cc]:
1375 - In method MHMcTriggerLvl2::GetHistByName(const TString name)
1376 added string checking to return also
1377 fHistCellPseudoSize, fHistCellPseudoSizeNorm
1378 and fHistCellPseudoSizeEnergy.
1379 - Added inline functions GetHistCellPseudoSize() and
1380 GetHistCellPseudoSizeNorm().
1381
1382
1383
1384 2004/01/28: Javier Rico
1385
1386 * mcalib/MCalibrate.[h.cc]
1387 - include possibility to select the calibration method to be used
1388
1389
1390
1391 2004/01/28: Markus Gaug
1392
1393 * mcalib/MCalibrate.[h.cc]
1394 - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
1395
1396 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
1397 - included flags to indicate if Blind Pixel Method or PIn Diode
1398 method was OK. Up to now, program stopped, if one of the two
1399 methods was chosen but not able to being executed.
1400
1401 * manalysis/MArrivalTimeCalc.cc, manalysis/MExtractSignals.cc,
1402 manalysis/MGeomApply.cc:
1403 - put all missing InitSize(npixels) into MGeomApply
1404
1405 * manalysis/MPedCalcPedRun.[h,cc], manalysis/MPedestalCam.[h,cc],
1406 manalysis/MPedestalPix.[h,cc], manalysis/MHPedestalPixel.[h,cc],
1407 manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1408 - include possibility to fit the pedestals with Gaussian.
1409 - old methods are not affected.
1410 - add new method with MPedCalcPedRun::SetUseHists()
1411
1412
1413
1414 2004/01/28: Abelardo Moralejo
1415
1416 * mcalib/MMcCalibration.cc
1417 - fixed wrong variable type in call to TH1F constructor (number of
1418 bins is now integer), which resulted in a compilation warning.
1419
1420
1421
1422 2004/01/28: Thomas Bretz
1423
1424 * manalysis/MPedestalCam.cc:
1425 - removed unwanted CheckBound from operators. CheckBounds is ONLY
1426 ment for really old MC files and will be removed in the future
1427 anyhow.
1428
1429 * mcalib/MHCalibrationPixel.h:
1430 - removed obsolete include of MFFT
1431
1432 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
1433 manalysis/MPedestalCam.[h,cc]:
1434 - removed use of obsolete MPedestalCam::CheckBounds. This was
1435 a workaround for a 'bug' in very old camera files, which is not
1436 necessary anymore.
1437
1438 * manalysis/MCerPhotAnal2.[h,cc]:
1439 - replaced MPedestalCam by MPedPhotCam
1440
1441 * manalysis/MExtractSignal.cc:
1442 - some small simplification to the signal extraction
1443 - removed some obsolete variables
1444 - replaced for by while
1445 - removed obsolete casts
1446
1447 * mmain/MEventDisplay.cc:
1448 - gave names to the filters
1449 - removed adding MHCamera to fList because it was deleted twice
1450
1451 * mhist/MHCamera.cc:
1452 - fixed usage of fPainter in Paint() - title was not updated
1453 correctly
1454
1455
1456
1457 2004/01/28: Sebastian Raducci
1458
1459 * manalysis/MArrivalTime.[h,cc]:
1460 - removed all the code relative to the cluster evaluation
1461
1462
1463
1464 2004/01/27: Markus Gaug
1465
1466 * manalysis/MPedestalPix.cc:
1467 - initialize default values to 0 instead of -1.
1468
1469 * manalysis/MPedestalCam.[h,cc]:
1470 - include CheckBounds, also in operator[]
1471
1472 * mcalib/MCalibrationCam.[h,cc]:
1473 - apparently, there was a reference to InitSize(UInt_t i) instead
1474 of InitSize(Int_t i), where compiler complained, now changed
1475
1476 * mcalib/MHCalibration*, mcalib/MCalibration*:
1477 - fixed all Clear()'s, Reset()'s, direct intializers
1478
1479
1480
1481 2004/01/27: Thomas Bretz
1482
1483 * mdata/MDataChain.cc:
1484 - added '%' to supported operators
1485
1486
1487
1488 2004/01/26: Nicola Galante
1489
1490 * manalysis/MMcTriggerLvl2.[cc,h]:
1491
1492 - Defined some static constants to avoid ugly "magic numbers"
1493 in arrays: gsNCells, gsNTrigPixels,
1494 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
1495 - Added method
1496 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
1497 which computes compact pixels into a given L2T macrocell.
1498 - Added method
1499 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
1500 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
1501 macrocells
1502 - Added method
1503 MMcTriggerLvl2::GetCellPseudoSize() const
1504 which returns fCellPseudoSize
1505 - Added method
1506 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
1507 which controls whether a pixel belongs to a given L2T cell.
1508 - Added method
1509 MMcTriggerLvl2::GetMaxCell() const
1510 which returns fMaxCell, the cell with the maximum
1511 fCellPseudoSize.
1512
1513
1514
1515 2004/01/26: Markus Gaug, Michele Doro
1516
1517 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
1518 - moved calculation of arrival time from MArrivalTime to
1519 MArrivalTimeCalc. MArrivalTime does not do any Process-job
1520 anymore
1521 - TSpline5 now on stack.
1522 - function to set the stepsize
1523
1524 * mcalib/MHCalibrationBlindPixel.[h,cc]:
1525 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
1526 - implement combined Polya fit and Michele's back-scattered electron
1527 fit
1528
1529 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
1530 mcalib/MCalibrationPINDiode.cc:
1531 - combine FitChargeHiGain and FitChargeLoGain into one function
1532
1533 * macros/calibration.C
1534 - improve double gauss fit a bit
1535
1536
1537
1538 2004/01/26: Thomas Bretz
1539
1540 * mraw/MRawEvtPixelIter.[h,cc]:
1541 - removed member function GetNumPixels. For more details see mantis.
1542
1543 * manalysis/MArrivalTime.[h,cc]:
1544 - reorganized includes
1545 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
1546 definition
1547 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
1548 PROGRAM
1549
1550 * manalysis/MArrivalTimeCalc.[h,cc]:
1551 - reorganized includes
1552 - removed many obsolete code, exspecially copy&paste relicts!
1553 - fixed usage of InitSize
1554 - removed CleanArray. Reset() is called automatically before Process()
1555
1556 * manalysis/MExtractedSignalCam.[h,cc]:
1557 - added SetLogStream
1558 - removed obsolete include MGeomCam
1559 - replaced PrintOut by Print
1560 - added const-qualifiers to all Getters
1561 - fixed documentation
1562
1563 * manalysis/MExtractedSignalPix.[h,cc]:
1564 - replaced PrintOut by Print
1565 - fixed documentation
1566
1567 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
1568 - replaced memset by Reset()
1569
1570
1571
1572 2004/01/24: Abelardo Moralejo
1573
1574 * macros/starmcstereo.C
1575 - Added. Example of how to run the analysis chain for MC files
1576 containing simulation of stereo systems of 2 telescopes.
1577
1578 * mcalib/MCalibrate.cc
1579 - Added check that value of signal from MExtractedSignalPix is not
1580 the default (error) value. In such a case, the signal in
1581 MCerPhotEvt is now set to 0. Before, all pixels got very high
1582 values in MCerPhotEvt in case the MRawEvtData object for the
1583 event was missing in the file. This happened in MC files, in
1584 which in some circumstances an event is written without the
1585 pixel information (for instance, when running stereo simulations
1586 the pixel data is missing for non-triggered telescopes, but the
1587 event headers are present).
1588
1589
1590
1591 2004/01/23: Markus Gaug
1592
1593 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
1594 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
1595 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
1596 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
1597 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
1598 - use MArrivalTime for Storage (or calculation) of time
1599 in MExtractSignal
1600 - pass from TH1I histos to TH1F for times
1601
1602 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
1603 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
1604 mcalib/MCalibrationCalc.[h,cc]:
1605 - clean up setters
1606 - pass to bit-fields for all flags
1607
1608 * mcalib/MCalibrationCam.cc
1609 - exclude Blind Pixel from Camera display
1610 - do not fill &val when return kFALSE
1611
1612 * macros/calibration.C
1613 - include functions to exclude the blind pixel,
1614 calculation of times and quality checks
1615
1616
1617
1618 2004/01/23: Abelardo Moralejo
1619
1620 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
1621 - Added support (using AddSerialNumber) for stereo MC files.
1622
1623
1624
1625 2004/01/23: Thomas Bretz
1626
1627 * mbase/MAstro.cc:
1628 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
1629
1630 * mreport/MReport*.[h,cc]:
1631 - changed all classes to return Int_t instead of Bool_t in
1632 InterpreteBody
1633 - changed MReportFileRead such, that a wrong line results in
1634 skipping the line instead of abort reading.
1635
1636 * manalysis/MExtractSignal.cc:
1637 - do not print information for each pixel - it's too much.
1638
1639 * mbase/MStatusDisplay.cc:
1640 - when reading a status display do not display tabs with
1641 the same name than one which is already existing.
1642
1643 * mcalib/MCalibrate.cc:
1644 - directly store pointer to pixel when setting saturation flag
1645
1646 * mcamera/MCameraDC.cc:
1647 - fixed some comments
1648
1649 * mhist/MHCamEvent.cc:
1650 - fixed a crash when no geometry was available
1651
1652 * mhist/MHCamera.[h,cc]:
1653 - removed obsolete member function SetPix
1654
1655 * mbase/MStatusDisplay.[h,cc]:
1656 - added EventInfo member function
1657 - implemented preliminary redirection of GetObjectInfo to
1658 StatusLine2 -> An own status line for this is missing
1659
1660 * manalysis/MExtractSignal.[h,cc]:
1661 - implemented StreamPrimitive
1662 - changed deafults to be static const data members
1663
1664 * manalysis/MGeomApply.[h,cc]:
1665 - implemented StreamPrimitive
1666
1667
1668
1669 2004/01/23: Abelardo Moralejo
1670
1671 * manalysis/MMcCalibrationUpdate.[h,cc]
1672 - Added check to guarantee that the FADC simulation parameters of
1673 all read files (those used for calibration and those analyzed)
1674 are the same.
1675 - Added missing support for analysis of stereo files.
1676
1677 * mcalib/MMcCalibrationCalc.cc
1678 - Removed obsolete FIXME comment.
1679 - Added missing support for analysis of stereo files.
1680
1681
1682 2004/01/23: Raquel de los Reyes
1683
1684 * macros/CCDataCheck.C
1685 - Added the temperature distribution of the optical links
1686 and the plots of the LV power supplies.
1687 * mcamera/MCameraLV.h
1688 - Added the "Get" functions to access the private data
1689 members of the class.
1690
1691
1692 2004/01/22: Abelardo Moralejo
1693
1694 * manalysis/MMcCalibrationUpdate.[h,cc]
1695 - Now ratio of high to low gain is taken from MCalibrationCam if
1696 it existed previously in the parameter list, instead of being
1697 read again from the MMcFadcHeader. Removed Setter function for
1698 fADC2PhInner, no longer necessary. Fixed error regarding the
1699 pedestal conversion to photons (did not read conversion factor
1700 from preexisting MCalibrationCam object).
1701
1702 * mcalib/MMcCalibrationCalc.cc
1703 - Changed parameters of the histogram, and also the quantity being
1704 histogrammed. Check that input data come from a noiseless camera
1705 file before proceeding to do the calibration. Introduced lower
1706 size in cut for calibration. Now rhe calibration constant is not
1707 calculated from the mean of photons/ADC counts, but from the peak
1708 of the histogram.
1709
1710 * macros/starmc.C
1711 - Introduced new scheme. Now there are two loops over two different
1712 sets of files. First loop calculates the calibration constants,
1713 second one does the analysis. Introduced comments. Now the
1714 histogram used in the light calibration is written to the output
1715 file.
1716
1717
1718
1719 2004/01/22: Thomas Bretz
1720
1721 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
1722 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
1723 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
1724 mcalib/MCalibrationBlindPixel.[h,cc],
1725 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
1726 mcalib/MHCalibrationBlindPixel.[h,cc],
1727 mcalib/MHCalibrationPINDiode.[h,cc]:
1728 - cleaned up includes
1729
1730
1731
1732 2004/01/22: Raquel de los Reyes
1733
1734 * macros/CCDataCheck.C
1735 - macro to check the data from the central control (.rep files).
1736
1737
1738
1739 2004/01/22: Markus Gaug
1740
1741 * macros/calibration.C
1742 - made MStatusDisplay 3 bit smaller
1743
1744 * manalysis/MExtractSignal.cc
1745 - put fSignals->SetUsedFADCSlices into PreProcess
1746
1747 * manalysis/MPedCalcPedRun.cc
1748 - calculate PedRMS as RMS of the sums, later renormalized to units
1749 of RMS/slice (eliminate the wrong effect of odd and even slices)
1750
1751 * mcalib/MCalibrationCalc.cc
1752 - if bit SkipBlindPixelFit is set, now number of photons outside
1753 plexiglass is not intended to be calculated any more (previous
1754 bug)
1755 - exclude excluded pixels in eventloop
1756
1757 * mcalib/MHCalibrationBlindPixel.[h,cc]
1758 - move functions to pointer again (otherwise, Clone will give
1759 strange results)
1760
1761
1762
1763 2004/01/21: Abelardo Moralejo
1764
1765 * mcalib/MMcCalibrationCalc.[h,cc]
1766 - Added. First version of the task intended to calculate the
1767 conversion factors from ADC counts to photons in the MC. It has
1768 a different aim than the recently renamed class
1769 "MMcCalibrationUpdate" (which takes care that the correct
1770 pedestals and conversion factors are supplied to each event, but
1771 does not really calculate anything).
1772
1773 * mcalib/Makefile, CalibLinkDef.h
1774 - Added new class MMcCalibrationCalc
1775
1776 * manalysis/MMcCalibrationUpdate.[h,cc]
1777 - Now the container MCalibrationCam is not created or modified if
1778 it is found that one such container already exists in the
1779 Parameter list (from a previous calibration).
1780
1781
1782
1783 2004/01/21: Thomas Bretz
1784
1785 * mraw/MRawRead.cc:
1786 - restore the fake time for all runs (current time stamp in
1787 the data seems to be toally nonsense)
1788
1789 * mraw/MRawEvtHeader.cc:
1790 - removed decoding of real time (current time stamp in the data
1791 seems to be toally nonsense)
1792
1793
1794
1795 2004/01/21: Abelardo Moralejo
1796
1797 * mmc/MMcEvt.hxx
1798 - Uncommented 6 Getter functions (those regarding the number of
1799 photons surviving the different stages of simulation).
1800
1801 * manalysis/MMcCalibrationUpdate.[h,cc]
1802 - Added (see below).
1803
1804 * manalysis/MMcCalibrationCalc.[h,cc]
1805 - Removed: changed name of this class to MMcCalibrationUpdate,
1806 which is more representative of what it really does. Moved
1807 the filling of the MCalibrationCam container from Process to
1808 ReInit, since it does not change on an event by event basis.
1809 Simplified PreProcess (MCalibrationCam was searched for twice).
1810 Updated class description and comments.
1811
1812 * manalysis/Makefile, AnalysisLinkDef.h
1813 - Adapted to change above
1814
1815 * macros/starmc.C
1816 - Adapted to change above. Changed also task instance name from
1817 mccalibcalc to mccalibupdate.
1818
1819
1820
1821 2004/01/21: Raquel de los Reyes
1822
1823 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
1824 and mcamera/MCameraCalibration.h
1825 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
1826 the private data members of the class.
1827
1828
1829
1830 2004/01/20: Thomas Hengstebeck
1831
1832 * mranforest/MRanForestCalc.[h,cc]
1833 - Added member functions Grow (training of RF) and Fill (reading in
1834 trained forest from file) which simplify macros.
1835 One just needs to call them instead of using MRanForestGrow and
1836 MRanForestFill (and the related training and fill loops) in a
1837 macro.
1838
1839
1840
1841 2004/01/20: Abelardo moralejo
1842
1843 * manalysis/MMcCalibrationCalc.cc
1844 - removed call to MCalibrationPix::SetPedestal, which was not
1845 needed.
1846
1847
1848
1849 2004/01/20: Thomas Bretz
1850
1851 * Makefile:
1852 - replaced 'make' by '$(MAKE)'
1853
1854 * Makefile.rules:
1855 - added Makefile itself to dependencies
1856
1857 * mbase/MTask.cc:
1858 - added comment about ReInit
1859
1860 * mhbase/MH.cc:
1861 - do not clear pad in DrawClone if 'same' option given
1862
1863 * mhist/MHVsTime.cc:
1864 - evaluate 'same' option
1865
1866 * mfileio/MReadCurrents.[h,cc]:
1867 - obsolete, removed
1868
1869 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
1870 - added some comments
1871
1872
1873
1874 2004/01/20: Abelardo moralejo
1875
1876 * mcalib/MHCalibrationPINDiode.cc
1877 - Added call to SetDirecory(0) for histograms fHErrCharge,
1878 fHPCharge, fHPTime.
1879
1880 * manalysis/MCerPhotPix.h:
1881 - Changed position of declaration of fIsSaturated to be the last
1882 private variable. Otherwise, since in the constructor it is
1883 initialized in the last place, a warning is displayed upon
1884 compilation in some systems.
1885
1886
1887
1888 2004/01/20: Markus Gaug
1889 * mcalib/Makefile, manalysis/Makefile:
1890 - include directory ../mtools
1891
1892 * mtools/MFFT.[h,cc]
1893 - class inherits from TObject now
1894
1895
1896
1897 2004/01/19: Markus Gaug
1898
1899 * mcalib/MHCalibrationBlindPixel.[h,cc]
1900 - fixed a bug in fFitLegend due to which program crashed by calls
1901 to DrawClone
1902 - Modified way to change the fit function
1903
1904 * mcalib/MHCalibrationPixel.[h,cc]
1905 - reordered function calls
1906 - removed SetupFill
1907
1908 * mcalib/MHCalibrationPINDiode.h
1909 - reordered function calls
1910
1911 * mcalib/MCalibrationPix.[h,cc]
1912 - limits to define fFitValid now as variables in class
1913
1914 * mcalib/MCalibrationCam.[h,cc]
1915 - reordered function calls
1916 - incorporate option to exclude pixels
1917
1918 * mcalib/MCalibrationBlindPix.h
1919 - Modified way to change the fit function
1920
1921 * mcalib/MCalibrationCalc.[h,cc]
1922 - Modified way to change the fit function
1923 - incorporate option to exclude pixels from configuration file
1924
1925 * macros/calibration.C
1926 - Modified way to change the fit function
1927 - incorporate option to exclude pixels from configuration file
1928
1929
1930
1931 2004/01/19: Javier Rico
1932
1933 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
1934 - Added documentation of member functions
1935
1936
1937
1938 2004/01/19: Abelardo Moralejo
1939
1940 * manalysis/MCerPhotPix.[h,cc]
1941 - Added fIsSaturated to flag whether low gain of the pixel is
1942 saturated. Added corresponding getter and setter functions.
1943 Updated ClassDef to version 2.
1944
1945 * mcalib/MCalibrate.cc
1946 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
1947 one low gain FADC slice is saturated.
1948
1949 * mimage/MNewImagePar.[h,cc]
1950 - Added new member variable fNumSaturatedPixels to count how many
1951 pixels were saturated. Updated ClassDef to version 2.
1952
1953
1954
1955 2004/01/19: Thomas Bretz
1956
1957 * manalysis/MPedPhotCalc.[cc,h]:
1958 - fixed order of includes
1959 - removed obsolete forward declarations
1960 - removed obsolete data member fNumPixels (stored already twice in
1961 the two TArrayF)
1962 - fixed some small bugs in the documentation
1963
1964 * manalysis/MPedCalcPedRun.cc:
1965 - updated my eMail address
1966
1967
1968
1969 2004/01/19: Javier Rico
1970
1971 * macros/dohtml.C, NEWS
1972 - include some missing info
1973
1974
1975
1976 2004/01/19: Abelardo Moralejo
1977
1978 * manalysis/MExtractedSignalPix.h
1979 - added GetNumLoGainSaturated()
1980
1981
1982
1983 2004/01/19: Markus Gaug
1984
1985 * macros/dohtml.C
1986 - include calibration.C
1987
1988 * manalysis/MExtractSignal.cc
1989 - warning of logain saturation now only once per event (out of loop)
1990
1991 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
1992 - new Flag fExcluded to indicate if pixel has been excluded from
1993 further analysis
1994
1995
1996
1997 2004/01/16: Javier Rico & Pepe Flix
1998
1999 * manalysis/MPedPhotCalc.[cc,h]
2000 - added
2001 - new class for the evaluation of pedestals in units of photons
2002 using the extracted signal from pedestal runs and calibration
2003 constants defined in MCalibrate
2004
2005 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
2006 - added entries for MPedPhotCalc
2007
2008 * macros/pedphotcalc.C
2009 - added
2010 - example on how to use MPedPhotCalc task
2011
2012
2013
2014 2004/01/16: Markus Gaug
2015
2016 * mcalib/MCalibrationFits.h
2017 - removed and incorporated in MHCalibrationBlindPixel.h
2018
2019 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
2020 mcalib/MCalibrationBlindPix.h:
2021 - incorporate Fit functions
2022 - fixed a bug due to which DrawClone crashed when class was used
2023 in a compiled macro
2024
2025 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
2026 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
2027 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
2028 mcalib/MHCalibrationPixel.cc:
2029 - fixed the warns and errs in fLog's
2030
2031
2032
2033 2004/01/16: Abelardo Moralejo
2034
2035 * manalysis/MMcCalibrationCalc.cc
2036 - TMath::Max() is no longer used because it did not compile in some
2037 systems for unkown reasons. I replaced it by a safer (and may be
2038 slower) code.
2039 - Added calpix.SetFitValid();
2040
2041 * mhist/MHEvent.cc
2042 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
2043 be 1 in case of RMS:
2044 case kEvtPedestalRMS:
2045 fHist->SetCamContent(*(MCamEvent*)par, 1);
2046
2047
2048
2049 2004/01/15: Abelardo Moralejo
2050
2051 * macros/starmc.C
2052 - Added. Version of star showing new chain to get Hillas
2053 parameters (with Size calibrated in photons) from MC files.
2054
2055
2056
2057 2004/01/15: Javier Rico
2058
2059 * manalysis/MPedCalcPedRun.[h,cc]
2060 - optimize the running time
2061 - add (some) documentation
2062 - correct treatment for the case of several input files
2063
2064 * macros/pedvsevent.C
2065 - added
2066 - draw pedestal mean and rms vs event# for input pixel# and run
2067 file, and compares them to the global pedestal mean and rms
2068
2069
2070
2071 2004/01/15: Raquel de los Reyes
2072
2073 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
2074 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
2075 functions to compute the estimation of the error of the
2076 mean. It can be done calling to the function
2077 MCamEvent::SetBit(MHCamera::kVariance) in the macro
2078
2079
2080
2081 2004/01/15: Markus Gaug
2082
2083 * mhist/MHCamera.[h,cc]
2084 - incorporate Thomas's changes
2085 - replace void CreateProjection() by TH1D *Projection(const char*)
2086
2087 * macros/calibration.C
2088 - replace MHCamera->Draw("proj") by MHCamera->Projection()
2089 - produce better fits to the projection
2090
2091 * manalysis/MSimulatedAnnealing.[h,cc],
2092 mhist/MHSimulatedAnnealing.[h,cc]:
2093 - moved to directory mtools
2094 - MSimulatedAnnealing now inherits from TObject
2095
2096 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
2097 mhist/Makefile, mhist/HistLinkDef.h:
2098 - removed MSimulatedAnnealing
2099 - removed MHSimulatedAnnealing
2100
2101 * mtools/Makefile, mtools/AnalysisLinkDef.h:
2102 - added MSimulatedAnnealing
2103 - added MHSimulatedAnnealing
2104
2105
2106
2107 2004/01/15: Thomas Bretz
2108
2109 * manalysis/AnalysisLinkDef.h:
2110 - removed MCurrents
2111
2112 * mhist/MHCamera.[h,cc]:
2113 - added member function Projection
2114 - removed fYproj
2115
2116 * mreport/MReport*.*:
2117 - added more comments
2118
2119
2120
2121 2004/01/14: Markus Gaug
2122
2123 * mtools/MFFT.[h,cc]
2124 - new class to perform Fast Fourier Transforms
2125
2126 * mtools/Makefile
2127 * mtools/ToolsLinkDef.h
2128 - include MFFT
2129
2130 * manalysis/MExtractedSignalCam.h
2131 - removed variables fNumHiGainSamples and fNumLoGainSamples
2132 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
2133
2134 * manalysis/MExtractSignal.cc
2135 - updated call to SetUsedFADCSlices
2136
2137
2138
2139 2004/01/14: Abelardo Moralejo
2140
2141 * manalysis/MMcCalibrationCalc.cc:
2142 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
2143 This can happen (depending on camera simulation parameters), and
2144 rms = 0 later resulted in the pixel being eliminated in the
2145 image cleaning.
2146
2147
2148
2149 2004/01/14: Thomas Bretz
2150
2151 * Makefile:
2152 - replaced old style Makefile.depend by directory specific
2153 dependancy files
2154
2155 * Makefile.rules:
2156 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
2157 - added rule to make dependency files
2158 - added rule to remove dependancy files.
2159 - added rmdep as prerequisite to clean
2160 - include dependency file
2161
2162 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
2163 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
2164 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
2165 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
2166 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
2167 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
2168 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
2169 mtools/Makefile:
2170 - removed clean-rule, use the one in Makefile.rules instead
2171
2172 * mreport/Makefile, mreport/ReportLinkDef.h:
2173 - added MReportHelp
2174
2175 * mreport/MReportFileRead.cc:
2176 - moved code from MReportHelp to new file
2177 - removed usage of MReport class completely
2178
2179 * mfilter/MFGeomag.[h,cc]:
2180 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
2181 - changed the second loop from 0->1151 to 1152->2304
2182 - removed dummy arrays used for reading
2183 - output filename in case of 'file not found'
2184 - removed obsolete data members
2185 - removed obsolete Init function
2186 - removed forbidden underscore from member variable
2187 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
2188
2189 * mbase/MStatusDisplay.[h,cc]:
2190 - added new member function Open
2191 - added new menu entry kFileOpen
2192 - changed UpdatePSheader algorithm (the old one was much too slow)
2193
2194 * manalysis/MCurrents.[h,cc]:
2195 - removed (old outdated)
2196
2197 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2198 - removed MCurrents
2199
2200
2201
2202 2004/01/14: Wolfgang Wittek
2203
2204 * macros/ONOFFAnalysis.C:
2205 - current version
2206
2207 * mhist/MHSigmaTheta.[h,cc]:
2208 - replace MPedestalCam by MPedPhotCam
2209
2210 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
2211 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
2212 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
2213 - replace MPedestalCam by MPedPhotCam
2214
2215 * manalysis/MPedPhotPix.[h,cc]
2216 - uncomment SetRms()
2217
2218
2219
2220 2004/01/13: Markus Gaug
2221
2222 * manalysis/MExtractSignal.h
2223 - seems that the reduced light intensity of the CT1 Pulser
2224 results in broader pulses -> Set Default time slices to [3,10]
2225
2226 * mhist/MHCamera.cc
2227 - make Stat Window in option 'proj' bigger
2228 - add comment line at beginning of Draw()
2229
2230 * mcalib/MHCalibrationBlindPixel.[h.cc]
2231 - add Function DrawClone()
2232 - fix bug in calculation of integral (GetIntegral("width"))
2233 - restrict parameters tighter
2234 - declare fit as not valid, if less than 100 events
2235 in single photo-electron peak
2236
2237 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
2238 - fit now with fixed normalization
2239
2240 * mcalib/MHCalibrationPixel.[h.cc]
2241 - new function IsEmpty()
2242 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
2243
2244 * mcalib/MCalibrationPix.[h.cc]
2245 - F-Factor corrected and added error
2246 - Histograms not fitted if they are empty
2247 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
2248
2249 * mcalib/MCalibrationCam.cc
2250 - Square Root of Reduced Sigmas not taken, if they are < 0.
2251 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
2252
2253 * mcalib/MCalibrationCalc.cc
2254 - Blind Pixel is not additionally treated as normal pixel any more
2255 - Blind Pixel Draw replaced by DrawClone
2256
2257 * macros/calibration.C
2258 - took out some unused code
2259 - some default axis labelling corrected
2260
2261
2262
2263 2004/01/13: Abelardo Moralejo
2264
2265 * manalysis/MMcPedestalCopy.cc
2266 - added check of whether input file is a MC file before executing
2267 the PreProcess.
2268
2269
2270
2271 2004/01/13: Wolfgang Wittek
2272
2273 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
2274 - change macro to handle also MC events with finite sigmabar
2275
2276 * manalysis/MPadOn.[h,cc]:
2277 - deleted, is replaced by MPad
2278
2279 * manalysis/MPadOnOFF.[h,cc]:
2280 - deleted, is replaced by MPad
2281
2282 * manalysis/MPad.[h,cc]:
2283 - new class, replacing MPadON and MPadONOFF
2284 - handle also MC events with finite sigmabar
2285
2286 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2287 - replace MPadON and MPadONOFF by MPad
2288
2289
2290
2291 2004/01/13: Thomas Bretz
2292
2293 * mraw/MRawRunHeader.[h,cc]:
2294 - implemented new member function GetRunTypeStr
2295
2296 * Changelog.03:
2297 - added (contains entries of 2003)
2298
2299 * Changelog:
2300 - removed entries of 2003
2301
2302 * mfilter/MFGeomag.cc:
2303 - simplified open/close of input files
2304
2305 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
2306 - added some comments
2307 - added new member function GetError
2308
2309 * Makefile:
2310 - updated 'make dox' output for convinience
2311
2312 * macros/dohtml.C:
2313 - do not print Info's
2314 - added mcamera
2315 - added mpointing
2316 - added mreport
2317
2318 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
2319 - removed some obsolete comments (these comments confused THtml)
2320
2321 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
2322 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
2323 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
2324 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
2325 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
2326 - replaced MPedestalCam by MPedPhotCam
2327 - removed some obsolete includes
2328
2329 * mbase/BaseLinkDef.h, mbase/Makefile:
2330 - added MLogPlugin
2331 - added MLogHtml
2332
2333 * mbase/MLog.[h,cc]:
2334 - added use of plugins
2335
2336 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
2337 - added
2338
2339 * mbase/MStatusDisplay.[h,cc]:
2340 - added a Save-As dialog
2341
2342
2343
2344 2004/01/12: Thomas Bretz
2345
2346 * macros/rootlogon.C:
2347 - added mcamera to include path
2348 - added mpointing to include path
2349 - added mreport to include path
2350
2351 * mbase/MLog.cc:
2352 - updated my eMail address
2353
2354 * mbase/MParContainer.h:
2355 - added Read member function
2356
2357 * mbase/MStatusDisplay.[h,cc]:
2358 - changed size of ps-paper
2359 - added a user defined bottom line to the ps-files
2360 - added name (currently unused)
2361 - added title (used as possible bottom line in ps-file)
2362
2363 * mraw/MRawRunHeader.cc:
2364 - added some comments
2365
2366 * status.cc:
2367 - set name of input as bottom line of status display
2368
2369
2370
2371 2004/01/12: Abelardo Moralejo
2372
2373 * mimage/MStereoPar.cc
2374 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
2375 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
2376 Bug had no effect unless scale1 != scale2 (-> telescopes of
2377 different size).
2378
2379
2380
2381 2004/01/12: Markus Gaug
2382
2383 * manalysis/MExtractSignal.[h,cc]
2384 - take out some uncommented code
2385 - replace logainshift by two independent variables:
2386 logainfirst, logainlast
2387 - because in most data, maximum occurs in slice 4, shift default
2388 from slices 4-9 to slices 3-8.
2389
2390 * manalysis/MExtractedSignalPix.[h,cc]
2391 - took out some uncommented code
2392 - new initializers: instead of -1. now 99999.9
2393
2394
2395
2396 2004/01/09: Markus Gaug
2397
2398 * mcalib/MCalibrationCam.[h,cc]
2399 - take out 1-dim histos because we can use
2400 the projections in MHCamera (s.b.)
2401
2402 * mcalib/MHCalibrationBlindPixel.h
2403 - make the fit by default quiet
2404
2405 * mcalib/MHCalibrationPixel.[h,cc]
2406 * mcalib/MCalibrationPix.[h,cc]
2407 - Ranges of time slices stored independently for HiGain and LoGain
2408 in order to allow consecutive checks
2409
2410 * mhist/MHCamera.[h.cc]
2411 - add the possibility to call a Draw("proj") which will
2412 draw a Y-Projection of the histogram
2413
2414 * macros/calibration.C
2415 - apply the drawing of the projections and fit them
2416
2417 * mcalib/MCalibrationCalc.cc
2418 - catch the possibility of a calibration file,
2419 unintendedly being a pedestal or cosmic file.
2420 Program now exits with an error before doing the fits
2421
2422 * mcalib/MCalibrationPix.[h,cc]
2423 - fixed a bug in calculation of fFitValid.
2424 before, a call to IsFitValid() always returned false
2425
2426
2427
2428 2004/01/09: Javier L¢pez
2429
2430 * macros/bootcampstandardanalysis.C
2431 - added new macro that holds the main scheleton discussed in the
2432 december bootcamp in Wuerzburg. It runs first over a pedestal
2433 run, then over a calibration run, again over the pedestal run
2434 to compute de pedestal in number of photons and finally over a
2435 data run to calibrate the data.
2436
2437
2438
2439 2004/01/06: Sebastian Raducci
2440
2441 * manalysis/MArrivalTime.[h,cc]
2442 - added new method to calculate photon arrival times. It uses the
2443 TSpline5 Root Class to interpolate the Fadc Slices. The time is
2444 the abscissa value of the absolute maximum of the interpolation
2445 - added new method to find clusters with similar arrival times.
2446 For now it's a preliminary version. It simply search for adiacent
2447 pixels having the same arrival time (color).
2448
2449 * manalysis/MArrivalTimeCalc.[h,cc]
2450 - modified the Process() method according to the changes in the
2451 Arrival Time Cointainer
2452
2453 * mmain/MEventDisplay.cc
2454 - added new tab in the camera event display to show the arrival
2455 time. This arrival time is calculated with the spline method
2456 - the old Arrival Time pad now it's called Max Slice Idx, because
2457 it's only the index of the slice with the max content.
2458
2459 * mhist/MHEvent.[h,cc]
2460 - added new fType in te enumeration to handle the arrival time
2461 histos
Note: See TracBrowser for help on using the repository browser.