source: trunk/MagicSoft/Mars/Changelog@ 2942

Last change on this file since 2942 was 2942, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 30.5 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 2004/01/28: Abelardo Moralejo
7
8 * mcalib/MMcCalibration.cc
9 - fixed wrong variable type in call to TH1F constructor (number of
10 bins is now integer), which resulted in a compilation warning.
11
12
13
14 2004/01/28: Thomas Bretz
15
16 * manalysis/MPedestalCam.cc:
17 - removed unwanted CheckBound from operators. CheckBounds is ONLY
18 ment for really old MC files and will be removed in the future
19 anyhow.
20
21 * mcalib/MHCalibrationPixel.h:
22 - removed obsolete include of MFFT
23
24 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
25 manalysis/MPedestalCam.[h,cc]:
26 - removed use of obsolete MPedestalCam::CheckBounds. This was
27 a workaround for a 'bug' in very old camera files, which is not
28 necessary anymore.
29
30
31
32 2004/01/28: Sebastian Raducci
33
34 * manalysis/MArrivalTime.[h,cc]:
35 - removed all the code relative to the cluster evaluation
36
37
38
39 2004/01/27: Markus Gaug
40
41 * manalysis/MPedestalPix.cc:
42 - initialize default values to 0 instead of -1.
43
44 * manalysis/MPedestalCam.[h,cc]:
45 - include CheckBounds, also in operator[]
46
47 * mcalib/MCalibrationCam.[h,cc]:
48 - apparently, there was a reference to InitSize(UInt_t i) instead
49 of InitSize(Int_t i), where compiler complained, now changed
50
51 * mcalib/MHCalibration*, mcalib/MCalibration*:
52 - fixed all Clear()'s, Reset()'s, direct intializers
53
54
55
56 2004/01/27: Thomas Bretz
57
58 * mdata/MDataChain.cc:
59 - added '%' to supported operators
60
61
62
63 2004/01/26: Nicola Galante
64
65 * manalysis/MMcTriggerLvl2.[cc,h]:
66
67 - Defined some static constants to avoid ugly "magic numbers"
68 in arrays: gsNCells, gsNTrigPixels,
69 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
70 - Added method
71 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
72 which computes compact pixels into a given L2T macrocell.
73 - Added method
74 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
75 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
76 macrocells
77 - Added method
78 MMcTriggerLvl2::GetCellPseudoSize() const
79 which returns fCellPseudoSize
80 - Added method
81 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
82 which controls whether a pixel belongs to a given L2T cell.
83 - Added method
84 MMcTriggerLvl2::GetMaxCell() const
85 which returns fMaxCell, the cell with the maximum
86 fCellPseudoSize.
87
88
89
90 2004/01/26: Markus Gaug, Michele Doro
91
92 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
93 - moved calculation of arrival time from MArrivalTime to
94 MArrivalTimeCalc. MArrivalTime does not do any Process-job
95 anymore
96 - TSpline5 now on stack.
97 - function to set the stepsize
98
99 * mcalib/MHCalibrationBlindPixel.[h,cc]:
100 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
101 - implement combined Polya fit and Michele's back-scattered electron
102 fit
103
104 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
105 mcalib/MCalibrationPINDiode.cc:
106 - combine FitChargeHiGain and FitChargeLoGain into one function
107
108 * macros/calibration.C
109 - improve double gauss fit a bit
110
111
112
113 2004/01/26: Thomas Bretz
114
115 * mraw/MRawEvtPixelIter.[h,cc]:
116 - removed member function GetNumPixels. For more details see mantis.
117
118 * manalysis/MArrivalTime.[h,cc]:
119 - reorganized includes
120 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
121 definition
122 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
123 PROGRAM
124
125 * manalysis/MArrivalTimeCalc.[h,cc]:
126 - reorganized includes
127 - removed many obsolete code, exspecially copy&paste relicts!
128 - fixed usage of InitSize
129 - removed CleanArray. Reset() is called automatically before Process()
130
131 * manalysis/MExtractedSignalCam.[h,cc]:
132 - added SetLogStream
133 - removed obsolete include MGeomCam
134 - replaced PrintOut by Print
135 - added const-qualifiers to all Getters
136 - fixed documentation
137
138 * manalysis/MExtractedSignalPix.[h,cc]:
139 - replaced PrintOut by Print
140 - fixed documentation
141
142 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
143 - replaced memset by Reset()
144
145
146
147 2004/01/24: Abelardo Moralejo
148
149 * macros/starmcstereo.C
150 - Added. Example of how to run the analysis chain for MC files
151 containing simulation of stereo systems of 2 telescopes.
152
153 * mcalib/MCalibrate.cc
154 - Added check that value of signal from MExtractedSignalPix is not
155 the default (error) value. In such a case, the signal in
156 MCerPhotEvt is now set to 0. Before, all pixels got very high
157 values in MCerPhotEvt in case the MRawEvtData object for the
158 event was missing in the file. This happened in MC files, in
159 which in some circumstances an event is written without the
160 pixel information (for instance, when running stereo simulations
161 the pixel data is missing for non-triggered telescopes, but the
162 event headers are present).
163
164
165
166 2004/01/23: Markus Gaug
167
168 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
169 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
170 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
171 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
172 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
173 - use MArrivalTime for Storage (or calculation) of time
174 in MExtractSignal
175 - pass from TH1I histos to TH1F for times
176
177 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
178 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
179 mcalib/MCalibrationCalc.[h,cc]:
180 - clean up setters
181 - pass to bit-fields for all flags
182
183 * mcalib/MCalibrationCam.cc
184 - exclude Blind Pixel from Camera display
185 - do not fill &val when return kFALSE
186
187 * macros/calibration.C
188 - include functions to exclude the blind pixel,
189 calculation of times and quality checks
190
191
192
193 2004/01/23: Abelardo Moralejo
194
195 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
196 - Added support (using AddSerialNumber) for stereo MC files.
197
198
199
200 2004/01/23: Thomas Bretz
201
202 * mbase/MAstro.cc:
203 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
204
205 * mreport/MReport*.[h,cc]:
206 - changed all classes to return Int_t instead of Bool_t in
207 InterpreteBody
208 - changed MReportFileRead such, that a wrong line results in
209 skipping the line instead of abort reading.
210
211 * manalysis/MExtractSignal.cc:
212 - do not print information for each pixel - it's too much.
213
214 * mbase/MStatusDisplay.cc:
215 - when reading a status display do not display tabs with
216 the same name than one which is already existing.
217
218 * mcalib/MCalibrate.cc:
219 - directly store pointer to pixel when setting saturation flag
220
221 * mcamera/MCameraDC.cc:
222 - fixed some comments
223
224 * mhist/MHCamEvent.cc:
225 - fixed a crash when no geometry was available
226
227 * mhist/MHCamera.[h,cc]:
228 - removed obsolete member function SetPix
229
230 * mbase/MStatusDisplay.[h,cc]:
231 - added EventInfo member function
232 - implemented preliminary redirection of GetObjectInfo to
233 StatusLine2 -> An own status line for this is missing
234
235 * manalysis/MExtractSignal.[h,cc]:
236 - implemented StreamPrimitive
237 - changed deafults to be static const data members
238
239 * manalysis/MGeomApply.[h,cc]:
240 - implemented StreamPrimitive
241
242
243
244 2004/01/23: Abelardo Moralejo
245
246 * manalysis/MMcCalibrationUpdate.[h,cc]
247 - Added check to guarantee that the FADC simulation parameters of
248 all read files (those used for calibration and those analyzed)
249 are the same.
250 - Added missing support for analysis of stereo files.
251
252 * mcalib/MMcCalibrationCalc.cc
253 - Removed obsolete FIXME comment.
254 - Added missing support for analysis of stereo files.
255
256
257 2004/01/23: Raquel de los Reyes
258
259 * macros/CCDataCheck.C
260 - Added the temperature distribution of the optical links
261 and the plots of the LV power supplies.
262 * mcamera/MCameraLV.h
263 - Added the "Get" functions to access the private data
264 members of the class.
265
266
267 2004/01/22: Abelardo Moralejo
268
269 * manalysis/MMcCalibrationUpdate.[h,cc]
270 - Now ratio of high to low gain is taken from MCalibrationCam if
271 it existed previously in the parameter list, instead of being
272 read again from the MMcFadcHeader. Removed Setter function for
273 fADC2PhInner, no longer necessary. Fixed error regarding the
274 pedestal conversion to photons (did not read conversion factor
275 from preexisting MCalibrationCam object).
276
277 * mcalib/MMcCalibrationCalc.cc
278 - Changed parameters of the histogram, and also the quantity being
279 histogrammed. Check that input data come from a noiseless camera
280 file before proceeding to do the calibration. Introduced lower
281 size in cut for calibration. Now rhe calibration constant is not
282 calculated from the mean of photons/ADC counts, but from the peak
283 of the histogram.
284
285 * macros/starmc.C
286 - Introduced new scheme. Now there are two loops over two different
287 sets of files. First loop calculates the calibration constants,
288 second one does the analysis. Introduced comments. Now the
289 histogram used in the light calibration is written to the output
290 file.
291
292
293
294 2004/01/22: Thomas Bretz
295
296 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
297 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
298 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
299 mcalib/MCalibrationBlindPixel.[h,cc],
300 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
301 mcalib/MHCalibrationBlindPixel.[h,cc],
302 mcalib/MHCalibrationPINDiode.[h,cc]:
303 - cleaned up includes
304
305
306
307 2004/01/22: Raquel de los Reyes
308
309 * macros/CCDataCheck.C
310 - macro to check the data from the central control (.rep files).
311
312
313
314 2004/01/22: Markus Gaug
315
316 * macros/calibration.C
317 - made MStatusDisplay 3 bit smaller
318
319 * manalysis/MExtractSignal.cc
320 - put fSignals->SetUsedFADCSlices into PreProcess
321
322 * manalysis/MPedCalcPedRun.cc
323 - calculate PedRMS as RMS of the sums, later renormalized to units
324 of RMS/slice (eliminate the wrong effect of odd and even slices)
325
326 * mcalib/MCalibrationCalc.cc
327 - if bit SkipBlindPixelFit is set, now number of photons outside
328 plexiglass is not intended to be calculated any more (previous
329 bug)
330 - exclude excluded pixels in eventloop
331
332 * mcalib/MHCalibrationBlindPixel.[h,cc]
333 - move functions to pointer again (otherwise, Clone will give
334 strange results)
335
336
337
338 2004/01/21: Abelardo Moralejo
339
340 * mcalib/MMcCalibrationCalc.[h,cc]
341 - Added. First version of the task intended to calculate the
342 conversion factors from ADC counts to photons in the MC. It has
343 a different aim than the recently renamed class
344 "MMcCalibrationUpdate" (which takes care that the correct
345 pedestals and conversion factors are supplied to each event, but
346 does not really calculate anything).
347
348 * mcalib/Makefile, CalibLinkDef.h
349 - Added new class MMcCalibrationCalc
350
351 * manalysis/MMcCalibrationUpdate.[h,cc]
352 - Now the container MCalibrationCam is not created or modified if
353 it is found that one such container already exists in the
354 Parameter list (from a previous calibration).
355
356
357
358 2004/01/21: Thomas Bretz
359
360 * mraw/MRawRead.cc:
361 - restore the fake time for all runs (current time stamp in
362 the data seems to be toally nonsense)
363
364 * mraw/MRawEvtHeader.cc:
365 - removed decoding of real time (current time stamp in the data
366 seems to be toally nonsense)
367
368
369
370 2004/01/21: Abelardo Moralejo
371
372 * mmc/MMcEvt.hxx
373 - Uncommented 6 Getter functions (those regarding the number of
374 photons surviving the different stages of simulation).
375
376 * manalysis/MMcCalibrationUpdate.[h,cc]
377 - Added (see below).
378
379 * manalysis/MMcCalibrationCalc.[h,cc]
380 - Removed: changed name of this class to MMcCalibrationUpdate,
381 which is more representative of what it really does. Moved
382 the filling of the MCalibrationCam container from Process to
383 ReInit, since it does not change on an event by event basis.
384 Simplified PreProcess (MCalibrationCam was searched for twice).
385 Updated class description and comments.
386
387 * manalysis/Makefile, AnalysisLinkDef.h
388 - Adapted to change above
389
390 * macros/starmc.C
391 - Adapted to change above. Changed also task instance name from
392 mccalibcalc to mccalibupdate.
393
394
395
396 2004/01/21: Raquel de los Reyes
397
398 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
399 and mcamera/MCameraCalibration.h
400 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
401 the private data members of the class.
402
403
404
405 2004/01/20: Thomas Hengstebeck
406
407 * mranforest/MRanForestCalc.[h,cc]
408 - Added member functions Grow (training of RF) and Fill (reading in
409 trained forest from file) which simplify macros.
410 One just needs to call them instead of using MRanForestGrow and
411 MRanForestFill (and the related training and fill loops) in a
412 macro.
413
414
415
416 2004/01/20: Abelardo moralejo
417
418 * manalysis/MMcCalibrationCalc.cc
419 - removed call to MCalibrationPix::SetPedestal, which was not
420 needed.
421
422
423
424 2004/01/20: Thomas Bretz
425
426 * Makefile:
427 - replaced 'make' by '$(MAKE)'
428
429 * Makefile.rules:
430 - added Makefile itself to dependencies
431
432 * mbase/MTask.cc:
433 - added comment about ReInit
434
435 * mhbase/MH.cc:
436 - do not clear pad in DrawClone if 'same' option given
437
438 * mhist/MHVsTime.cc:
439 - evaluate 'same' option
440
441 * mfileio/MReadCurrents.[h,cc]:
442 - obsolete, removed
443
444 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
445 - added some comments
446
447
448
449 2004/01/20: Abelardo moralejo
450
451 * mcalib/MHCalibrationPINDiode.cc
452 - Added call to SetDirecory(0) for histograms fHErrCharge,
453 fHPCharge, fHPTime.
454
455 * manalysis/MCerPhotPix.h:
456 - Changed position of declaration of fIsSaturated to be the last
457 private variable. Otherwise, since in the constructor it is
458 initialized in the last place, a warning is displayed upon
459 compilation in some systems.
460
461
462
463 2004/01/20: Markus Gaug
464 * mcalib/Makefile, manalysis/Makefile:
465 - include directory ../mtools
466
467 * mtools/MFFT.[h,cc]
468 - class inherits from TObject now
469
470
471
472 2004/01/19: Markus Gaug
473
474 * mcalib/MHCalibrationBlindPixel.[h,cc]
475 - fixed a bug in fFitLegend due to which program crashed by calls
476 to DrawClone
477 - Modified way to change the fit function
478
479 * mcalib/MHCalibrationPixel.[h,cc]
480 - reordered function calls
481 - removed SetupFill
482
483 * mcalib/MHCalibrationPINDiode.h
484 - reordered function calls
485
486 * mcalib/MCalibrationPix.[h,cc]
487 - limits to define fFitValid now as variables in class
488
489 * mcalib/MCalibrationCam.[h,cc]
490 - reordered function calls
491 - incorporate option to exclude pixels
492
493 * mcalib/MCalibrationBlindPix.h
494 - Modified way to change the fit function
495
496 * mcalib/MCalibrationCalc.[h,cc]
497 - Modified way to change the fit function
498 - incorporate option to exclude pixels from configuration file
499
500 * macros/calibration.C
501 - Modified way to change the fit function
502 - incorporate option to exclude pixels from configuration file
503
504
505
506 2004/01/19: Javier Rico
507
508 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
509 - Added documentation of member functions
510
511
512
513 2004/01/19: Abelardo Moralejo
514
515 * manalysis/MCerPhotPix.[h,cc]
516 - Added fIsSaturated to flag whether low gain of the pixel is
517 saturated. Added corresponding getter and setter functions.
518 Updated ClassDef to version 2.
519
520 * mcalib/MCalibrate.cc
521 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
522 one low gain FADC slice is saturated.
523
524 * mimage/MNewImagePar.[h,cc]
525 - Added new member variable fNumSaturatedPixels to count how many
526 pixels were saturated. Updated ClassDef to version 2.
527
528
529
530 2004/01/19: Thomas Bretz
531
532 * manalysis/MPedPhotCalc.[cc,h]:
533 - fixed order of includes
534 - removed obsolete forward declarations
535 - removed obsolete data member fNumPixels (stored already twice in
536 the two TArrayF)
537 - fixed some small bugs in the documentation
538
539 * manalysis/MPedCalcPedRun.cc:
540 - updated my eMail address
541
542
543
544 2004/01/19: Javier Rico
545
546 * macros/dohtml.C, NEWS
547 - include some missing info
548
549
550
551 2004/01/19: Abelardo Moralejo
552
553 * manalysis/MExtractedSignalPix.h
554 - added GetNumLoGainSaturated()
555
556
557
558 2004/01/19: Markus Gaug
559
560 * macros/dohtml.C
561 - include calibration.C
562
563 * manalysis/MExtractSignal.cc
564 - warning of logain saturation now only once per event (out of loop)
565
566 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
567 - new Flag fExcluded to indicate if pixel has been excluded from
568 further analysis
569
570
571
572 2004/01/16: Javier Rico & Pepe Flix
573
574 * manalysis/MPedPhotCalc.[cc,h]
575 - added
576 - new class for the evaluation of pedestals in units of photons
577 using the extracted signal from pedestal runs and calibration
578 constants defined in MCalibrate
579
580 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
581 - added entries for MPedPhotCalc
582
583 * macros/pedphotcalc.C
584 - added
585 - example on how to use MPedPhotCalc task
586
587
588
589 2004/01/16: Markus Gaug
590
591 * mcalib/MCalibrationFits.h
592 - removed and incorporated in MHCalibrationBlindPixel.h
593
594 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
595 mcalib/MCalibrationBlindPix.h:
596 - incorporate Fit functions
597 - fixed a bug due to which DrawClone crashed when class was used
598 in a compiled macro
599
600 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
601 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
602 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
603 mcalib/MHCalibrationPixel.cc:
604 - fixed the warns and errs in fLog's
605
606
607
608 2004/01/16: Abelardo Moralejo
609
610 * manalysis/MMcCalibrationCalc.cc
611 - TMath::Max() is no longer used because it did not compile in some
612 systems for unkown reasons. I replaced it by a safer (and may be
613 slower) code.
614 - Added calpix.SetFitValid();
615
616 * mhist/MHEvent.cc
617 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
618 be 1 in case of RMS:
619 case kEvtPedestalRMS:
620 fHist->SetCamContent(*(MCamEvent*)par, 1);
621
622
623
624 2004/01/15: Abelardo Moralejo
625
626 * macros/starmc.C
627 - Added. Version of star showing new chain to get Hillas
628 parameters (with Size calibrated in photons) from MC files.
629
630
631
632 2004/01/15: Javier Rico
633
634 * manalysis/MPedCalcPedRun.[h,cc]
635 - optimize the running time
636 - add (some) documentation
637 - correct treatment for the case of several input files
638
639 * macros/pedvsevent.C
640 - added
641 - draw pedestal mean and rms vs event# for input pixel# and run
642 file, and compares them to the global pedestal mean and rms
643
644
645
646 2004/01/15: Raquel de los Reyes
647
648 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
649 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
650 functions to compute the estimation of the error of the
651 mean. It can be done calling to the function
652 MCamEvent::SetBit(MHCamera::kVariance) in the macro
653
654
655
656 2004/01/15: Markus Gaug
657
658 * mhist/MHCamera.[h,cc]
659 - incorporate Thomas's changes
660 - replace void CreateProjection() by TH1D *Projection(const char*)
661
662 * macros/calibration.C
663 - replace MHCamera->Draw("proj") by MHCamera->Projection()
664 - produce better fits to the projection
665
666 * manalysis/MSimulatedAnnealing.[h,cc],
667 mhist/MHSimulatedAnnealing.[h,cc]:
668 - moved to directory mtools
669 - MSimulatedAnnealing now inherits from TObject
670
671 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
672 mhist/Makefile, mhist/HistLinkDef.h:
673 - removed MSimulatedAnnealing
674 - removed MHSimulatedAnnealing
675
676 * mtools/Makefile, mtools/AnalysisLinkDef.h:
677 - added MSimulatedAnnealing
678 - added MHSimulatedAnnealing
679
680
681
682 2004/01/15: Thomas Bretz
683
684 * manalysis/AnalysisLinkDef.h:
685 - removed MCurrents
686
687 * mhist/MHCamera.[h,cc]:
688 - added member function Projection
689 - removed fYproj
690
691 * mreport/MReport*.*:
692 - added more comments
693
694
695
696 2004/01/14: Markus Gaug
697
698 * mtools/MFFT.[h,cc]
699 - new class to perform Fast Fourier Transforms
700
701 * mtools/Makefile
702 * mtools/ToolsLinkDef.h
703 - include MFFT
704
705 * manalysis/MExtractedSignalCam.h
706 - removed variables fNumHiGainSamples and fNumLoGainSamples
707 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
708
709 * manalysis/MExtractSignal.cc
710 - updated call to SetUsedFADCSlices
711
712
713
714 2004/01/14: Abelardo Moralejo
715
716 * manalysis/MMcCalibrationCalc.cc:
717 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
718 This can happen (depending on camera simulation parameters), and
719 rms = 0 later resulted in the pixel being eliminated in the
720 image cleaning.
721
722
723
724 2004/01/14: Thomas Bretz
725
726 * Makefile:
727 - replaced old style Makefile.depend by directory specific
728 dependancy files
729
730 * Makefile.rules:
731 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
732 - added rule to make dependency files
733 - added rule to remove dependancy files.
734 - added rmdep as prerequisite to clean
735 - include dependency file
736
737 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
738 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
739 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
740 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
741 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
742 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
743 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
744 mtools/Makefile:
745 - removed clean-rule, use the one in Makefile.rules instead
746
747 * mreport/Makefile, mreport/ReportLinkDef.h:
748 - added MReportHelp
749
750 * mreport/MReportFileRead.cc:
751 - moved code from MReportHelp to new file
752 - removed usage of MReport class completely
753
754 * mfilter/MFGeomag.[h,cc]:
755 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
756 - changed the second loop from 0->1151 to 1152->2304
757 - removed dummy arrays used for reading
758 - output filename in case of 'file not found'
759 - removed obsolete data members
760 - removed obsolete Init function
761 - removed forbidden underscore from member variable
762 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
763
764 * mbase/MStatusDisplay.[h,cc]:
765 - added new member function Open
766 - added new menu entry kFileOpen
767 - changed UpdatePSheader algorithm (the old one was much too slow)
768
769 * manalysis/MCurrents.[h,cc]:
770 - removed (old outdated)
771
772 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
773 - removed MCurrents
774
775
776
777 2004/01/14: Wolfgang Wittek
778
779 * macros/ONOFFAnalysis.C:
780 - current version
781
782 * mhist/MHSigmaTheta.[h,cc]:
783 - replace MPedestalCam by MPedPhotCam
784
785 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
786 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
787 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
788 - replace MPedestalCam by MPedPhotCam
789
790 * manalysis/MPedPhotPix.[h,cc]
791 - uncomment SetRms()
792
793
794
795 2004/01/13: Markus Gaug
796
797 * manalysis/MExtractSignal.h
798 - seems that the reduced light intensity of the CT1 Pulser
799 results in broader pulses -> Set Default time slices to [3,10]
800
801 * mhist/MHCamera.cc
802 - make Stat Window in option 'proj' bigger
803 - add comment line at beginning of Draw()
804
805 * mcalib/MHCalibrationBlindPixel.[h.cc]
806 - add Function DrawClone()
807 - fix bug in calculation of integral (GetIntegral("width"))
808 - restrict parameters tighter
809 - declare fit as not valid, if less than 100 events
810 in single photo-electron peak
811
812 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
813 - fit now with fixed normalization
814
815 * mcalib/MHCalibrationPixel.[h.cc]
816 - new function IsEmpty()
817 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
818
819 * mcalib/MCalibrationPix.[h.cc]
820 - F-Factor corrected and added error
821 - Histograms not fitted if they are empty
822 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
823
824 * mcalib/MCalibrationCam.cc
825 - Square Root of Reduced Sigmas not taken, if they are < 0.
826 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
827
828 * mcalib/MCalibrationCalc.cc
829 - Blind Pixel is not additionally treated as normal pixel any more
830 - Blind Pixel Draw replaced by DrawClone
831
832 * macros/calibration.C
833 - took out some unused code
834 - some default axis labelling corrected
835
836
837
838 2004/01/13: Abelardo Moralejo
839
840 * manalysis/MMcPedestalCopy.cc
841 - added check of whether input file is a MC file before executing
842 the PreProcess.
843
844
845
846 2004/01/13: Wolfgang Wittek
847
848 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
849 - change macro to handle also MC events with finite sigmabar
850
851 * manalysis/MPadOn.[h,cc]:
852 - deleted, is replaced by MPad
853
854 * manalysis/MPadOnOFF.[h,cc]:
855 - deleted, is replaced by MPad
856
857 * manalysis/MPad.[h,cc]:
858 - new class, replacing MPadON and MPadONOFF
859 - handle also MC events with finite sigmabar
860
861 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
862 - replace MPadON and MPadONOFF by MPad
863
864
865
866 2004/01/13: Thomas Bretz
867
868 * mraw/MRawRunHeader.[h,cc]:
869 - implemented new member function GetRunTypeStr
870
871 * Changelog.03:
872 - added (contains entries of 2003)
873
874 * Changelog:
875 - removed entries of 2003
876
877 * mfilter/MFGeomag.cc:
878 - simplified open/close of input files
879
880 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
881 - added some comments
882 - added new member function GetError
883
884 * Makefile:
885 - updated 'make dox' output for convinience
886
887 * macros/dohtml.C:
888 - do not print Info's
889 - added mcamera
890 - added mpointing
891 - added mreport
892
893 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
894 - removed some obsolete comments (these comments confused THtml)
895
896 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
897 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
898 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
899 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
900 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
901 - replaced MPedestalCam by MPedPhotCam
902 - removed some obsolete includes
903
904 * mbase/BaseLinkDef.h, mbase/Makefile:
905 - added MLogPlugin
906 - added MLogHtml
907
908 * mbase/MLog.[h,cc]:
909 - added use of plugins
910
911 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
912 - added
913
914 * mbase/MStatusDisplay.[h,cc]:
915 - added a Save-As dialog
916
917
918
919 2004/01/12: Thomas Bretz
920
921 * macros/rootlogon.C:
922 - added mcamera to include path
923 - added mpointing to include path
924 - added mreport to include path
925
926 * mbase/MLog.cc:
927 - updated my eMail address
928
929 * mbase/MParContainer.h:
930 - added Read member function
931
932 * mbase/MStatusDisplay.[h,cc]:
933 - changed size of ps-paper
934 - added a user defined bottom line to the ps-files
935 - added name (currently unused)
936 - added title (used as possible bottom line in ps-file)
937
938 * mraw/MRawRunHeader.cc:
939 - added some comments
940
941 * status.cc:
942 - set name of input as bottom line of status display
943
944
945
946 2004/01/12: Abelardo Moralejo
947
948 * mimage/MStereoPar.cc
949 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
950 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
951 Bug had no effect unless scale1 != scale2 (-> telescopes of
952 different size).
953
954
955
956 2004/01/12: Markus Gaug
957
958 * manalysis/MExtractSignal.[h,cc]
959 - take out some uncommented code
960 - replace logainshift by two independent variables:
961 logainfirst, logainlast
962 - because in most data, maximum occurs in slice 4, shift default
963 from slices 4-9 to slices 3-8.
964
965 * manalysis/MExtractedSignalPix.[h,cc]
966 - took out some uncommented code
967 - new initializers: instead of -1. now 99999.9
968
969
970
971 2004/01/09: Markus Gaug
972
973 * mcalib/MCalibrationCam.[h,cc]
974 - take out 1-dim histos because we can use
975 the projections in MHCamera (s.b.)
976
977 * mcalib/MHCalibrationBlindPixel.h
978 - make the fit by default quiet
979
980 * mcalib/MHCalibrationPixel.[h,cc]
981 * mcalib/MCalibrationPix.[h,cc]
982 - Ranges of time slices stored independently for HiGain and LoGain
983 in order to allow consecutive checks
984
985 * mhist/MHCamera.[h.cc]
986 - add the possibility to call a Draw("proj") which will
987 draw a Y-Projection of the histogram
988
989 * macros/calibration.C
990 - apply the drawing of the projections and fit them
991
992 * mcalib/MCalibrationCalc.cc
993 - catch the possibility of a calibration file,
994 unintendedly being a pedestal or cosmic file.
995 Program now exits with an error before doing the fits
996
997 * mcalib/MCalibrationPix.[h,cc]
998 - fixed a bug in calculation of fFitValid.
999 before, a call to IsFitValid() always returned false
1000
1001
1002
1003 2004/01/09: Javier L¢pez
1004
1005 * macros/bootcampstandardanalysis.C
1006 - added new macro that holds the main scheleton discussed in the
1007 december bootcamp in Wuerzburg. It runs first over a pedestal
1008 run, then over a calibration run, again over the pedestal run
1009 to compute de pedestal in number of photons and finally over a
1010 data run to calibrate the data.
1011
1012
1013
1014 2004/01/06: Sebastian Raducci
1015
1016 * manalysis/MArrivalTime.[h,cc]
1017 - added new method to calculate photon arrival times. It uses the
1018 TSpline5 Root Class to interpolate the Fadc Slices. The time is
1019 the abscissa value of the absolute maximum of the interpolation
1020 - added new method to find clusters with similar arrival times.
1021 For now it's a preliminary version. It simply search for adiacent
1022 pixels having the same arrival time (color).
1023
1024 * manalysis/MArrivalTimeCalc.[h,cc]
1025 - modified the Process() method according to the changes in the
1026 Arrival Time Cointainer
1027
1028 * mmain/MEventDisplay.cc
1029 - added new tab in the camera event display to show the arrival
1030 time. This arrival time is calculated with the spline method
1031 - the old Arrival Time pad now it's called Max Slice Idx, because
1032 it's only the index of the slice with the max content.
1033
1034 * mhist/MHEvent.[h,cc]
1035 - added new fType in te enumeration to handle the arrival time
1036 histos
Note: See TracBrowser for help on using the repository browser.