source: trunk/MagicSoft/Mars/Changelog@ 3831

Last change on this file since 3831 was 3831, checked in by moralejo, 21 years ago
*** empty log message ***
File size: 138.0 KB
Line 
1Please do not write behind the end of line tag so that it is possible
2to send a Changelog file to a line printer directly. Thanks.
3
4For your entries please follow EXACTLY this style:
5
6_yyyy/mm/dd:_[Your Name]
7_
8___*_filename:
9_____-_description
10_
11___*_filename2, filename3:
12_____-_description
13_
14_
15_
16
17While an underscore is a placeholder for a white-space or an empty line.
18
19 -*-*- END OF LINE -*-*-
20
21 2004/04/26: Abelardo Moralejo
22
23 * manalysis/MMcCalibrationUpdate.cc
24 - changed from 1 to 10 the "dummy" value of conversion high to low
25 gain for old camera 0.6 files. Usually these files have no low
26 gain at all, but there was a patched version of the program
27 which did have low gain (with a gain 10 lower than hg).
28
29 2004/04/25: Abelardo Moralejo
30
31 * mbadpixels/MBadPixelsTreat.cc
32 - Change in line 204: if ((*fBadPixels)[i].IsBad()) by
33 if ((*fBadPixels)[j].IsBad()) The way it was done, it never
34 worked, because the check on whether the neighbour pixels
35 were OK was performed on the same pixel to be treated (i), which
36 is obviously not OK. The same problem fixed in the interpolation
37 of pedestals. Amazingly, this error would have shown up in any
38 test of the class.... I assume it must have been commited
39 completely untested.
40
41 - In InterpolateSignal: moved division of summed charge over
42 number of pixels : put it after the check of the number of
43 valid neighbours to avoid division by 0.
44
45
46 2004/04/23: Markus Gaug
47
48 * mcalib/MHCalibrationCam.cc
49 - fixed a bug in the ReInit() for the number of average events in
50 each area index and sector
51
52
53 2004/04/23: Thomas Bretz
54
55 * */Makefile:
56 - added some more mpedestal
57
58 * mreport/MReportRun.cc:
59 - changed to work with the latest version of report-files
60 --> This will make it incompatible with older report files
61 (for this use older Mars versions for merpping)
62
63 * mbase/MStatusDisplay.[h,cc]:
64 - added combo-box to surf through tabs in MARS-tab
65
66
67
68 2004/04/22: Nadia Tonello
69
70 * mcalib/MCalibrateData.cc
71 - changed request for MBadPixelsPix::IsCalibrationResultOK() for
72 MBadPixelsPix::IsUnsuitable(MBadPixelsPix::kUnsuitableRun)
73
74
75
76 2004/04/22: Thomas Bretz
77
78 * mhist/MHCamera.[h,cc]:
79 - implemented SetUsed
80
81 * merpp.cc:
82 - added "-ff" and interleave mode - both not execcively tested yet
83
84 * mhbase/MFillH.cc:
85 - added a missing 'endl'
86
87 * mraw/MRawCrateData.[h,cc], mraw/MRawEvtData.[h,cc],
88 mraw/MRawEvtHeader.[h,cc]
89 - added SkipEvt (the number of skipped bytes is untested)
90
91 * mraw/MRawEvtHeader.[h,cc]
92 - return kCONTINUE if time is invalid
93
94 * mraw/MRawFileRead.[h,cc]:
95 - implemented AddFile feature - first draft!
96 - added feature to skip events
97
98 * mraw/MRawFileWrite.h:
99 - changed default compression level corresponding to merpp to 2
100
101 * mraw/MRawRead.[h,cc]:
102 - added fForceMode flag to be able to suppress event errors
103
104 * mbadpixels/MBadPixelsTreat.[h,cc]:
105 - changes such that the pedestal interpolation is now done
106 only in ReInit. If you need the old behaviour call
107 SetProcessRMS()
108
109 Another step towards less mess:
110
111 * MMcPedestalCopy.[h,cc], MMcPedestalNSBAdd.[h,cc],
112 MPedPhotCalc.[h,cc], MPedPhotCam.[h,cc], MPedPhotPix.[h,cc],
113 MPedCalcPedRun.[h,cc], MPedestalCam.[h,cc],
114 MPedestalPix.[h,cc]:
115 - moved from manalysis to mpedestal
116
117 * mpedestal/Makefile, mpedestal/PedestalLinkDef.h,
118 mpedestal/PedestalIncl.h:
119 - added
120
121 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
122 manalysis/AnalysisIncl.h:
123 - removed files above
124
125 * mbadpixels/Makefile:
126 - added mpedestals
127
128 * Makefile:
129 - added mpedestals
130
131
132 2004/04/22: Antonio Stamerra
133
134 * mmain/MEventDisplay.cc
135 - Added new tab "Trigger" adding a new MHEvent (evt9),
136 filled through the MMcTriggerLvl2 container.
137 A new MFillH task for evt9 and MMcTriggerLvl2Calc task
138 have been added.
139
140 * mhist/MHEvent.[h,cc]
141 - Added new event type kEvtTrigPix
142
143 * manalysis/MMcTriggerLvl2.[h,cc]
144 - The class now inherits from MCamEvent
145 - Added the methods GetPixelContent and DrawPixelContent (from MCamEvent)
146 - Added the method IsPixelInTrigger that returns kTRUE if a pixels
147 is in the trigger region
148
149 * manalysis/MMcTriggerLvl2Calc.[h,cc]
150 - Added the methods CheckRunType and ReInit to check if the file is MC.
151
152 * mhistmc/Makefile
153 - Added the include for mgui
154
155
156 2004/04/22: Markus Gaug
157
158 * mcalib/MCalibrate.[h,cc]
159 - introduced flat-fielding of charges for the muon calibration,
160 accessible with SetCalibrationMode(kFlatCharge)
161
162 * manalysis/MPedCalcPedRun.cc
163 - added a SetReadyToSave() at the end of PostProcess
164
165 * mjobs/Makefile
166 - added include of mraw
167
168 * mjobs/MJCalibration.cc
169 - added MRawFileRead for option SetDataCheck()
170
171 * mjobs/MJPedestal.cc
172 - added MRawFileRead for option SetDataCheck()
173
174
175 2004/04/21: Thomas Bretz
176
177 * mbase/MTask.cc, mbase/MTaskList.cc:
178 - let MTask in list fTaskProcess to be used as a counter
179
180 * mdata/MDataChain.[h,cc]:
181 - added some treatments for combinations of +/- signs
182
183 * mfbase/MFilterList.[h,cc]:
184 - added a new constructor to simplyfy filter-inversions
185
186 * mfileio/MReadReports.cc:
187 - added comment
188
189 * mhbase/MBinning.[h,cc]:
190 - added new constructor to simplify calls in macros
191
192 * mhbase/MFillH.[h,cc]:
193 - added fDrawOption to be used in MStatusDisplay
194
195 * mhist/MHFalseSource.cc:
196 - added comment
197
198
199
200 2004/04/20: Thomas Bretz
201
202 * macros/derotatedc.C
203 - added tutorial macro plotting derotated dc currents
204
205 * mhist/MHCamEventRot.[h,cc]:
206 - added histogram to be filled with derotated MCamEvents
207
208
209
210 2004/04/18: Abelardo Moralejo
211
212 * mgeom/MGeomCam.h
213 - Update class version to 4 (necessary after M. Gaug's change
214 of the type of member fMaxRadius.
215
216
217
218 2004/04/16: Abelardo Moralejo
219
220 * mcalib/MCalibrationQEPix.[h,cc]
221 - Added fAverageQE. Same role as gkDefaultAverageQE, but can be
222 changed via SetAverageQE. Made public GetAverageQE and
223 GetAverageQERelVar (this changes needed for MC).
224
225 * mcalib/MMcCalibrationCalc.[h,cc]
226 * manalysis/MMcCalibrationUpdate.[h,cc]
227 - Adapted to M. Gaug's changes in calibration classes. Behaviour
228 has been tested to be the same as before those changes. Now the
229 conversion factor from ADC counts to photoelectrons, and the
230 average QE (photons->photoelectrons) are calculated independently
231 (and later combined by MCalibrate to obtain the conversion
232 ADC->photons).
233
234 * mmain/MEventDisplay.cc, macros/mccalibrate.C, starmc.C
235 - Added call to MExtractSignal::SetSaturationLimit(240) Affects
236 only MC display. This was necessary because if electronic noise
237 is simulated in the FADC, sometimes saturated slices look not
238 saturated due to negative fluctuations, so it is better to set
239 the saturation limit at a safe value (240 ADC counts). Changed
240 signal integration range (only for MC), now from slices 5 to 10.
241
242 * msignal/MExtractSignal3.[h,cc]
243 - Changed name of function SetRange for the more adecquate
244 "SetWindows". No change in behaviour of the function.
245
246
247
248 2004/04/16: Markus Gaug
249
250 * msignal/MExtractSignal.cc
251 - commited proposed larger default window from fgLast = 10 to
252 fgLast = 14, because in March the pulses have moved to later
253 arrival times.
254 - removed some inconsistency with slice numbering in FindSignal()
255 from pixel.GetHiGainSamples()+fHiGainFirst-1 to
256 pixel.GetHiGainSamples()+fHiGainFirst and also for the low gain
257
258 * msignal/MExtractSignal2.cc
259 - committed the proposed smaller window egdes from fgFirst=0 to
260 fgFirst = 3, because in March some of the high-gain pulses reach
261 into the "low-gain samples" and mislead thus sliding window to
262 be maximized on the tail of the high-gain pulse.
263
264 * mcalib/MHPedestalPix.cc
265 - fixed a bug which made normalization to values per slice not happen
266
267 * macros/pedestalstudies.C
268 - fixed and documented
269
270
271
272 2004/04/15: Markus Gaug
273
274 * macros/calibration.C
275 - added a function FindColor() to extract the colour by filename,
276 works if there is indeed a colour or if the run nubmer is smaller
277 than 20000 -> take ct1
278
279 * macros/bootcampstandardanalysis.C
280 * macros/pedphotcalc.C
281 * macros/calibrate_data.C
282 - updated the macro to the cvs-standard used at the Udine bootcamp
283
284 * mcalib/MCalibrateRelTimes.[h,cc]
285 * mcalib/Makefile
286 * mcalib/CalibLinkDef.h
287 - new class to calibrate the relative times
288
289 * manalysis/MGeomApply.cc
290 - added MArrivalTime::Init()
291
292 * msignal/MArrivalTime.[h,cc]
293 - added array fDataErr
294
295 * macros/rootlogon.C
296 - added directories mbadpixels and mjobs
297
298 * mcalib/MCalibrationQEPix.cc
299 - set the fAvNorm variables to 1 in Clean()
300
301 * manalysis/MPedPhotCalc.[h,cc]
302 - included possibility to use an MBadPixelsCam
303
304
305
306 2004/04/14: Thomas Bretz
307
308 * manalysis/MCerPhotEvt.[h,cc]:
309 - fixed a bug which caused a missing last pixel (in most cases
310 Index 576)
311
312 * manalysis/MCerPhotPix.cc:
313 - fixed output in Print
314
315 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
316 - added missing SetCalibrationMethod
317
318 * mbadpixels/MBadPixelsCam.[h,cc]:
319 - added copy constructor
320
321 * mbadpixels/MBadPixelsMerge.cc:
322 - added comments
323
324 * mraw/MRawRunHeader.[h,cc]:
325 - added new run-type (kRTPointRun=7)
326
327 * mmain/MEventDisplay.cc:
328 - fixed the broken cleaning levels
329
330
331
332 2004/04/14: Markus Gaug
333
334 * mcalib/MCalibrationQEPix.cc
335 - found a bug in the calculation of the error, fixed
336
337 * macros/mccalibrate.C, mmain/MEventDisplay.cc:
338 - replaced SetCalibrationMethod by SetCalibrationMode
339
340 * htmldoc/images/CalibClasses.gif
341 * htmldoc/images/RelTimeClasses.gif
342 - two schemes used in the class descriptions
343
344 * mcalib/MHCalibrationCam.[h,cc]
345 - included function GetAverageAreas() and GetAverageSectors() like
346 in MCalibrationCam
347
348 * mjobs/MJCalibration.[h,cc]
349 - included calibration of rel.Times, to be chosen with a flag
350 RelTimeCalibration()
351 - signal extractor and arrival time extractor can be chosen by
352 flags as well (see Class description)
353
354
355 * mbadpixels/MBadPixelsCam.cc
356 - add two new types in GetPixelContent, add documentation of
357 GetPixelContent
358
359 * msignal/MArrivalTimeCalc2.cc
360 - commented the warning for pixels with lowgain saturation
361
362
363
364 2004/04/13: Markus Gaug
365
366 * macros/dohtml.C
367 - included directory mbadpixels
368
369 * mcalib/MCalibrationPix.[h,cc]
370 - add functions GetHiLoMeansDivided(), GetHiLoSigmasDivided() and
371 errors
372
373 * mcalib/MCalibrationChargeCam.[h,cc]
374 - removed hi-vs.Lo histograms (come into a separate MIntensityCam)
375 - updated GetPixelContents
376 - updated class documentation
377
378 * mgeom/MGeomMirror.h
379 - include <TVector3.h>, otherwise it does not compile on my machine
380
381 * mjobs/MJPedestals.cc
382 * mjobs/MJCalibration.cc
383 - replaced MBadPixelsMerge by MParList.AddToList(fBadPixels) until
384 bug in MBadPixelsMerge is resolved (see bugtracker).
385
386 * mcalib/MHCalibrationChargePINDiode.cc
387 - return in Draw() if histogram is empty (otherwise segm. violation
388 in eventloop
389
390 * msignal/MExtractedSignalCam.cc
391 - intialize variables by default to 0.
392
393 * mcalib/MHCalibrationChargeCam.[h,cc]
394 - pointer to fSig is not stored, somehow, when running MJCalibration
395 Don't know why. Removed and stored some variables instead
396
397 * mjobs/MJCalibration.[h,cc]
398 - updated documentation, updated QE Cam
399 - set the pulser colour (now obligatory)
400 - set the possibility to choose different displays
401
402 * mcalib/MCalibrationChargeCalc.cc
403 - set the pulser colour (now obligatory)
404
405 * mcalib/MCalibrationChargePix.[h,cc]
406 - put GetRSigmaPerCharge into this class
407
408
409
410 2004/04/13: Thomas Bretz
411
412 * mastro/MAstroCamera.cc, mastro/MAstroCatalog.[h,cc]:
413 - enhanced comments
414 - added some new features
415
416 * mbase/MAGIC.h:
417 - removed some empty lines
418
419 * mfileio/MWriteRootFile.cc:
420 - fixed a compiler warning
421
422 * mgeom/MGeomCorsikaCT.h:
423 - removed obsolete include of TArrayF
424
425 * mgeom/MGeomMirror.[h,cc]:
426 - replaced fReflector by *fReflector
427
428 * mmain/MGDisplayAdc.cc:
429 - fixed a bug which caused the wrong histogram entry to be
430 displayed
431
432
433
434 2004/04/10: Markus Gaug
435
436 * macros/dohtml.C
437 - included directory mjobs
438
439 * mjobs/MJCalibration.[h,cc]
440 - added and updated documentation (not yet ready)
441
442 * htmldoc/images/CalibClasses.gif
443 - scheme of the calibration classes, used for documentation in
444 MJCalibration.cc
445
446
447
448 2004/04/10: Thomas Bretz
449
450 * mastro/MAstroCatalog.[h,cc], mastro/MAstroCamera.[h,cc]:
451 - added comments
452
453 * macros/starfield.C:
454 - added
455
456 * mastro/Makefile, mastro/AstroLinkDef.h
457 - added MAstroCamera
458
459
460
461 2004/04/09: Markus Gaug
462
463 * mcalib/MHCalibrationChargePINDiode.[h,cc]
464 * mcalib/MHCalibrationChargeCam.[h,cc]
465 * mcalib/MHCalibrationChargeCalc.[h,cc]
466 - put abs. time consistency check from MCalibrationChargeCalc into
467 MHCalibrationChargePINDiode and MHCalibrationChargeCam
468
469 * mcalib/MHCalibrationCam.[h,cc]
470 * mcalib/MHCalibrationChargeCalc.[h,cc]
471 - number of used FADC slices also stored in MHCalibrationCam,
472 MHCalibrationChargeCalc needs no pointer to the signal extractors
473 any more -> removed
474
475 * mcalib/MCalibrationChargePINDiode.[h,cc]
476 * mcalib/MCalibrationChargeBlindPix.[h,cc]
477 * mcalib/MCalibrationCam.[h,cc]
478 - put a default pulser color kNONE
479
480 * manalysis/MPedestalCam.[h,cc]
481 * manalysis/MPedCalcPedRun.[h,cc]
482 * manalysis/MGeomApply.cc
483 - added average pixels in the way like it is done in MCalibrationCam
484
485
486
487 2004/04/08: Thomas Bretz
488
489 * mfbase/MF.cc:
490 - optimized output
491
492 * mfbase/MFilterList.cc:
493 - added some comments
494
495 * mfileio/MReadMarsFile.[h,cc], mfileio/MReadTree.[h,cc]:
496 - added SortFiled-option -- RAQUEL, this is for you!
497
498 * mfileio/MWriteRootFile.cc:
499 - class AddSerialNumber in AddContainer
500
501 * mhist/MHFalseSource.[h,cc]:
502 - optimized setting of hist maximum
503 - added more source dependant cuts
504 - changed display layout
505 - scale number of entries to correct for different acceptance
506 (not perfect, but the best I can currently do)
507
508 * mimage/MHHillasExt.[h,cc]:
509 - added new histogram for fMaxDist
510
511 * mimage/MHNewImagePar.[h,cc]:
512 - added new histograms for Used/CoreArea
513
514 * mimage/MHillasCalc.cc:
515 - optimized output
516
517 * mimage/MHillasExt.cc:
518 - fMaxDist got a sign
519
520 * mimage/MNewImagePar.[h,cc]:
521 - enhanced comments
522 - added new Print() member function
523
524 * macros/readCT1.C, macros/readMagic.C, mmain/MEventDisplay.cc:
525 - forward geomcam to newimgepar.Print()
526
527
528
529 2004/04/08: Markus Gaug
530
531 * mcalib/MCalibrationChargeCalc.[h,cc]
532 * mcalib/MCalibrationChargeCam.[h,cc]
533 * mcalib/MCalibrationChargePix.[h,cc]
534 * mcalib/MCalibrationChargeBlindPix.[h,cc]
535 * mcalib/MCalibrationChargePINDiode.[h,cc]
536 - put calculation of photon fluxes with the three methods into
537 MCalibrationChargeCalc
538 - reorganized calculations in a better readable way (hopefully!)
539
540 * mbase/MAGIC.h
541 * mcalib/MCalibrationCam.[h,cc]
542 * mcalib/MCalibrationQECam.[h,cc]
543 * mcalib/MCalibrationQEPix.[h,cc]
544 - put PulserColor_t away from MAGIC.h into MCalibrationCam
545 - full implementation of the QE-calibration from MCalibrationQEPix
546
547 * msignal/MExtractBlindPixel.cc
548 - removed warning about low-gain saturation of Blind pixel
549
550 * mcalib/MCalibrate.[h,cc]
551 * mcalib/MCalibrateData.[h,cc]
552 * mcalib/MMcCalibrationCalc.[h,cc]
553 * manalysis/MMcCalibrationUpdate.[h,cc]
554 - conversion factors now separated into FADC2phe and then into
555 call to average Quantum efficiency.
556
557
558 2004/04/07: Markus Gaug
559
560 * mcalib/MHGausEvents.[h,cc]
561 - added fBlackout events
562
563
564
565 2004/04/06: Thomas Bretz
566
567 * mcalib/MCalibrationCam.[h,cc]:
568 - simplified call to initialization by new function Init()
569
570 * mcalib/MH*.cc:
571 - fixed some warnings (comparision between signed and unsigned)
572
573 * manalysis/MGeomApply.cc:
574 - use new Init-funtion of MCalibrationCam
575
576 * mastro/MAstro.cc:
577 - some fixes to the conversion functions
578
579 * mastro/MAstroCamera.[h,cc]:
580 - added comments
581 - changed argument type of AddPrimitives
582
583 * mastro/MAstroCatalog.[h,cc]:
584 - many changes to make it possible to overlay the
585 catalog on top of a 2D histogram
586
587 * mbase/MEvtLoop.cc:
588 - fixed estimation of run-time
589
590 * mbase/MMath.[h,cc]:
591 - added member functions for signed significances
592
593 * mbase/MParContainer.cc:
594 - changed GetterMethod() to support double reference data mebers
595
596 * mbase/MStatusDisplay.cc:
597 - removed some obsolete debug outputs
598
599 * mbase/MTask.[h,cc]:
600 - removed fNumExecutions, fStopwatch already counts the calls
601 - slight chagnes to output of PrintStatistics
602
603 * mbase/MTaskList.[h,cc]:
604 - slight chagnes to output of PrintStatistics
605
606 * mbase/MTime.cc:
607 - removed +TwoPi from GetGmst
608
609 * mcamera/MCameraAUX.h, mcamera/MCameraHV.h, mcamera/MCameraLV.h,
610 mcamera/MCameraLid.h, mcamera/MCameraLids.h,
611 mcamera/MCameraPowerSupply.h:
612 - added missing Getter functions
613
614 * mcamera/MCameraHV.h:
615 - removed obsolete data-meber fMean
616
617 * mdata/DataLinkDef.h:
618 - added MDataFormula
619
620 * mdata/MDataChain.cc, mdata/Makefile:
621 - enhanced dosumentation
622 - implemented use of multi argument functions
623 - added ^-operator
624
625 * mdata/MDataList.[h,cc]:
626 - added ^-operator
627 - enhanced IsValid
628
629 * mfbase/MFilterList.cc:
630 - changed a warn-output to inf
631
632 * mgeom/MGeomCam.[h,cc]:
633 - added getter returning index corresponding to XY
634
635 * mgeom/MGeomPix.[h,cc]:
636 - added getter IsInside
637
638 * mhist/MHCamera.cc:
639 - Return 0 in GetMean if no entries
640
641 * mhist/MHFalseSource.[h,cc]:
642 - removed conversion stuff (mm/deg)
643 - slight change to calculation of significance
644 - added dist-cuts
645 - added histogram showing number of entries
646 - added display of catalog
647
648 * mhist/MHStarMap.cc:
649 - added comment
650
651 * mimage/MHillasExt.[h,cc]:
652 - changed class version to 3
653 - added new data-member fMaxDist
654
655 * mimage/MNewImagePar.[h,cc]:
656 - added new data member fUsedArea and fCoreArea
657
658 * mmc/MMcConfigRunHeader.h:
659 - readded GetMirrors (WHY WAS IT GONE?)
660
661 * mpointing/MPointingPos.[h,cc]
662 - implemented Getter to get coordinates in rad
663
664 * mpointing/MSrcPosCalc.[h,cc]:
665 - fixed direction of rotation
666 - for the moment do use fTime
667
668
669
670 2004/04/06: Markus Gaug
671
672 * mcalib/MCalibrationChargePix.[h,cc]
673 - change names of the GetLoGain*() functions to
674 GetConvertedLoGain*() for better clarity
675
676 * mcalib/MCalibrationChargeCam.[h,cc]
677 - updated and enlarged documentation
678
679 * mcalib/MHCalibrationChargeCam.cc
680 * mcalib/MHCalibrationRelTimeCam.cc
681 - set the arrays by use of memset
682 - initialize TObjArrays with the Init-Function
683
684
685 2004/04/05: Markus Gaug
686
687 * msignal/MExtractedSignalPINDiode.h
688 - new function GetLastUsedSlice()
689
690 * mcalib/MCalibrationChargeCalc.[h,cc],
691 * mcalib/MCalibrationChargeCam.cc:
692 - holds also pointers to MExtractedSignalPINDiode and
693 MExtractedSignalBlindPixel and does the checks inside the task
694 (instead of inside the containers)
695
696 * mcalib/MCalibrationChargeBlindPix.[h,cc],
697 * mcalib/MCalibrationChargePINDiode.[h,cc]:
698 - updated and enlarged documentation
699
700 * mcalib/MHCalibrationChargePINDiode.cc
701 * mcalib/MHCalibrationChargeCam.[h,cc]
702 - rename Setter for fMeanVar from SetMeanErr() to SetMeanVar()
703 - rename arrays of fAverageSigmaErr to AverageSigmaVar
704
705 * mcalib/MCalibrationPix.[h,cc]
706 * mcalib/MCalibrationChargePix.[h,cc]
707 * mcalib/MCalibrationChargeBlindPix.[h,cc]
708 * mcalib/MCalibrationChargePINDiode.[h,cc]
709 - add Getters to the relative variance
710
711 * mcalib/MHGausEvents.[h,cc]
712 * mcalib/MCalibrationPix.[h,cc]
713 * mcalib/MHCalibrationCam.cc
714 - add to Pickup also Blackout events
715
716
717 2004/04/05: Nadia Tonello
718
719 * mbadpixels/MBadPixelsTreat.cc
720 - In Unmap(): replaced SetPixelUnused with SetPixelUnmapped
721
722
723
724 2004/04/02: Markus Gaug
725
726 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.[h,cc],
727 mcalib/MCalibrationQEPix.[h,cc], mcalib/MCalibrationQECam.[h,cc],
728 mcalib/MCalibrationRelTimeCam.[h,cc],
729 mcalib/MCalibrationRelTimePix.[h,cc]:
730 - updated and enlarged documentation
731
732 * mcalib/MHGausEvents.[h,cc], mcalib/MHPedestalPix.[h,cc],
733 mcalib/MHCalibrationChargePix.[h,cc],
734 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
735 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
736 mcalib/MHCalibrationChargeBlindPix.[h,cc],
737 mcalib/MHCalibrationChargePINDiode.[h,cc]:
738 - put fPixId, fPickup, fPickupLimt, CountPickup(), RepeatFit() and
739 ChangeHistId() into MHGausEvents (before in the derived classes)
740 - put fChargeNbins, fChargeFirst, fChargeLast,
741
742 * mcalib/MHCalibrationRelTimePix.[h,cc]:
743 - put fRelTimeNbins, fRelTimeFirst, fRelTimeLast together
744 into MHGausEvents as fNbins, fFirst and fLast
745
746 * mcalib/MHCalibrationRelTimePix.[h,cc]:
747 - remove Renormalization to time slices. Need to think about
748 more direct way to implement
749
750 * mcalib/MHPedestalCam.[h,cc], mcalib/MHCalibrationCam.[h,cc],
751 mcalib/MHCalibrationChargeCam.[h,cc],
752 mcalib/MHCalibrationRelTimeCam.[h,cc]:
753 - put most of the functionality into the base class MHCalibrationCam
754 - derived classes overload the functions SetupHists, ReInitHists,
755 FillHists, FinalizeHists and FinalizeBadPixels.
756 - functions FitHiGainArrays, FitLoGainArrays, FitHiGainHists,
757 FitLoGainHists and InitHists can be used from base class.
758
759 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationChargePix.[h,cc],
760 mcalib/MCalibrationRelTimePix.[h,cc]:
761 - put most of the functionality into the base class MCalibrationPix
762 - other two classes derive now from MCalibrationPix
763
764 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationChargeCam.[h,cc]
765 mcalib/MCalibrationRelTimeCam.[h,cc]:
766 - put most of the functionality into the base class MCalibrationCam
767 - other two classes derive now from MCalibrationCam
768 - calls to MCalibration*Cam[i] now have to cast!
769
770 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
771 * mcalib/MMcCalibrateCalc.cc, manalysis/MMcCalibrationUpdate.cc,
772 * mcalib/MCalibrationChargeCalc.cc:
773 - cast calls to MCalibration*Cam[i]
774
775 * manalysis/MGeomApply.cc
776 - add initialization MCalibrationRelTimeCam
777 - add intialization of average pixels
778
779
780
781 2004/04/02: Abelardo Moralejo
782
783 * msignal/MExtractSignal3.[h,cc]
784 - added. Alternative method for signal extraction. Uses sliding
785 window from event to event, but a common window for all pixels
786 in an event.
787
788 * msignal/Makefile, SignalLinkDef.h
789 - added MExtractSignal3.
790
791
792
793 2004/04/02: Markus Gaug
794
795 * mbadpixels/MBadPixelsPix.h
796 - added kRelTimeNotFitted and kRelTimeOscillating to Calibration_t
797 enum
798
799 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationPix.[h,cc],
800 mcalib/Makefile, mcalib/CalibLinkDef.h:
801 - two new base classes for general calibration storage containers,
802 contain average pixel storage functionality
803
804 * mcalib/MCalibrationRelTimeCam.[h,cc],
805 mcalib/MCalibrationRelTimePix.[h,cc]:
806 - new storage container for the rel. time calibration results, derive
807 from MCalibrationPix, MCalibrationCam
808
809
810
811 2004/04/01: Markus Gaug
812
813 * msignal/MArrivalTimeCalc.[h,cc]
814 - set fSaturationLimit as a variable with default (instead of 0xff)
815
816 * mcalib/MHCalibrationChargeCam.[h,cc]
817 mcalib/MCalibrationChargeCam.[h,cc]
818 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
819 - add average pixels per sector
820
821 * mcalib/MHGausEvents.[h,cc], mcalib/MHCalibrationChargePix.[h,cc],
822 mcalib/MHCalibrationRelTimePix.[h,cc]:
823 - moved BypassFit() function to MHGausEvents
824
825 * mcalib/MHCalibrationChargeCam.[h,cc]:
826 - updated and enlarged documentation
827 - derives now from mcalib/MHCalibrationCam
828
829 * mcalib/MCalibrationChargePix.[h,cc]:
830 - removed flag kLoGainSaturation, because it is already in MBadPixelsPix
831
832 * mcalib/MCalibrationCam.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
833 - new base class for all MHCalibration*Cam object, contains the average
834 pixel functionality
835
836
837
838 2004/03/31: Markus Gaug
839
840 * mcalib/MHCalibrationChargeCam.[h,cc],
841 mcalib/MCalibrationChargeCam.[h,cc],
842 mcalib/MCalibrationChargeCalc.cc, manalysis/MGeomApply.cc:
843 - make the average pixel independent on camera geometry, i.e.
844 one average pixel per MGeomPix::Aidx
845
846
847
848 2004/03/31: Abelardo Moralejo
849
850 * mmc/MMcConfigRunHeader.[h,cc]
851 - updated to current version (3) in camera program. Added member
852 fLightCollectionFactorOuter so that we can store the data on
853 the simulatedlight collection efficiency (light guides +
854 plexiglas +...) as a function of incidence angle for outer and
855 inner pixels independently. Added getters for this information
856 on light collection efficiency.
857
858
859
860 2004/03/30: Markus Gaug
861
862 * mcalib/MHGausEvents.[h,cc],
863 mcalib/MHCalibrationChargePix.[h,cc],
864 mcalib/MHCalibrationChargeHiGainPix.[h,cc],
865 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
866 mcalib/MHCalibrationChargeBlindPix.[h,cc],
867 mcalib/MHCalibrationChargePINDiode.[h,cc],
868 mcalib/MHCalibrationRelTimeCam.[h,cc],
869 mcalib/MHCalibrationRelTimePix.[h,cc],
870 mcalib/MHPedestalPix.[h,cc],
871 mcalib/MHPedestalCam.[h,cc]:
872 - updated and enlarged documentation
873
874
875
876 2004/03/30: Abelardo Moralejo
877
878 * mmc/MMcFadcHeader.hxx
879 - updated to current version (4) in camera program.
880
881
882
883 2004/03/29: Markus Gaug
884
885 * manalysis/MSourcePosFromStarPos.cc
886 - replaced fabs(ival) by TMath::Abs(ival)
887
888 * mbadpixels/MBadPixelsPix.h
889 - adopt treatment of UnCalibrated_t like the one in Unsuitable_t
890
891 * mbadpixels/MBadPixelsPix.cc
892 - put some documentation in the header
893
894 * mcalib/MHCalibrationChargeCam.cc
895 mcalib/MCalibrationChargeCam.cc
896 mbadpixels/MBadPixelsCam.cc
897 - adopt to new style in MBadPixelsPix.h
898
899 * mcalib/MCalibrationChargeCalc.[h,cc]
900 mcalib/MCalibrationChargePix.[h,cc]
901 - move consistency checks from Pix to Calc
902
903 * mcalib/MHGausEvents.[h,cc]
904 - fixed axes for event and fourier spectrum Draw
905
906 * mcalib/MHCalibrationChargePix.[h,cc]
907 mcalib/MHCalibrationChargeCam.[h,cc]
908 - moved definition of pulser frequency to MHCalibrationChargeCam
909
910
911
912 2004/03/24: Thomas Bretz
913
914 * mbase/MMath.cc:
915 - now SignificanceLiMa returns 0 in case sum==0
916
917
918
919 2004/03/23: Thomas Bretz
920
921 * mbase/MContinue.cc, mhbase/MH.cc:
922 - changed a warning message to an inf-message
923
924 * mfileio/MReadTree.cc:
925 - added an additional logging message when adding files to a
926 chain successfully.
927
928 * mbase/MProgressBar.cc:
929 - fixed initial size
930
931 * mastro/MAstro.[h,cc]:
932 - changed the code for the rotation angle back to its original
933 shape. The definition I tried to introduced was already
934 correctly implemented (assuming that sin is the x-component
935 of the vector I had it wrong in my mind twice, using
936 atan2(y,x) everywhere I did recognize it...)
937
938 * mreport/MReport.cc:
939 - fixed a bug which caused a crash when the time is not valid
940
941 * mhist/MHStarMap.cc, mpointing/MSrcPosCalc.cc:
942 - fixed: v.Roatete() must be v=v.Rotate()
943 - MHStarMap no waorks also without MSrcPosCam, MPointingPos
944 or MObservatory (leaving out the corresponding translations)
945
946
947
948 2004/03/22: Markus Gaug
949
950 * mfileio/Makefile, mimage/Makefile
951 - mpointing included
952
953
954
955 2004/03/22: Thomas Bretz
956
957 * mpointing/MSrcPosCalc.[h,cc], MSrcPosCam.[h,cc]:
958 - added
959
960 * mastro/MAstro.[h,cc]:
961 - added code to calculate rotationangle previously in MObservatory
962 - changed definition of rotation angle such, that it is now
963 180deg if Ra and Az grid is parallel
964
965 * mastro/MAstroCatalog.[h,cc]:
966 - fixes and enhancements to the display (such as misscalculated
967 number of grid lines, title display, etc)
968 - enhancements to the output
969 - generalized creation of grid - for further usage
970
971 * mastro/MAstroSky2Local.[h,cc]:
972 - replaced calculation of rotation angle by the function in
973 MAstro
974
975 * mastro/MObservatory.[h,cc]:
976 - small changes to Print output
977 - moved code for calculation of rotation angle to MAstro
978
979 * mbase/MEvtLoop.cc:
980 - do not output number of events per second if no events processed
981
982 * mbase/MParList.cc:
983 - updated some comments
984
985 * mfileio/MCT1ReadAscii.cc, mfileio/MCT1ReadPreProc.cc,
986 mfileio/MReadRflFile.cc, mraw/MRawFileRead.cc,
987 mreport/MReportFileRead.cc:
988 - output error string if file cannot be opened
989
990 * mfileio/MReadTree.cc:
991 - output name of chain which is scanned
992
993 * mimage/MConcentration.cc:
994 - replaced loop by iterator
995 - removed obsolete (unused) variables
996
997 * mimage/MHNewImagePar.[h,cc]:
998 - fixed display colors
999
1000 * mpointing/MPointingPos.[h,cc]:
1001 - added member function to calculate rotation angle
1002 - added comments
1003
1004 * mpointing/Makefile:
1005 - added include MAstro
1006
1007 * manalysis/MSrcPosCam.[h,cc]:
1008 - moved to mpointing
1009
1010 * mpointing/MSrcPosCalc.[h,cc]:
1011 - added: Derotates a star in the camera into MSrcPosCam
1012
1013 * mpointing/Makefile, mpointing/PointingLinkDef.h:
1014 - added MSrcPosCam
1015 - added MSrcPosCalc
1016
1017 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1018 - removed MSrcPosCam
1019
1020 * mmain/Makefile:
1021 - added include for mpointing
1022
1023 * manalysis/AnalysisIncl.h:
1024 - removed TVector2
1025
1026 * mbase/MParContainer.h:
1027 - added new abstract virtual member function SetVariables
1028 (to be used in fits)
1029 - addeed some text to class description
1030
1031 * mdata/MData.cc:
1032 - added comment
1033
1034 * mdata/MDataArray.[h,cc], mdata/MDataElement.h,
1035 mdata/MDataList.[h,cc], mdata/MDataMember.h,
1036 mfbase/MFDataMember.[h,cc], mfbase/MFilterList.[h,cc]:
1037 - added SetVariables
1038
1039 * mdata/MDataChain.[h,cc]:
1040 - added support for indexed variables [i]
1041 - added SetVariables
1042
1043 * mdata/MDataValue.[h,cc]:
1044 - added support for variable values (through SetVariables)
1045 - added support for an index
1046 - added SetVariables
1047
1048 * mfbase/MF.[h,cc]:
1049 - removed support for {}. This case is now detected
1050 automatically
1051 - added SetVariables
1052 - added support for expressiond like
1053 "MHillas.fLength<2*MHillas.fWidth"
1054
1055 * mfbase/MFDataChain.[h,cc]:
1056 - added fCond data member
1057 - addednew constructor to support fCond
1058 - added support for new condition type
1059 - adapted Print and GetRule
1060
1061 * mimage/MNewImagePar.[h,cc]:
1062 - added some comments
1063
1064 * mhist/MHStarMap.[h,cc]:
1065 - fixed to use the correct MPointingPos instead of the
1066 deprecated MMcEvt. Use MPointingPosCalc to copy the
1067 pointing position from MMcEvt to MPointingPos
1068
1069 * mbase/MMath.[h,cc]:
1070 - added, which currently only implements calculation of
1071 significance and Li/Ma significance
1072
1073 * mbase/Makefile, mbase/BaseLinkDef.h:
1074 - added MMath
1075
1076
1077
1078 2004/03/19: Markus Gaug
1079
1080 * mcalib/MHCalibrationChargePix.cc
1081 - added some style to the default Draw in order to see the
1082 label and axis titles better
1083
1084 * mcalib/MHCalibrationChargeCam.[h,cc]
1085 - store and display more information on the average pxiels
1086
1087 * mcalib/MCalibrationCam.cc
1088 - the GetPixelContent flag were not correct any more, fixed them
1089
1090 * macros/calibration.C
1091 - fixed GetPixelContent flags
1092 - draw radial profile of the variables
1093
1094 * mjobs/MJCalibration.cc
1095 - fixed GetPixelContent flags
1096 - introduced RadialProfile for some displays
1097 - removed some not so important displays
1098
1099 * manalysis/MGeomApply.cc
1100 - included MCalibrationQECam to be initialized
1101
1102 * mcalib/MCalibrationChargePix.[h,cc],
1103 mcalib/MCalibrationQEPix.[h,cc]:
1104 - replace DefinePixId by SetPixId
1105
1106 * mcalib/MCalibrationChargeCalc.[h,cc]
1107 - added MCalibrationQECam
1108 - cleaned the code up a little
1109 - give more information at the end
1110
1111 * mcalib/MCalibrationChargePix.[h,cc]
1112 - took out fNumLoGainSampels whihc is not needed any more because
1113 conversion is only done in the getters
1114 - Canceled function ApplyLoGainConversion (for same reason)
1115
1116 * msignal/MExtractSignal2.cc
1117 - remove uncommented piece of code
1118
1119 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
1120 - remove warning about pixel with low gain saturation,
1121 now in MBadPixelsPix
1122
1123 * mbadpixels/MBadPixelsPix.[h,cc], mcalib/MCalibrationChargeCam.cc:
1124 - added new flag: kDeviatingNumPhes
1125
1126 * mcalib/MCalibrationChargePix.cc
1127 - check for mean arr. time in last bin replaced by check in last
1128 two bins
1129
1130 * mcalib/MCalibrationChargePix.[h,cc],
1131 mcalib/MCalibrationChargeCam.cc,
1132 mcalib/MHCalibrationChargeCam.cc:
1133 - removed flag kHiGainFitted, kLoGainFitted, since they are
1134 available from MBadPixelsPix
1135
1136 * macros/calibration.C, macros/calibrate_data.C
1137 - a few flags from MCalibrationChargeCam::GetPixelContent were wrong,
1138 corrected them
1139
1140
1141
1142 2004/03/18: Raquel de los Reyes
1143
1144 * macros/DAQDataCheck.C
1145 - macro to check the data from the DAQ system (.raw files).
1146
1147
1148
1149 2004/03/18: Thomas Bretz
1150
1151 * manalysis/AnalysisIncl.h:
1152 - added TVector2
1153
1154 * manalysis/MSrcPosCam.[h,cc]:
1155 - added Getter/Setter using TVector2
1156
1157 * mhbase/MH.cc:
1158 - fixed GetMinimumGT for TH2 and TH3
1159
1160 * mpointing/MPointingPos.h:
1161 - added Getter/Setter for Ra/Dec
1162
1163 * mpointing/MPointingPosCalc.cc:
1164 - fill Ra/Dec into MPointingPos
1165
1166
1167
1168 2004/03/18: Markus Gaug
1169
1170 * mgeom/MGeomCam.[h,cc]
1171 - replace fMaxRadius by a TArrayF of pixel area types
1172 - new TArrayF fMinRadius of each pixel area type
1173 - backward compatibility should be given,
1174 call to GetMaxRadius() returns the value for the whole camera
1175 (which corresponds to the previous value for the Magic camera)
1176
1177 * mimage/MConcentration.cc
1178 - fixed on flog to fLog in order to compile
1179
1180
1181
1182 2004/03/17: Thomas Bretz
1183
1184 * mastro/MAstroCatalog.[h,cc]:
1185 - some simplifications and changes
1186
1187 * mastro/MAstroCatalog.[h,cc]:
1188 - some simplifications and changes
1189
1190 * mastro/MAstroSky2Local.[h,cc]:
1191 - rotation matrix from sky to local coordinates
1192 - added
1193
1194 * mastro/Makefile, mastro/AstroLinkDef.h:
1195 - MAstroSky2Local added
1196
1197 * mraw/MRawEvtPixelIter.cc:
1198 - GetIdxMaxLoGainSample(const Byte_t lofirst) const
1199 accelerated and fixed (the first slice was compared to itself
1200 and the last slice was not taken into account)
1201
1202 * manalysis/MCerPhotAnal2.cc:
1203 - fixed a bug in the new treatment of lo-gains
1204
1205 * mhvstime/MHPixVsTime.cc:
1206 - fixed missing initialization of fTypeErr in constructor
1207
1208 * mimage/MHillas.[h,cc]:
1209 - implemented member function which returns MeanX/Y as TVector2
1210
1211 * mimage/ImageIncl.h:
1212 - added TVector2
1213
1214 * manalysis/MCerPhotEvt.[h,cc]:
1215 - fixed a bug in AddPixels which - in some special circumstances -
1216 cutted pixels with high pixel indices
1217
1218
1219
1220 2004/03/17: Antonio Stamerra
1221
1222 * macros/datatrigcheck.C
1223 - added macro for time and trigger data-checking
1224
1225
1226
1227 2004/03/17: Abelardo Moralejo
1228
1229 * manalysis/MSourcePosfromStarPos.cc
1230 - added cast fabs((Double_t)ival), line 703. Otherwise it does not
1231 compile.
1232
1233 * macros/starmc.C
1234 - added parameter accepted_fraction to select fraction of events
1235 to be processed (useful to make smaller outputs).
1236
1237
1238
1239 2004/03/17: Wolfgang Wittek
1240
1241 * manalysis/MSigmabar.[h,cc]
1242 - correct calculation of sector, which was wrong
1243
1244
1245
1246 2004/03/16: Markus Gaug
1247
1248 * mhist/MHCamera.[h,cc]
1249 - added function RadialProfile which returns a TProfile of the
1250 value along the radius from the camera center
1251
1252
1253
1254 2004/03/16: Oscar Blanch Bigas
1255
1256 * mimage/MConcentration.[h,cc]
1257 - new class for Concentration stuff.
1258 - It computes and stores Concentration 1-8
1259
1260 * mimage/MNewImagePar.[h,cc]
1261 - New Concentration stuff is moved to MConcentration.
1262
1263 * mimage/MHillasCalc.[h,cc], Makefile, ImageLinkDef.h
1264 - Modifications needed to support and compile new
1265 MConcentration class.
1266
1267
1268
1269 2004/03/16: Thomas Bretz
1270
1271 * mjobs/MJ*.[h,cc]
1272 - removed some obsolete comments
1273 - removed projections from Directory (SetDirectory(0))
1274
1275
1276
1277 2004/03/16: Wolfgang Wittek
1278
1279 * manalysis/MSigmabar.[h,cc]
1280 - calculate sigmabar as mean of individual pedestalRMS
1281 instead of sqrt of mean pedestalRMS^2
1282
1283
1284
1285 2004/03/16: Oscar Blanch
1286
1287 * mimage/MNewImagePar.[h,cc]
1288 - New variables members added: fInnerSize, fInnerLeakage[1,2],
1289 fConc[3-8].
1290 - It is only ready for Magic Camera geometry. It has to be done
1291 MGeomCam base.
1292 - The version ahs not been updated since it was done on the
1293 2004/03/10 by Abelardo.
1294
1295
1296
1297 2004/03/15: Markus Gaug
1298
1299 * mcalib/MCalibrationChargePix.[h,cc],
1300 mcalib/MCalibrationChargeCam.[h,cc],
1301 mcalib/MCalibrationChargeCalc.cc:
1302 - conversion from hi- to logain now not applied until the value is
1303 exported outside the class. This is necessary for the error
1304 propagation in the F-Factor method: In the calculation of the
1305 number of Phe, the conversion factors cancel out and do not
1306 enlarge the errors
1307 - pixels with number of phe's outside the range defined by
1308 fPheFFactorRelErrLimit are not any more declared as:
1309 MCalibrationChargePix::IsFFactorMethodValid() == kFALSE ,
1310 but instead as:
1311 MBadPixelsPix::IsSuitableRun(MBadPixelsPix::kUnreliableRun) == kTRUE,
1312 Like this, everybody is allowed to calibrate pixels which give
1313 no reasonable results in the calibration without bothering that
1314 too many pixels fall out. Enjoy!
1315 - In that procedure, the classes passed _internally_ from calculation
1316 of sigmas to calculation of variances which saves all the useless
1317 square rooting.
1318 - took out pointers to MCalibrationChargeBlindPix and
1319 MCalibrationChargePINDiode in MCalibrationChargeCam.
1320
1321
1322
1323 2004/03/15: Abelardo Moralejo
1324
1325 * mmc/MMcEvt.hxx
1326 - added getter function for fZFirstInteraction
1327
1328
1329
1330 2004/03/15: Wolfgang Wittek
1331
1332 * mastro/MObservatory.[h,cc]
1333 - remove bugs in RotationAngle(theta, phi, sin, cos)
1334 replaced
1335 cos = sinl + cosl*cosp /denom;
1336 by
1337 cos = (sinl - cosl*cosp) /denom;
1338
1339
1340
1341 2004/03/15: Thomas Bretz
1342
1343 * mastro/MObservatory.[h,cc]:
1344 - implemented RotationAngle(ra, dec, time)
1345
1346 * mbase/MTask.[h,cc]:
1347 - implemented usage of a TStopwatch to retriev time consumtion
1348 informations
1349 - changed PrintStatistics not to print classes having no
1350 Process() function
1351
1352 * mbase/MTaskList.[h,cc], mfileio/MReadReports.[h,cc]:
1353 - changed PrintStatistics according to changes in MTask
1354
1355 * mraw/MRawEvtHeader.cc:
1356 - added a comment to Fill member function
1357
1358 * manalysis/MCerPhotEvt.[h,cc]:
1359 - added fLut.Set to FixSize and resize fLut by a factor of 2
1360 instead of +1 which acelerates creation of all pixels a lot
1361
1362 * mbadpixels/MBadPixelsPix.cc:
1363 - fixed a typo
1364
1365 * mfilter/MFSoftwareTrigger.cc:
1366 - made statistics output meaning independant of usage of filter!
1367
1368 * mhbase/MFill.[h,cc]:
1369 - added possibility to give tab a different name
1370
1371 * mhist/MHCamera.cc:
1372 - fixed a bug when determin scale for same-option
1373
1374 * mjobs/MJCalibration.cc:
1375 - changed tab names for MFillH
1376
1377 * mjobs/MJExtactSignal.cc:
1378 - added MRawEvtHeader to output
1379
1380 * mbase/MStatusDisplay.[h,cc]:
1381 - changed displayed year
1382 - read and store MStatusArray to and from files
1383
1384 * mfileio/MReadTree.cc:
1385 - enhanced output
1386
1387 * mmain/MCameraDisplay.cc, mmain/MEventDisplay.[h,cc]:
1388 - added preliminary mode to display F1/F2/F3-files
1389
1390 * mbase/MStatusArray.[h,cc]:
1391 - added
1392
1393 * mbase/Makefile, mbase/BaseLinkDef.h:
1394 - added MStatusArray
1395
1396 * mhits/MHCamera.[h,cc], mgui/MHexagon.[h,cc]:
1397 - improved drawing MHCamera with 'same' option
1398
1399
1400
1401 2004/03/13: Markus Gaug
1402
1403 * mcalib/MCalibrationChargeCalc.cc, mcalib/MCalibrationChargeCam.cc,
1404 mcalib/MCalibrationChargePix.[h,cc],
1405 mcalib/MHCalibrationChargeCam.cc,
1406 mcalib/MHCalibrationChargeLoGainPix.cc:
1407 - fixed Low Gain calibration
1408
1409 * mcalib/MHGausEvents.cc:
1410 - changed default fit prob. limit from 0.005 to 0.001
1411
1412 * mbadpixels/MBadPixelsPix.h :
1413 - IsCalibrationResultOK does not ask for FitOK any more
1414
1415 * mcalib/MHCalibrationChargeCam.cc:
1416 - replaced Rel. Err. Limit for outliers in Phe's from 5 sigma to 7
1417
1418 * mraw/MRawEvtPixelIter.[h,cc]:
1419 - function GetIdxMaxLoGainSamples can be called optionally with
1420 offset (because first "loGain" samples are often in reality
1421 hiGain with high values.
1422
1423
1424
1425 2004/03/12: Sebastian Raducci
1426
1427 * manalysis/Makefile
1428 - added mastro in the include directories
1429
1430
1431
1432 2004/03/12: Thomas Bretz
1433
1434 * merpp.cc:
1435 - added 'force' option
1436
1437 * manalysis/MCerPhotAnal2.cc:
1438 - extract pedestal and pedestal rms from lo-gain if hi-gain not
1439 above a certain athreshold
1440
1441 * mastro/MAstroCatalog.[h,c]:
1442 - added text argument to DrawStar
1443
1444 * mbase/MStatusDisplay.cc:
1445 - some small changes to output of SaveAsPS
1446
1447 * mfilter/MFCosmics.cc:
1448 - changed output of filter statistics
1449
1450 * mbadpixels/MBadPixelsTreat.[h,cc]:
1451 - fixed some problems with the code - now it should work like
1452 expected
1453 - added a new member function to be able to change the number
1454 of required neighbors
1455
1456
1457
1458 2004/03/12: Wolfgang Wittek
1459
1460 * manalysis/Makefile
1461 - include 'mastro'
1462
1463 * manalysis/MSourcePosfromStarPos.[h,cc]
1464 - include MObservatory.h
1465 - call member function Rotationangle() of MObservatory
1466
1467
1468
1469 2004/03/12: Markus Gaug
1470
1471 * mjobs/MJCalibration.cc
1472 - updated call in displays to the corr. Cams.
1473
1474 * macros/calibrate_data.C
1475 - macro to study calibrate and study data used in Munich and IFAE
1476
1477
1478
1479 2004/03/12: Antonio Stamerra
1480
1481 * mraw/MRawEvtHeader.[h,cc]
1482 - Added the method GetTriggerID() to decode the trigger pattern.
1483
1484
1485
1486 2004/03/11: Abelardo Moralejo
1487
1488 * mimage/MHillasCalc.cc
1489 - Added some printout in PostProcess, to better express the reasons
1490 for which the reconstruction of some events did not succeed.
1491
1492
1493
1494 2004/03/11: Thomas Bretz
1495
1496 * status.cc:
1497 - updated
1498
1499 * manalysis/MCerPhotAnal2.cc:
1500 - removed an obsolete debug output
1501
1502 * mhist/MHCamera.[h,cc]:
1503 - added same-option to camera display
1504
1505 * mbadpixels/MBadPixelsCalc.[h,cc], mbadpixels/MBadPixelsTreat.[h,cc]:
1506 - implemented functionality of MBlindPixelsCalc2
1507
1508 * mbadpixels/MBadPixelsCam.[h,cc], mbadpixels/MBadPixelsPix.[h,cc],
1509 mbadpixels/MMcBadPixelsSet.cc, mcalib/MCalibrationChargeCalc.cc,
1510 mcalib/MCalibrationChargePix.cc, mcalib/MHCalibrationChargeCam.cc:
1511 - replaced several Set/GetUnsuitable* by a single member function
1512
1513
1514
1515 2004/03/11: Markus Gaug
1516
1517 * mbadpixels/MBadPixelsPix.h
1518 - removed bits about validity of calibration methods
1519 - IsCalibrationResultOK asks also from IsSuitableRun
1520
1521 * mbadpixels/MBadPixelsCam.cc
1522 - updated GetPixelContent
1523 - added Print function
1524
1525 * mcalib/MCalibrationChargeCam.[h,cc]
1526 mcalib/MCalibrationChargePix.h, mcalib/MCalibrationChargeCalc.cc:
1527 - removed pointers to MGeomCam and MBadPixelsCam in MCalibrationChargeCam
1528 - use two loops over pixels in order to determine mean flux of phe;s to
1529 discard pixels far outside the normal distribution
1530
1531 * mcalib/MCalibrate.cc
1532 - added case that no MBadPixelsCam is available.
1533
1534 * mcalib/MHCalibrationChargeCam.cc
1535 - adapted to new MBadPixelsPix::SetUnsuitable function
1536
1537
1538 2004/03/10: Abelardo Moralejo
1539
1540 * manalysis/MCerPhotPix.[h,cc]
1541 - Added member fIsHGSaturated, and setter/getter functions.
1542 Updated class version to 4.
1543
1544 * mcalib/MCalibrate.cc, MCalibrateData.cc
1545 - Added setting of MCerPhotPix.fIsHGSaturated if one or more HG
1546 slices saturate.
1547
1548 * mimage/MNewImagePar.[h,cc]
1549 - Added member fNumHGSaturatedPixels to count the number of pixels
1550 in which high gain saturates. Added getter funciton for it.
1551 Updated class version to 3.
1552
1553
1554
1555 2004/03/10: Markus Gaug
1556
1557 * mcalib/MCalibrationChargeCalc.cc,
1558 mcalib/MCalibrationChargePix.[h,cc],
1559 mcalib/MCalibrationChargeCam.[h,cc]:
1560 - calculation of conversion factor with F-Factor method from
1561 same mean number of photons, derived from weighted mean number
1562 of photo-electrons from inner and outer pixels, respectively
1563
1564 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
1565 - fixed the projections (did only display inner pixels up to now)
1566
1567 * macros/calibration.C
1568 - small bug fixed in display of rel. arrival times
1569 ( used MArrivalTimeCam instead of MHCalibrationRelTimeCam)
1570
1571 * mbadpixels/MBadPixelsCam.cc
1572 - replaced some InitSize(idx) by InitSize(idx+1) in order not to crash
1573 to program when reading from an ascii-file.
1574
1575 * mbadpixels/MBadPixelsCalc.cc
1576 - replaced one SetUnsuitableRun(....) by the new version without
1577 argument.
1578
1579
1580
1581 2004/03/10: Thomas Bretz
1582
1583 * mfilter/MFSoftwareTrigger.[h,cc]:
1584 - changed to support also a predifined number of NN
1585
1586 * mastro/MAstroCatalog.[h,cc]:
1587 - many enhancements
1588 - many speed improvements
1589
1590 * mbadpixels/MBadPixelsPix.[h,cc]:
1591 - fixed
1592
1593
1594
1595 2004/03/10: Ester Aliu
1596
1597 * mtemp/MIslands.[h,cc]
1598 - New MParContainer to hold information about islands
1599 (number of islands, pixels in each Island, Signal/Noise of
1600 each Island).
1601
1602 * mtemp/MIslandCalc.[h,cc]
1603 - New MTask to count and characterize Islands.
1604
1605
1606
1607 2004/03/09: Thomas Bretz
1608
1609 * Makefile.rules:
1610 - replaced *.o by $(...) for building archives
1611
1612 * mjobs/MJCalibration.cc:
1613 - exchanged apply and merge task
1614
1615 * mjobs/MJCalibration.h, mjobs/MJExtractSignal.h, mjobs/MJPedestal.h:
1616 - fixed some const-qualifiers
1617
1618 * mcalib/MHCalibrationChargeBlindPix.cc,
1619 mcalib/MHCalibrationChargeCam.cc,
1620 mcalib/MHCalibrationChargePINDiode.cc
1621 - removed some obsolete output when calling FindCreateObj
1622 - changed some 'not found' output messages to be 'Mars-compliant'
1623 - replaced some gLog by *fLog
1624
1625
1626
1627 2004/03/08: Markus Gaug
1628
1629 * mbadpixels/MBadPixelsPix.h
1630 - small modifications for better readability
1631 - remove Getters for calibration methods
1632 - added flag "UnReliableRun" in fInfo[0]
1633
1634 * mcalib/MHCalibrationChargeCam.cc, mcalib/MCalibrationChargePix.cc:
1635 - fill MBadPixelsPix with UnReliableRun or UnSuitableRun when
1636 calibration does not succeed.
1637
1638 * mcalib/MCalibrationChargeCam.cc
1639 - displaying saturation also for not-valid pixels in GetPixelContent
1640
1641 * msignal/MExtractedSignalCam.[h,cc], msignal/MExtractSignal.[h,cc],
1642 msignal/MExtractSignal2.[h,cc], mananlysis/MHPedestalCam.cc,
1643 mcalib/MCalibrationChargeCalc.[h,cc]:
1644 - in SetUsedFADCSlices, also the window (hi-and logain) is set.
1645 This because MExtractSignal2 set the whole window which was much
1646 bigger than the actually used one. This bug is now removed.
1647
1648
1649
1650 2004/03/08: Thomas Bretz
1651
1652 * merpp.cc:
1653 - fixed a bug in the screen output
1654
1655 * mgeom/MGeomMirror.cc:
1656 - added comment
1657
1658 * mmc/MMcConfigRunHeader.h:
1659 - added member function GetMirrors
1660
1661
1662
1663 2004/03/08: Abelardo Moralejo
1664
1665 * macros/starmc.C, starmcstereo.C, mccalibrate.C
1666 - adapted to m. Gaug's changes: now one MBadPixelsCam containers is
1667 added for each telescope to the parameter list.
1668
1669 * mmain/MEventDisplay.cc, Makefile
1670 - added MBadPixelsCam to par list, and mbadpixels/ to includes.
1671 Necessary due to changes in MCalibrate.
1672
1673
1674
1675 2004/03/06: Markus Gaug
1676
1677 * macros/calibration.C
1678 - adapted call to MHCamera::ProjectionS to the new version
1679
1680 * mcalib/Makefile
1681 - include directory mbadpixels
1682
1683 * manalysis/Makefile
1684 - include directory mbadpixels
1685
1686 * mcalib/MCalibrationChargeCalc.[h,cc]
1687 - include MBadPixelsCam
1688 - remove exclusion of pixels from ascii-file
1689 (now accessible from MBadPixelsCam)
1690
1691 * mcalib/MCalibrationChargePix.[h,cc]
1692 - include MBadPixelsCam
1693
1694 * mcalib/MCalibrationChargeCam.[h,cc]
1695 - include MBadPixelsCam
1696
1697 * mcalib/MHCalibrationChargeCam.[h,cc]
1698 - include MBadPixelsCam
1699 - include one additional MBadPixelsPix for the average inner and
1700 outer pixel, respectively
1701
1702 * mcalib/MHCalibrationChargePix.[h,cc]
1703 - make fSaturated and fPickup a Float_t (for average pixel)
1704
1705 * mbadpixels/MBadPixelsPix.h
1706 - include the CalibrationType_t infos
1707 - exchange "SetUnsuitable" by "SetUnsuitableRun"
1708
1709 * mbadpixels/MBadPixelsCam.cc, mbadpixels/MMcBadPixelsSet.cc:
1710 - exchange "SetUnsuitable" by "SetUnsuitableRun"
1711
1712 * mbadpixels/MBadPixelsCalc.cc:
1713 - exchange "SetUnsuitable" by "SetUnsuitableEvt"
1714
1715 * manalysis/MGeomApply.cc
1716 - remove obsolete MArrivalTime
1717 - add MBadPixelsCam
1718
1719 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc]
1720 - implemented calls to MBadPixelsCam
1721
1722 * macros/calibration.C, macros/bootcampstandardanalysis.C,
1723 macros/pedphotcalc.C
1724 - implemented calls to MBadPixelsCam
1725
1726 * mjobs/MJCalibration.cc
1727 - call to MBadPixelsCam
1728
1729
1730
1731 2004/03/05: Nadia Tonello
1732
1733 * manalysis/MBlindPixelsCalc2.[h,cc], manalysis/AnalysisLinkDef.h,
1734 manalysis/Makefile
1735 - Temporary class added (will be included in mbadpixels/ soon)
1736 - All the functions of MBlindPixelCalc are kept(with small improvements)
1737 - New function added: SetCheckPedestalRms
1738
1739 * manalysis/MCerPhotPix.h
1740 - Status Unmapped added (not include the pixel in the cleaned image)
1741
1742 * mimage/MImgCleanStd.cc
1743 - Checks for Unmapped status added
1744
1745 * mastro/MAstroCatalog.cc, msql/MSQLServer.cc:
1746 - include <stdlib.h> to solve compilation error
1747
1748
1749
1750 2004/03/05: Sebastian Raducci
1751
1752 * msignal/MArrivalTimeCalc.cc
1753 - fixed a little bug (exchanged a - with a + in the Calc() method)
1754
1755
1756
1757 2004/03/05: Markus Gaug
1758
1759 * mcalib/MCalibraitonChargeCalc.cc
1760 - remove some runheader line:
1761 if (runheader->IsMonteCarloRun())
1762 return kTRUE;
1763 which gave always true since this week, don't know why.
1764 - added some information in class description
1765
1766
1767
1768 2004/03/04: Sebastian Raducci
1769
1770 * msignal/MArrivalTimeCalc.cc
1771 - fixed a memory leak (the spline was not deleted...)
1772
1773
1774
1775 2004/03/04: Thomas Bretz
1776
1777 * mgeom/MGeomCam.[h,cc]:
1778 - added new data member fNumAreas
1779 - added new function CalcNumAreas
1780 - increased class version to 3
1781
1782 * mgeom/MGeomCamMagic.cc:
1783 - added setting of area index
1784
1785 * mgeom/MGeomPix.[h,cc]:
1786 - added fAidx data member
1787 - added getter function fAidx
1788 - increased class version to 3
1789
1790 * macros/sectorvstime.C:
1791 - added example of how to plot the evolution of a sector vs time
1792
1793 * mhist/MHVsTime.[h,cc], mhist/MHPixVsTime.[h,cc]:
1794 - moved to mhvstime
1795
1796 * mhvstime/MHSectorVsTime.[h,cc]:
1797 - added
1798
1799 * Makefile:
1800 - added mhvstime
1801
1802 * mhvstime/Makefile, mhvstime/HVsTimeLinkDef.h,
1803 mhvstime/HVsTimeIncl.h:
1804 - added
1805
1806 * mhist/Makefile, mhist/HistLinkDef.h,
1807 - removed MHVsTime
1808 - removed MHPixVsTime
1809
1810 * macros/rootlogon.C, macros/dohtml.C:
1811 - added new directory mhvstime
1812
1813 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
1814 - changes such, that it doesn't crash if signal has no lo-gain
1815 (This might still give wrong results!)
1816
1817 * macros/dohtml.C:
1818 - added pixvstime.C
1819 - added sectorvstime.C
1820
1821 * manalysis/MMcCalibrationUpdate.cc:
1822 - some changes on file consistency check done by Abelardo,
1823 he may comment on it
1824
1825 * mhist/MHCamera.[h,cc]:
1826 - changed to support also dividing the camera in pixels area indices
1827
1828 * mhist/MHEvent.cc:
1829 - minor change
1830
1831 * mjobs/MJPedestal.cc:
1832 - adapted to changes in MHCamera
1833
1834 * mastro/MAstroCatalog.[h,cc]:
1835 - added preliminary catalog
1836
1837 * mastro/Makefile, mastro/AstroLinkDef.h:
1838 - added MAstroCatalog
1839
1840
1841
1842 2004/03/03: Thomas Bretz
1843
1844 * mgeom/MGeomCam.cc:
1845 - give a name and title also if the default constructor is used
1846
1847 * mgeom/MGeomMirror.[h,cc]:
1848 - added member function GetReflection
1849 - added persistent data member fReflector
1850
1851 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, mjobs/MJPedestal.cc:
1852 - fixed a typo in the output
1853
1854 * mraw/MRawFileWrite.cc:
1855 - added the missing '.' to MRawRunHeader. Because of the design of
1856 MReadTree this is backward compatible
1857
1858 * mraw/MRawRunHeader.h:
1859 - removed last change from Abelardo. '>255' is the correct
1860 check for MC files following the definition that all MC files
1861 have run types >255 which was made in the past.
1862
1863 * manalysis/MCerPhotAnal.[h,cc], manalysis/MCerPhotAnal2.[h,cc]:
1864 - created ReInit member function to hold all code (moved from
1865 PreProcess) accessing the run header. The run header is not
1866 available in PreProcess. That it was working before was only
1867 by chance, because the run type is initialized with 65535 which
1868 is != 255 but not >255.
1869
1870
1871
1872 2004/03/03: Sebastian Raducci
1873
1874 * msignal/MArrivalTimeCalc.cc
1875 - The calculation of the arrival times is made only when needed
1876 (when the HalfMax is over the pedestal)
1877
1878 * mtools/MCubicSpline.cc
1879 - Commented out an annoying warn
1880
1881
1882
1883 2004/03/03: Abelardo Moralejo
1884
1885 * mraw/MRawRunHeader.h
1886 - Replaced
1887 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by
1888 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
1889 since the latter is the exact translation of what the function
1890 intends to do. I do not know why, but the display of real data
1891 did not work with the upper line!
1892
1893 * mgeom/MGeomCam.cc
1894 - Undid yesterday change! I do not know why, display completely
1895 fails after that change, both for old and new camera files.
1896 Put back fPixels[i] = new MGeomPix; in constructor.
1897
1898
1899
1900 2004/03/02: Abelardo Moralejo
1901
1902 * mmc/MMcCorsikaRunHeader.[h,cc]
1903 - Added operator [] to get references to the objects in
1904 TObjArray fTelescopes.
1905 - Added Print() function.
1906 - Added GetNumCT() function.
1907 - Replaced
1908 fTelescopes[i]= new MGeomCorsikaCT;
1909 by
1910 MGeomCorsikaCT* dummy = new MGeomCorsikaCT();
1911 fTelescopes.Add(dummy);
1912
1913 * mgeom/MGeomCorsikaCT.[h,cc]
1914 - Added getter functions for telescope coordinates.
1915 - Added Print() function.
1916
1917 * mgeom/MGeomCam.cc => NOTE: this change was undone later!
1918 - Replaced
1919 fPixels[i] = new MGeomPix;
1920 by
1921 MGeomPix* dummy = new MGeomPix();
1922 fPixels.Add(dummy);
1923
1924
1925
1926 2004/03/02: Thomas Bretz
1927
1928 * mcalib/MCalibrateData.cc:
1929 - removed usage of MGeomCam (you have MGeomApply for this!)
1930
1931
1932
1933 2004/03/01: Nadia Tonello
1934
1935 * manalysis/MCerPhotEvt.cc
1936 - TObject *MCerPhotEvtIter::Next() now returns Used pixels
1937 only if fUsedonly=kTRUE, otherwise it returns all the pixels
1938 in the array
1939
1940
1941
1942 2004/03/01: Sebastian Raducci
1943
1944 * msignal/MArrivalTimeCalc.[cc,h]
1945 - now the arrival time is at the half max of the spline:
1946 half max = (maximum - pedestal)/2
1947
1948 * mmain/MEventDisplay.cc
1949 - fixed an include (from MArrivalTime.h to MArrivalTimeCam.h)
1950
1951
1952
1953 2004/03/01: Wolfgang Wittek
1954
1955 * mhist/MHStarMap.[h,cc]
1956 - remove bugs
1957 - change GetRotationAngle() such that it can be called from outside
1958
1959
1960
1961 2004/03/01: Thomas Bretz
1962
1963 * Makefile:
1964 - enhanced all calls to subsequent makes by '-f Makefile' to
1965 make sure the correct Makefile is called
1966
1967 * merpp.cc:
1968 - enhanced interpretation of time
1969 - fixed a bug in determin the file-type
1970
1971 * mbase/MTime.[h,cc]:
1972 - added GetGmst() member function
1973
1974 * mastro/MAstro.[h,cc]:
1975 - added Coordinate2Angle
1976 - added AngularDistance
1977 - implemented UT2GMST
1978 - replaced defined by TMath::Pi()
1979
1980 * mastro/MObservatory.[h,cc]:
1981 - added data members for sin-/cos-component of latitude
1982 - added calculation of rotation angle
1983
1984 * mhist/MHStarMap.[h,cc]:
1985 - changes to use MObservatory member function
1986
1987 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotAnal2.cc,
1988 manalysis/MCerPhotCalc.cc, manalysis/MMcCalibrationUpdate.cc,
1989 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalNSBAdd.cc,
1990 manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc,
1991 mcalib/MCalibrationChargeCalc.cc, mcalib/MMcCalibrationCalc.cc
1992 - changed to use IsMonteCarloRun() now
1993
1994 * manalysis/MMcCalibrationUpdate.cc:
1995 - unified output to log-stream
1996 - replaced sqrt by TMath::Sqrt
1997
1998 * mcalib/MCalibrationChargeCalc.cc:
1999 - unified output to log-stream
2000 - removed .Data() from TString where obsolete
2001 - fixed memory leak using gSystem->ExpandPathName
2002
2003 * mpointing/MPointingPosCalc.cc, mraw/MRawFileWrite.cc:
2004 - adde class name to used kRT*/kTT* enums
2005
2006 * mraw/MRawEvtHeader.h:
2007 - made enum data member of class
2008
2009 * mraw/MRawRunHeader.[h,cc]:
2010 - made kMagicNumber and kMaxFormatVersion a static data
2011 member of the class
2012 - added IsMonteCarloRun member function
2013
2014
2015
2016 2004/02/27: Markus Gaug
2017
2018 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
2019 - put in call to MHCamera::Projection the name of the calling
2020 class, otherwise the projected hsitogram will be overwritten by
2021 an empyt one.
2022
2023 * mcalib/MHCalibrationChargePix.[h,cc],
2024 mcalib/MHCalibrationHiGainChargePix.[h,cc],
2025 mcalib/MHCalibrationLoGainChargePix.[h,cc]:
2026 - histogram name setting and title setting moved to constructor,
2027 Functions Init and ChangeHistId derive directly from
2028 MHcalibrationChargePix
2029
2030 * mcalib/MHCalibrationChargeCam.[h,cc],
2031 mcalib/MCalibrationChargeCam.[h,cc],
2032 mcalib/MCalibrationChargeCalc.[h,cc]:
2033 - introduced "average inner" and "average outer" higain and logain
2034 pixels.
2035
2036
2037
2038 2004/02/27: Raducci Sebastian
2039
2040 * mhist/Makefile
2041 - added mastro in the include list
2042
2043
2044
2045 2004/02/27: Abelardo Moralejo
2046
2047 * mmain/MEventDisplay.cc
2048 - replaced in fill8 obsolete MArrivalTime with MArrivalTimeCam.
2049 - Updated display of MC data: removed MCerPhotCalc, and replaced
2050 it by MExtractSignal+MMcCalibrationUpdate+MCalibrate. Now
2051 MPedPhotCam is filled and all the camera display tabs are shown
2052 correctly (most were not working for MC events since a while
2053 ago).
2054
2055 * mmain/Makefile
2056 - Added mcalib to list of include directories.
2057
2058 * manalysis/MMcCalibrationUpdate.[h,cc]
2059 - Added member variable Bool_t fOuterPixelsScaling, which is
2060 kTRUE by default. If set to kFALSE, MCalibrationCam is filled
2061 such that MCerPhotEvt will later be filled with the signal as it
2062 is, not corrected for the (possibly) different gain of the outer
2063 pixels electronic chain. This option was necessary to allow for
2064 the change in the camera display (see above).
2065
2066 * macros/starmc.C
2067 - added (optional) division of output into two, for use as train
2068 and test samples in g/h separation studies.
2069
2070
2071
2072 2004/02/26: Hendrik Bartko
2073
2074 * macros/dohtml.C
2075 - included the path msignals/
2076
2077
2078
2079 2004/02/26: Abelardo Moralejo
2080
2081 * macros/starmcstereo.C
2082 - changed filters to divide data between train and test sample for
2083 gamma hadron separation studies. Now we use the modulus operator
2084 applied to (Corsika) event number:
2085 MF filter1("{MMcEvt;1.fEvtNumber%2}<0.5");
2086 MF filter2("{MMcEvt;1.fEvtNumber%2}>0.5");
2087 - cleaned up a bit the way the CT coordinates are fed to the task
2088 MStereoCalc.
2089 - Changed default FADC integration range (center range to adapt to
2090 new camera).
2091
2092
2093
2094 2004/02/26: Thomas Bretz
2095
2096 * mhist/MHCamera.cc:
2097 - fixed a function description
2098
2099 * mreport/MReport.cc, mreport/MReportFileRead.cc:
2100 - introduced return case -1
2101
2102 * Makefile.rules:
2103 - remove all dependancy files when calling 'rmdep'
2104
2105 * mbase/MAGIC.h, mmc/MMcEvt.hxx:
2106 - moved ParticleId_t to MMcEvt
2107 - implemented MMcEvt::GetParticleName
2108 - implemented MMcEvt::GetEnergyStr
2109
2110 * mfilter/MFGeomag.cc, mfilter/MFParticleId.cc, mhist/MHCompProb.cc,
2111 mhist/MHEvent.cc, mhist/MHHadronness.cc,
2112 mmontecarlo/MMcTriggerRateCalc.cc, mranforest/MHRanForest.cc:
2113 - fixed usage of ParticleId_t
2114
2115 * msignal/Makefile:
2116 - removed obsolete includes
2117
2118 * mastro/Makefile, mastro/AstroLinkDef.h, mastro/MAstro.[h,cc],
2119 mastro/MObservatory.[h,cc]:
2120 - added
2121
2122 * mbase/MAstro.[h,cc]:
2123 - removed
2124
2125 * mbase/Makefile, mbase/BaseLinkDef.h:
2126 - removed MAstro
2127
2128 * Makefile:
2129 - added mastro
2130 - added msql
2131 - added mfbase
2132
2133 * mtemp/MObservatory.[h,cc], mtemp/MObservatoryLocation.[h,cc]:
2134 - removed
2135
2136 * merpp.cc:
2137 - added Sql support
2138
2139 * mraw/MRawFileRead.h:
2140 - added GetFileName
2141
2142 * msql/Makefile, msql/SqlLinkDef.h, msql/SqlIncl.h,
2143 MSQLServer.[h,cc], MSqlInsertRun.[h,cc]:
2144 - added
2145
2146 * mfilter/MF.[h,cc], mfilter/MFDataChain.[h,cc],
2147 mfilter/MFDataMember.[h,cc], mfilter/MFEventSelector.[h,cc],
2148 mfilter/MFEventSelector2.[h,cc], mfilter/MFRealTimePeriod.[h,cc]:
2149 - moved to mfbase
2150
2151 * mfbase/Makefile, mfbase/FBaseLinkDef.h, mfbase/FBaseIncl.h:
2152 - added
2153
2154 * merpp.cc:
2155 - implemented control of gDebug (root debugging)
2156
2157 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc],
2158 mfileio/MWriteRootFile.[h,cc]:
2159 - implemented CheckAndWrite return value
2160
2161 * mfileio/MWriteRootFile.cc:
2162 - fixed updating already existing branches (eg concatenating report
2163 files)
2164
2165 * macros/dohtml.C, macros/rootlogon.C:
2166 - added mastro
2167 - added mfbase
2168 - added msql
2169
2170 * mraw/MRawEvtHeader.h:
2171 - implemented GetNumTrigLvl1
2172 - implemented GetNumTrigLvl2
2173
2174
2175
2176 2004/02/25: Markus Gaug
2177
2178 * mcalib/MExtractBlindPixel.[h,cc],
2179 mcalib/MExtractPINDiode.[h,cc],
2180 mcalib/MExtractedSignalBlindPixel.[h,cc],
2181 mcalib/MExtractedSignalPINDiode.[h,cc],
2182 mcalib/Makefile, msignal/Makefile, mcalib/CalibLinkDef.h,
2183 msignal/SignalLinkDef.h:
2184 - moved blindpixel and PINdiode extractors to msignal
2185
2186
2187 * mcalib/MCalibrationQECam.[h,cc], mcalib/MCalibrationQEPix.[h,cc]:
2188 - two new classes to hold the quantum efficieny information of the
2189 calibration
2190
2191 * msignal/MArrivalTimeCalc.[h,cc]
2192 - fill now MArrivalTimePix instead of MArrivalTime
2193
2194 * mcalib/MHCalibrationChargeCam.cc
2195 - display only valid pixels for the corr. values in GetPixelContent
2196
2197 * mcalib/MHCalibrationRelTimeCam.cc
2198 - is now filled from MArrivalTimeCam instead of MArrivalTime
2199
2200 * macros/calibration.C
2201 - divided into two macros: calibration.C using the MJPedestal
2202 standard procedure and pedestalstudies.C using the old
2203 procedures
2204
2205 * macros/pedestalstudies.C
2206 - new macro containing the first previous part of calibration.C
2207
2208 * mcalib/MCalibrationChargeBlindPix.h,
2209 mcalib/MCalibrationChargePINDiode.h, mbase/MAGIC.h,
2210 mjobs/MJCalibration.cc:
2211 - definition of PulserColot_t in MAGIC.h.
2212
2213
2214
2215 2004/02/25: Hendrik Bartko
2216
2217 * macros/rootlogon.C
2218 - set the include path also to msignals/
2219
2220 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractSignal2.[h,cc],
2221 manalysis/MExtractedSignalCam.[h,cc],
2222 manalysis/MExtractedSignalPix.[h,cc],
2223 manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc],
2224 manalysis/MArrivalTimeCalc2.[h,cc]:
2225 - removed
2226
2227 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2228 - removed classes mentioned above
2229
2230 * msignal/MExtractSignal.[h,cc], msignal/MExtractSignal2.[h,cc],
2231 msignal/MExtractedSignalCam.[h,cc],
2232 msignal/MExtractedSignalPix.[h,cc],
2233 msignal/MArrivalTime.[h,cc], msignal/MArrivalTimeCalc.[h,cc],
2234 msignal/MArrivalTimeCalc2.[h,cc]:
2235 - added
2236
2237 * msignal/Makefile, msignal/AnalysisLinkDef.h:
2238 - added classes mentioned above
2239
2240 * mfilter/Makefile, mcalib/Makefile, mjobs/Makefile, mmain/Makefile:
2241 - added include msignal
2242
2243
2244
2245
2246 2004/02/25: Wolfgang Wittek
2247
2248 * mcalib/MCalibrateData.[h,cc]
2249 - initialize size for MPedPhotCam
2250
2251
2252
2253 2004/02/24: Wolfgang Wittek
2254
2255 * manalysis/MSourcPosfromStarPos.[h,cc]
2256 - change member function SetSourceAndStarPosition() to expect sky
2257 coordinates in the standard units
2258 - generalize to more than 1 star
2259 - the class is not yet fully tested
2260
2261 * mfilter/MFSelBasic.[h,cc]
2262 - change default values of cuts
2263
2264
2265
2266 2004/02/24: Markus Gaug
2267
2268 * mjobs/MJCalibration.cc, macros/calibration.C,
2269 macros/bootcampstandardanalysis.C, macros/pedphotcalc.C:
2270 - added MCalibrationChargeBlindPix to plist
2271 - added new filling of histograms with MFillH
2272 - changed SetPulserColor to MCalibrationChargeBlindPix and
2273 MCalibrationChargePINDiode
2274
2275 * mcalib/MHCalibrationChargeBlindPix.[h,cc]:
2276 - receives a pointer to MCalibrationChargePINDiode which is filled
2277 with the results and told to calculate the fluxes in the
2278 Finalize function
2279 - is filled via MFillH from MExtractBlindPixel
2280 - SetPulserColor directly in this class
2281
2282 * mcalib/MCalibrationChargeBlindPix.[h,cc]
2283 - new storage container of the blind pxiel resutls, replaces
2284 MCalibrationBlindPix
2285
2286 * mcalib/MCalibrationChargeCalc.[h,cc]:
2287 - does not fill the histograms any more, but does ony the
2288 calculations in the postprocess. No pointer to MExtractPINDidoe
2289 or MExtractBlindPixel any more.
2290
2291 * mcalib/MCalibrationChargePix.cc
2292 - discovered an error in the calculation of phe's in
2293 CalcFFactorMethod(). The average QE was applied twice.
2294 This error had been introduced on 13/02/04
2295 - loosened criterium convFFactorRelErrLimit from 0.1 to 0.2
2296 - CalcFFactor asks for IsChargeValid before calculating anything
2297
2298 * mcalib/MCalibrationChargePINDiode.[h,cc]
2299 - added function SetFluxOutsidePlexiglassAvailable
2300 - SetPulserColor directly in this class
2301
2302 * mcalib/MCalibrationChargeCam.cc
2303 - removed function SetPulserColor from here
2304
2305 * mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationConfig.h,
2306 mcalib/MHCalibrationPINDiode.[h,cc],
2307 mcalib/MCalibrationBlindPix.[h,cc],
2308 mcalib/MHCalibrationBlindPixel.[h,cc]:
2309 - removed since obsolote
2310
2311 * mcalib/MHCalibrationChargePix.cc
2312 - make fPickup an Int_t
2313
2314 * mcalib/MCalibrate.cc
2315 - test validity of every calibration method before retrieving
2316 conversion factors
2317
2318 * mcalib/MHGausEvents.[h,cc]
2319 - add possibility to set fit ranges in call to FitGaus
2320 - make function CreateXaxis protected
2321
2322
2323
2324 2004/02/23: Markus Gaug
2325
2326 * mraw/MRawEvtPixelIter.h
2327 - include GetNumHiGainSamples and GetNumLoGainSamples
2328
2329 * mcalib/MExtractedSignalBlindPixel.h,
2330 mcalib/MExtractBlindPixel.[h,cc]:
2331 - included storage of pedestal
2332
2333 * mcalib/MHGausEvents.[h,cc]
2334 - make the fit functions protected
2335
2336
2337
2338 2004/02/22: Markus Gaug
2339
2340 * mfilter/MFCosmics.[h,cc]
2341 - fMaxNumEmpty changed from absolute number to relative number of
2342 pixels
2343
2344 * mcalib/MHGausEvents.h
2345 - remove the "->" from the pointers which are initialized only
2346 in certain cases. The streamer did not work in case that
2347 MFGausFit was left at the NULL pointer.
2348
2349
2350
2351 2004/02/21: Markus Gaug
2352
2353 * manalysis/MExtractedSignalPix.[h,cc]
2354 - changed variable fIsLoGainUsed to fLoGainUsed
2355 - added function GetNumHiGainSaturated()
2356
2357
2358 2004/02/20: Markus Gaug
2359
2360 * mcalib/MHCalibrationChargeHiGainPix.[h,cc], mcalib/Makefile,
2361 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
2362 mcalib/CalibLinkDef.h
2363 - new class to replace MHCalibrationPixel,
2364 based on MHCalibrationChargePix
2365
2366 * mcalib/MCalibrationChargeCalc.[h,cc]
2367 mcalib/MCalibrationChargeCam.[h,cc]
2368 mcalib/MCalibrationChargePix.[h,cc]
2369 mcalib/MCalibrationChargePINDiode.[h,cc]
2370 mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
2371 mcalib/MCalibrationPINDiode.[h,cc]:
2372 - added the "charge" versions, remove the old ones. The histograms
2373 should be filled in the MH... versions independently of
2374 MCalibrationChargeCalc. This is fully realized for the PIN Didoe
2375 now and will later be so for the pixels and the blind pixel.
2376
2377 * mcalib/MHCalibrationChargePINDiode.[h,cc]
2378 - receives a pointer to MCalibrationChargePINDiode which is filled
2379 with the results and told to calculate the fluxes in the
2380 Finalize function
2381
2382 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc],
2383 mcalib/MMcCalibrationCalc.[h,cc], mjobs/MJCalibration.[h,cc],
2384 manalysis/MMcCalibrationUpdate.[h,cc],
2385 mjobs/MJExtractSignal.[h,cc], manalysis/MGeomApply.cc,
2386 mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C,
2387 macros/bootcampstandardanalysis.C,
2388 macros/pedphotcalc.C:
2389 - replace MCalibrationCam by MCalibrationChargeCam
2390 - replace MCalibrationCalc by MCalibrationChargeCalc
2391
2392
2393
2394 2004/02/19: Markus Gaug
2395
2396 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc,
2397 mcalib/MCalibrate.cc, mcalib/MCalibrateDate.cc,
2398 manalysis/MMcCalibrationUpdate.cc:
2399 - standardized naming of variables containing "Error", this also affected
2400 the calling functions MCalibrate, MMcCalibrationUpdate and MCalibrateData
2401
2402 * mcalib/MCalibrationCam.cc, mcalib/MCalibrationPix.cc,
2403 mcalib/MCalibrationCalc.cc, mcalib/MCalibrate.cc,
2404 mcalib/MCalibrateData.cc, mcalib/MCalibrationConfig.h:
2405 - took out some configuration numbers and put them directly into
2406 the class
2407 - remove completely MCalibrationConfig.h
2408
2409
2410
2411 2004/02/19: Abelardo Moralejo
2412
2413 * mhist/MHEvent.[h,cc]:
2414 - Changed names of Event "types" to make them more descriptive.
2415 Former kEvtSignal is now called kEvtSignalDensity, and indicates
2416 pixel content scaled by area. Added kEvtSignalRaw, which
2417 corresponds to pixel content (with no scaling) in whatever units
2418 (this depends on how the MHEvent object is filled!). The default
2419 constructor initializes type=kEvtSignalRaw.
2420
2421 * mmain/MEventDisplay.cc
2422 - Changed filling of evt1 and evt2. Now they are filled with raw
2423 content of MCerPhotEvt. Since in MEventDisplay, MCerPhotEvt is
2424 still filled uncalibrated (hence in ADC counts), this means that
2425 what will be now shown in Mars' camera display is now the signal
2426 in each pixel without scaling with pixel area. Given that the
2427 default flat fielding is such that equal light density
2428 corresponds to equal absolute signal (in ADC counts), this is
2429 more reasonable, and allows to check for instance how the
2430 relative pixel gains are adjusted by looking at calibration
2431 events. To be FIXED: there is however an "inconsistency" in
2432 MEventDisplay, and it is that MCerPhotEvt is still used to keep
2433 uncalibrated signals. To be replaced by MExtractedSignalCam?
2434
2435
2436
2437 2004/02/19: Thomas Bretz
2438
2439 * manalysis/MCerPhotEvt.h:
2440 - added operator= to MCerPhotEvtIter -- is this correct?
2441
2442 * mhist/MHCamera.[h,cc]:
2443 - added member function to calculate minimum content and
2444 maximum content for a single sector
2445 - Added possibility to get a projection for a single sector.
2446 - GetMinimum/GetMaximum now only takes used pixels into account
2447 (you can request all pixels using a different member function)
2448 - fixed projection (projection only took pixels with contents!=0
2449 instead of 'used' pixels
2450 - Don't call Sumw2() anymore for projection
2451
2452 * mjobs/MJPedestal.cc:
2453 - added MPedestalCam to output again - MPedestalCam was fixed
2454 yesterday
2455 - Added Histograms for the two camera halves
2456
2457
2458
2459 2004/02/18: Markus Gaug
2460
2461 * macros/calibration.C
2462 - fixed a buggy display of the F-Factor method
2463
2464 * mcalib/MCalibrationCalc.cc
2465 - calculate the F-Factor method already in the post-Process
2466
2467 * mcalib/MCalibrationPix.h
2468 - move CalcFFactorMethod to public
2469
2470
2471
2472 2004/02/18: Abelardo Moralejo
2473
2474 * mtools/MCubicSpline.cc
2475 - in Init, corrected initialization of arrays temp and ysd, which
2476 was done with n-1 elements instead of n.
2477
2478 * mgui/MHexagon.cc
2479 - added comment explaining the algorithm.
2480 - changed explicit values of Sin and Cos 60 degrees by const
2481 variables (more readable).
2482
2483
2484
2485 2004/02/18: Hendrik Bartko
2486
2487 * msignal/:
2488 - removed the backup files *~
2489 - removed the object files *.o
2490 - removed the files SignalCint.*
2491
2492 * mgui/MHexagon.cc
2493 - added comment explaining the algorithm.
2494
2495
2496
2497 2004/02/18: Thomas Bretz
2498
2499 * manalysis/MPedestalCam.[h,cc]:
2500 - Changed order of derivements - seems to be VERY important!
2501 - changed GetSize from UInt_t to Int_t which is the type
2502 of TClonesArray::GetSize() !
2503
2504 * mfileio/MReadReports.cc:
2505 - skip trees with no entries
2506
2507 * mgui/MCamEvent.cc:
2508 - added a comment
2509
2510 * mhbase/MFillH.cc:
2511 - in case SetupFill returns kFALSE and kCanSkip is set
2512 Skip task
2513
2514 * mraw/MRawFileRead.cc:
2515 - don't print warning in case of none executions
2516
2517 * manalysis/MArrivalTimeCalc2.cc:
2518 - added some const-qualifiers
2519
2520
2521
2522 2004/02/17: Raquel de los Reyes
2523
2524 * macros/CCDataCheck.C
2525 - Added some improvements in the plots.
2526
2527
2528
2529 2004/02/17: Abelardo Moralejo
2530
2531 * macros/readrfl.C
2532 - Added missing gPad->cd(1), otherwise the display of events was
2533 not updated.
2534
2535 * mgui/MHexagon.cc
2536 - DistanceToPrimitive(Float_t px, Float_t py) Changed check of
2537 whether px,py is inside the pixel or not. Previous algorithm
2538 was just an approximation.
2539
2540
2541
2542 2004/02/17: Raquel de los Reyes
2543
2544 * mcamera/MCameraHV.h
2545 - Now it derives from a MCamEvent class and implemented the
2546 GetPixContent() and DrawPixelContent() functions. Added the
2547 GetMean function to get the mean HV settings of the camera.
2548
2549 * macros/CCDataCheck.C
2550 - Added the HV settings plots.
2551
2552
2553
2554 2004/02/17: Hendrik Bartko
2555
2556 * msignal:
2557 - new: directory for all signal and time extraction classes
2558
2559 * msignal/MArrivalTimeCam.[h,cc], manalysis/Makefile,
2560 msignal/AnalysisLinkDef.h, MGeomApply.cc:
2561 - new: Storage Container for the ArrivalTime in the camera
2562
2563 * msignal/MArrivalTimePix.[h,cc], manalysis/Makefile,
2564 msignal/AnalysisLinkDef.h:
2565 - new: Storage Container for ArrivalTime information of one pixel
2566
2567 * msignal/Makefile, SignalCint.[h,cc], SignalDep.d, SignalIncl.h,
2568 SignalLinkDef.h
2569 - auxiliary files for msignal directory
2570
2571 * manalysis/MArrivalTimeCalc2.[h,cc]:
2572 - added functionality to compute error of the extracted ArrivalTime
2573 - calculated ArrivalTime is stored in MArrivalTimeCam
2574
2575 * manalysis/MGeomApply.cc
2576 - geometry is applied to MArrivalTimeCam
2577
2578 * Makefile:
2579 - directory msignal is included
2580
2581
2582
2583 2004/02/17: Sebastian Raducci
2584
2585 * mtools/MCubicSpline.[h,cc]
2586 - little corrections in minimums evalustion methods
2587 - changed constructors (they require the fadc slices to be const)
2588
2589 * macros/spline.C
2590 - changed according to the MCubicSpline new constructors
2591
2592 * manalysis/MArrivalTimeCalc.[h,cc]
2593 - changed to use the MCubicSpline class intead of the TSpline class
2594 - warning: now the arrival time is again the maximum of the spline,
2595 soon it will be changed to half maximum
2596
2597
2598
2599 2004/02/17: Wolfgang Wittek
2600
2601 * manalysis/MSourcPosfromStarPos.[h,cc]
2602 - new class; calculates the position of the source in the camera from
2603 the position of a star in the camera and puts it into
2604 MSrcPosCam
2605
2606
2607
2608 2004/02/16: Abelardo Moralejo
2609
2610 * mcalib/MMcCalibrationCalc.cc
2611 - Fixed two typos in screen output.
2612
2613
2614
2615 2004/02/16: Markus Gaug
2616
2617 * mcalib/MCalibrationPix.cc
2618 - documentation from David's email added
2619 - EffectiveQE decreased from 0.2 to 0.18 (see documentation)
2620
2621 * mcalib/Makefile, mcalib/CalibLinkDef.h:
2622 - added MExtractBlindPixel and MExtractedSignalBlindPixel
2623
2624 * mcalib/MExtractBlindPixel.[h,cc]
2625 - new signal extractor for the Blind Pixel
2626
2627 * mcalib/MExtractedSignalBlindPixel.[h,cc]
2628 - new container for the extracted signal of the BlindPixel
2629
2630 * mcalib/MCalibrationCalc.[h,cc]
2631 - does not extract signal from Blind Pixel any more, searches
2632 for MExtractedSignalBlindPixel and fills the hists from there
2633
2634 * macros/calibration.C, macros/bootcampstandardanalysis.C,
2635 macros/pedphotcalc.C, mjobs/MJCalibration.cc:
2636 - introduce the blind pixel and PIN diode extraction in the macro
2637
2638 * manalysis/MPedestalCam.h
2639 - changed type of fTotalEntries from ULong_t to UInt_t
2640 - fixed documentation of fTotalEntries
2641
2642 * manalysis/MPedCalcPedRun.h
2643 - changed type of fNumSamplesTot from ULong_t to UInt_t
2644
2645 * mcalib/MHGausEvents.h
2646 - changed type of fCurrentSize from ULong_t to UInt_t
2647
2648 * mcalib/MCalibrationConfig.h
2649 - removed gkConversionHiLo and gkConversionHiLoErr which is now
2650 directly in the class MCalibrationPix
2651
2652
2653
2654 2004/02/16: Thomas Bretz
2655
2656 * manalysis/AnalysisLinkDef.h:
2657 - added missing MCerPhotEvtIter
2658
2659 * merpp.cc:
2660 - added possible usage of database
2661
2662 * star.cc:
2663 - moved source code into new class MJStar - preliminary
2664
2665 * manalysis/MCerPhotPix.cc:
2666 - updated class header
2667 - fixed Print-output
2668
2669 * mbase/MAGIC.h:
2670 - removed definition of MLog
2671
2672 * mbase/MArgs.h:
2673 - removed include of MAGIC.h
2674
2675 * mbase/MLog.h:
2676 - added extern definition of gLog
2677
2678 * mbase/MParContainer.[h,cc]:
2679 - move body of constructors to source file
2680
2681 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
2682 mraw/MRawCrateArray.cc, mraw/MRawCrateData.cc,
2683 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawRead.cc,
2684 mraw/MRawEvtPixelIter.cc, mraw/MRawFileWrite.cc:
2685 - fixed documentation header
2686
2687 * mcalib/MMcCalibrationCalc.[h,cc]:
2688 - fixed documentation header
2689 - fixed usage of FindCreateObj and FindObject
2690 - removed data member to count entries (use histogram instead)
2691 - use TH1 function Integral instead of doing it manually
2692
2693 * mfilter/MFCosmics.cc:
2694 - fixed documentation
2695
2696 * mimage/MHillas.cc, mimage/MImgCleanStd.cc,
2697 mimage/MNewImagePar.[h,cc]:
2698 - replaced for-loops by Iterators
2699
2700 * mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc:
2701 - fixed documentation header
2702 - check return value of MRawRunHeader::ReadEvt
2703
2704 * mraw/mraw/MRawRunHeader.[h,cc]:
2705 - fixed documentation header
2706 - added return value to MRawRunHeader::ReadEvt
2707 - added constant number for max format version - preliminary
2708 (should by a static data member)
2709
2710 * mcalib/MHCalibrationPINDiode.cc:
2711 - do not delete pointers in the destructor which are already
2712 deleted in the base class
2713 - reset histograms in Clear()
2714
2715 * mcalib/MHCalibrationPixel.cc:
2716 - after deletion of instances in Clear() initialize pointer to NULL
2717
2718 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
2719 - fixed usage of logging stream output levels
2720
2721 * manalysis/MPedCalcPedRun.[h,cc]:
2722 - removed obsolete fSignals
2723
2724 - removed obsolete fNumPixels
2725
2726 * manalysis/MPedestalCam.h:
2727 - added '->' to fArray
2728
2729 * mfileio/MWriteRootFile.cc:
2730 - changed some output to make debugging easier
2731
2732 * mjobs/MJCalibration.cc:
2733 - fixed a bug in drawing
2734
2735 * mjobs/MJExtractSignal.cc:
2736 - removed MPedestalCam from MWriteRootFile output.
2737 When creating the branch it crashes - reason unknown I'll
2738 investigate further
2739
2740
2741
2742 2004/02/16: Markus Gaug
2743
2744 * mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C:
2745 - added MHCalibrationRelTimePix
2746
2747 * mcalib/MHCalibrationRelTimePix.[h,cc],
2748 mcalib/MHCalibrationRelTimeCam.[h,cc]:
2749 - new classes to fit and display the relative arrival times.
2750 - filled from MArrivalTime
2751 - need: MFillH("MHCalibrationRelTimeCam","MArrivalTime")
2752
2753 * manalysis/MCalibrationCalc.cc
2754 - take out all uncommented code referring to the relative arrival time
2755
2756 * manalysis/MArrivalTime.h
2757 - changed function GetNumPixels to GetSize
2758
2759 * macros/bootcampstandardanalysis.C, macros/pedphotcalc.C
2760 - included cosmics rejection which was in MCalibrationCalc before
2761
2762
2763
2764 2004/02/14: Markus Gaug
2765
2766 * mcalib/Makefile, mcalib/CalibLinkDef.h:
2767 - added MHCalibrationChargePINDiode
2768
2769 * mcalib/MHCalibrationChargePINDiode.[h,cc]
2770 - new class to fill the PIN Diode histograms. Derives from
2771 MHCalibrationChargePix and is filled with MFillH from the
2772 container MExtractedSignalPINDiode.
2773 Will replace MHCalibrationPINDiode entirely soon.
2774
2775 * mcalib/MHCalibrationChargePix.[h,cc]
2776 - new base class for the calibration charges histogram pixel.
2777 Derives from MH and can be filled with the MH with the MH
2778 functions.
2779
2780 * mcalib/MExtractPINDiode.[h,cc]
2781 - new signal extractor for the PIN Diode
2782
2783 * mcalib/MExtractedSignalPINDiode.[h,cc]
2784 - new container for the extracted signal of the PIN Diode
2785
2786 * mcalib/MCalibrationCalc.[h,cc]
2787 - remove the PIN Diode signal extraction
2788
2789 * manalysis/MHPedestalPix.[h,cc]
2790 - new version of MHPedestalPixel, deriving from MHGausEvents.
2791
2792 * manalysis/MHPedestalPixel.[h,cc]
2793 - old version removed, since obsolete (and erroneous)
2794
2795 * manalysis/MHPedestalCam.[h,cc]
2796 - histogramming part of MPedestalCam now in own class
2797
2798 * manalysis/MPedestalPix.h
2799 - removed include of MHPedestalPixel
2800
2801 * macros/calibration.C
2802 - changed pedestal displays accordingly
2803
2804 * mjobs/MJPedestal.h
2805 - class TCanvas included (did not compile otherwise)
2806
2807 * mhbase/MH.cc
2808 - included call to FindGoodLimits(..) in CutEdges()
2809 - axe from pointer to reference
2810 - "CutEdges" renamed to "StripZeros"
2811
2812 * manalysis/MHPedestalPixel.cc, mcalib/MHCalibrationPixel.cc,
2813 mcalib/MHCalibrationBlindPixel.cc:
2814 - "CutEdges" renamed to "StripZeros"
2815
2816 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
2817 - replaced by the improved version: MHGausEvents.[h,cc]
2818
2819
2820
2821 2004/02/14: Thomas Bretz
2822
2823 * manalysis/MCerPhotEvt.[h,cc]:
2824 - added 'Iterator' facility, this will replace some for-loops
2825 in the near future
2826
2827 * mbase/MTime.[h,cc]:
2828 - added a more powerfull interface to get and interprete the
2829 MTime contents as string
2830 - added a new constructor
2831
2832 * mreport/MReportTrigger.h:
2833 - fixed GetPixContent
2834
2835 * mtools/MCubicCoeff.cc, mtools/MCubicSpline.[h,cc]:
2836 - many small changes to simple details (like order of includes)
2837 - some speed improvements
2838 - many small simplifications
2839 - changed parts of the code to be more C++ like (eg Iterators
2840 instead of for-loops)
2841 - disentangles some if-cases
2842 - replaced some math.h function by TMath::
2843 - removed data-member fN (obsolete with iterators)
2844
2845
2846
2847 2004/02/13: Wolfgang Wittek
2848
2849 * mcalib/MCalibrateData.[h,cc]
2850 - new class;
2851 like MCalibrate, but in ReInit it fills the MPedPhot container
2852 using informations from MPedestal, MExtracteSignalCam and
2853 MCalibrationCam
2854
2855 * mcalib/Makefile, mcalib/CalibLinkDef.h
2856 - added MCalibrateData
2857
2858 * manalysis/MPedestalWorkaround.[h,cc]
2859 - create MMcEvt container and fill with theta = 10.0
2860 - set pedestalRMS = 0. if it is > 10.0
2861
2862 * manalysis/MSupercuts.[h,cc]
2863 - change default values of parameters
2864
2865 * manalysis/MSupercutsCalc.[h,cc]
2866 - change dNOMLOGSIZE from 4.1 to 5.0
2867
2868 * mhist/MHBlindPixels.[h,cc]
2869 - change MPedestalCam to MPedPhotCam
2870
2871 * mhist/MHSigmaTheta.[h,cc]
2872 - automatic binning for pixel number doesn't work
2873 use default binning
2874
2875
2876
2877 2004/02/13: Markus Gaug
2878
2879 * mcalib/MCalibrationPix.[h,cc]
2880 - added variables gkAverageQE, gkAverageQEErr, and fAverageQE,
2881 fAverageQEErr
2882 - gkAverageQE initializes to 0.2 (according to David)
2883 - gkAverageQEErr initializes to 0.02 (dito)
2884 - added new member function: SetAverageQE
2885 - call to GetMeanConversionFFactorMethod returns:
2886 fMeanConversionFFactorMethod/fAverageQE.
2887 - call to GetErrorConversionFFactorMethod returns:
2888 errors of fMeanConversionFFactorMethod and fAverageQEErr added
2889 quadratically
2890
2891 * mcalib/Makefile
2892 - split into two parts one comment line
2893
2894
2895 2004/02/13: Thomas Bretz
2896
2897 * mbadpixels/MBadPixelsTreat.[h.cc]:
2898 - added for new bad pixel treatment
2899
2900 * mbadpixels/Makefile, mbadpixels/BadPixelsLinkDef.h:
2901 - added MBadPixelsTreat
2902
2903 * merpp.cc:
2904 - changed the name of the "DC" tree to "Currents" to make
2905 MReportRead work correctly with this tree
2906
2907 * mbase/MTime.[h,cc]:
2908 - Changed UpDMagicTime to support nanosec instead of millisec
2909 - exchanged Reset() by Clear() not to clear the yy/mm/dd
2910 information away in an eventloop
2911
2912 * mraw/MRawEvtHeader.[h,cc]:
2913 - implemented decoding of the time-stamp for raw-data files
2914 with version>2. Thanks to Marcos.
2915
2916 * mraw/MRawRead.[h,c]:
2917 - pipe file version number to MRawEvtHeader::ReadEvt
2918 - create fake time for file-version<3
2919
2920 * macros/readMagic.C:
2921 - changed to use MInteractiveTask
2922
2923 * mbase/MPrint.cc:
2924 - fixed debugging level of some output
2925
2926 * mhist/MHCamera.[h,cc]:
2927 - fixed handling in AddNotify (necessayr due to change of
2928 inheritance from MCamEvent)
2929 - replaced cout by gLog
2930 - added fNotify to list of cleanups
2931
2932 * mhist/MHEvent.cc, mjobs/MJCalibration.cc,
2933 mjobs/MJPedestal.cc:
2934 - fixed usage of AddNotify
2935
2936 * mfileio/MReadReports.cc:
2937 - use a different way to determin whether the tree is a valid tree,
2938 skip invalid trees
2939
2940 * mfileio/MReadTree.cc:
2941 - added another sanity check at the beginning of PreProcess
2942
2943 * mhbase/MFillH.[h,cc]:
2944 - added bit kCanSkip which skips MFillH in case the necessary container
2945 wasn't found.
2946 - cd into the corresponding canvas before filling the MH
2947
2948
2949
2950 2004/02/12: Markus Gaug
2951
2952 * mbase/MArray.[h,cc]:
2953 - changed name of StripZeros
2954
2955 * mcalib/MHGausEvent.cc:
2956 - corrected call to StripZeros
2957
2958 * mcalib/MCalibrationPix.[h,cc]
2959 - implemented dummy for combined method
2960
2961 * mcalib/MCalibrate.[h,cc]
2962 - implemented a dummy for calibration factor 1. (requested by
2963 Javier Rico)
2964 - implemented combined method
2965 - check for valid methods moved to ReInit
2966
2967 * mcalib/MCalibrationCalc.cc
2968 - removed initialization of non-used nsamples
2969
2970 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.[h,cc],
2971 mcalib/MCalibrationCalc.[h,cc]
2972 macros/calibration.C
2973 - implemented new histograms:
2974 HSinglePheFADCSlices and HPedestalFADCSlices
2975 They are filled with the FADC slice values of either a s.phe.
2976 event or a pedestal event. The decision is taken with the
2977 variable: MCalibrationCalc::fBlindPixelSinglePheCut, to be set
2978 with a setter
2979
2980 * mtools/MFFT.[h,cc]
2981 - PowerSpectrumDensity of TArrayI implemented
2982
2983
2984
2985 2004/02/12: Thomas Bretz
2986
2987 * mbase/MArray.[h,cc]:
2988 - changed argument of CutEdges from pointer to reference
2989
2990 * mgeom/MGeomPix.h:
2991 - fixed calculation of area of pixel. It was too big for a
2992 factor of 2
2993
2994 * mjobs/MJCalibration.cc:
2995 - slight change of name of a MHCamera
2996
2997 * manalysis/MExtractSignal.cc:
2998 - slight change to the creation of the satpixels list
2999
3000 * mcalib/MHCalibrationBlindPixel.cc, mcalib/MHCalibrationPixel.cc,
3001 mcalib/MHGausEvent.cc:
3002 - corrected call to ProjectArray
3003 - corrected call to CutEdges
3004
3005 * mfilter/MFCosmics.[h,cc]:
3006 - small fixes to logging output
3007 - small simplification to return statement
3008 - declared CosmicsRejection const
3009
3010 * mhbase/MH.[h,cc]:
3011 - changed argument of ProjectArray from pointer to reference
3012 - added missing calcualtion of minimum
3013 - removed obsolete SetEntries
3014 - changed SetDirectory from NULL to gROOT
3015
3016
3017
3018 2004/02/12: Javier López
3019
3020 * macros/pointspreadfunction.C
3021 - added new macro that fits with a 2D gaussian the DC spot for an
3022 star. It gives you the RMS of the PSF and the center of the star,
3023 very useful for misspointing studies.
3024
3025
3026
3027 2004/02/11: Hendrik Bartko
3028
3029 * manalysis/MExtractSignal2.cc:
3030 - introduced a validity check for the set-function of the window
3031 size (even number of slices, WindowSize < NumberSlices)
3032
3033 * manalysis/MArrivalTimeCalc2.[h,cc], manalysis/Makefile,
3034 manalysis/AnalysisLinkDef.h:
3035 - new: introduced the calculation of the arrival time as the signal
3036 weighted mean of the time slices in the maximum window
3037
3038
3039
3040 2004/02/11: Markus Gaug
3041
3042 * mcalib/MCalibrationCalc.cc:
3043 - the blind pixel signal extractor introduced one week ago, counted
3044 one FADC slice too little, thus the normalization w.r.t. pedestals
3045 was wrong. Now corrected.
3046
3047 * manalysis/MExtractSignal.cc, manalysis/MExtractSignal2.cc:
3048 - when "WARNING - Lo Gain saturated" occurs, display also the
3049 corr. pixel numbers.
3050
3051 * mbase/MArray.[h,cc]:
3052 - introduced function to cut array edges with zeros.
3053 (Thomas, should we keep it there or move it to another class? )
3054
3055 * mcalib/MCalibrationCalc.[h,cc]:
3056 - new function SetBlindPixelRange to set start and end of FADC slices
3057 used for the blind pixel signal extraction.
3058 - remove fEvents which are not necessary any more after the shift
3059 to MFCosmics.
3060
3061 * mcalib/MHCalibration(Blind)Pixel.[h,cc]:
3062 - show the fourier spectrum now with axes in frequency [Hz] instead
3063 of inverted events.
3064
3065 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
3066 - new base class for all kind of events with variables having a
3067 Gaussian distribution. Will serve as base class for the
3068 existing and new calibration histogram classes.
3069
3070
3071
3072 2004/02/11: Abelardo Moralejo
3073
3074 * mmain/MEventDisplay.cc
3075 - Switched order of MMcPedestalCopy and MCerPhotCalc in tasklist:
3076 MMcPedestalCopy must be executed earlier!
3077
3078
3079
3080 2004/02/10: Raquel de los Reyes
3081
3082 * mhist/MHPixVsTime.[h,cc]:
3083 - Added a default draw function and replaced the TGraph object
3084 by a pointer to a TGraph object.
3085
3086 * mreport/MReportTrigger.h:
3087 - Now it dereives from a MCamEvent class and implemented the
3088 GetPixContent() and DrawPixelContent() functions.
3089
3090 * maccros/CCDataCheck.C:
3091 - An update of the previous macro. New plots: subsystems status and
3092 macrocells trigger.
3093
3094
3095
3096 2004/02/10: Markus Gaug
3097
3098 * mcalib/MCalibrationCam.cc:
3099 - fixed documentation
3100
3101 * mhbase/MH.[h,cc]:
3102 - new function ProjectArray
3103
3104 * mcalib/MHCalibrationPixel.[h,cc],
3105 mcalib/MHCalibrationBlindPixel.[h,cc]:
3106 - use ProjectArray from MH to plot the projection of the fourier
3107 spectrum
3108
3109 * mfilter/MFCosmics.[h,cc], mfilter/Makefile,
3110 mfilter/FilterLinkDef.h:
3111 - new filter removing cosmics, the same as in MCalibrationCalc
3112 where it was removed now.
3113 Call: MFCosmics cosmics;
3114 MContinue cont(&cosmics);
3115 tlist.AddToList(&cont);
3116
3117 * mcalib/MCalibrationCalc.[h,cc]:
3118 - removed cosmics rejection from there
3119
3120 * macros/calibration.C, mjobs/MJCalibration.cc:
3121 - changed cosmics rejection to the filter algorithm
3122
3123
3124
3125 2004/02/09: Markus Gaug
3126
3127 * mcalib/MCalibrationBlindPix.[h,cc]:
3128 - added histogram to display the average in FADC slices of all
3129 single and double phe events
3130
3131 * mcalib/MCalibrationCalc.cc:
3132 - fill histograms of single-phe events with higain and logain
3133 sampls
3134
3135 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationCalc.cc,
3136 mcalib/MCalibrationConfig.h:
3137 - take all pixel areas out of MGeomPix::GetA(), remove all previous
3138 areas
3139 - calculate photon fluxes from blind pixel and PIN diode, use
3140 area only to fill the conversion factors in MCalibrationPix
3141
3142
3143 * mcalib/MJCalibration.cc:
3144 - display of number of photons for Blindpixel and PIN Diode Method
3145 changed to display of photon flux which is the actually
3146 calculated quantity
3147
3148
3149
3150 2004/02/09: Thomas Bretz
3151
3152 * mbadpixels/*:
3153 - added
3154
3155 * Makefile:
3156 - added MBadPixels
3157
3158 * manalysis/MGeomApply.cc:
3159 - fixed class description
3160
3161 * mjobs/MJCalibration.[h,cc], mjobs/MJExtractSignal.[h,cc]:
3162 - added bad pixel treatment
3163
3164 * mjobs/MJPedestal.[h,cc]:
3165 - reorganized order of functions
3166 - removed a nonsense scrren output (some BLABABLA or so)
3167
3168 * mjobs/Makefile:
3169 - added include for mbadpixels
3170
3171 * mmain/MBrowser.cc:
3172 - do not call construtor of TGTReeLBEntry if pic0=0
3173
3174
3175
3176 2004/02/09: Raquel de los Reyes
3177
3178 * mcamera/MCameraLids.h, mreport/MReportCamera.h
3179 - Added the "Get" functions to access the private data
3180 members of the class.
3181
3182
3183
3184 2004/02/09: Markus Gaug
3185
3186 * MMcCalibrationUpdate.cc, MCalibrate.cc, MCalibrationPix.cc,
3187 MCalibrationPix.h:
3188 - replace MCalibrationPix->IsChargeFitValid() by IsChargeValid()
3189 because we can calibrate with the histogram mean and RMS even
3190 if the fit is not OK. Thus, there is a question: IsFitted() and
3191 IsChargeValid(), i.e. does the charge make any sense?
3192
3193 * MCalibrationCam.cc, MCalibrationConfig.h, MCalibrationCalc.cc:
3194 - found serious bug in calculation of conversion factors for the
3195 outer pixels:
3196 GetMeanConversionBlindPixelMethod and
3197 GetMeanConversionPINDiodeMethod
3198 did not correct for the area of the outer pixel, this did only
3199 MCalibrationCam::GetPixelContent which is not used by MCalibrate
3200
3201
3202
3203 2004/02/06: Markus Gaug
3204
3205 * mgeom/MGeomCam.h
3206 - replaced in Comment of fPixRatio:
3207 "ratio between size of pixel idx and pixel 0" by
3208 "ratio between size of pixel 0 and pixel idx"
3209
3210 * manalysis/MPedestalCam.cc
3211 - catch calls to MHPedestalPixel in case that they are not filled
3212 This led previous calls to segmentation violations
3213 - remove include of MHExtractedSignalPix
3214
3215 * manalysis/MHExtractedSignalPix.[h,cc]
3216 - is everything in MHPedestalPixel, so removed it again
3217
3218 * mjobs/MJPedestal.cc
3219 - put the projections into Display()
3220 - correct the input of Display (0: pedestal, 1: pedestalerror,
3221 2: pedRMS, 3: pedRMSerror)
3222
3223 * manalysis/MHPedestalPixel.cc
3224 - increased number of bins in for charges plot
3225
3226 * mtools/MFFT.[h,cc]
3227 - possibility to have PSD directly from TArray
3228
3229 * mjobs/MJCalibration.[h,cc]
3230 - fixed displays
3231 - replaced MExtractSignal by MExtractSignal2
3232
3233 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc],
3234 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationBlindPix.[h,cc],
3235 mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationPINDiode.[h,cc]:
3236 - remove histograms MHChargevsN..., now keep TArrays directly
3237 - check for oscillations for all pixels (and you will not trust
3238 your eyes when you look at the results :-((((
3239
3240 * mcalib/MCalibrationCalc.[h,cc]
3241 - remove ArrivalTime -> go to separate class
3242 - remove BlindPixel and PIN Diode overflow, now handled directly
3243 inside the corr. classes.
3244 - remove SkipTimeFits -> go the arrival time class
3245
3246 * mcalib/MCalibrationCam.h
3247 - new getters for number of photons
3248 - removed timeslicewidth -> go the corr. time containers
3249
3250 * mcalib/MCalibrationCam.cc
3251 - removed times of GetPixelContent
3252 - added OscillationChecks in GetPixelContent
3253
3254 * manalysis/MMcCalibrationUpdate.cc
3255 - remove calpix.SkipTimeFits which is now obsolet
3256
3257 * macros/calibration.C
3258 - all previous changes now in this macro.
3259 - (NB: Thomas, du brauchst in MJCalibration nicht mehr aendern,
3260 das ging diesmal in einem Aufwasch)
3261
3262
3263
3264 2004/02/06: Thomas Bretz
3265
3266 * mhist/MHPixVsTime.[h,cc]:
3267 - changed such that you can set the name of the time container now
3268
3269 * mraw/MRawRunHeader.[h,cc]:
3270 - added GetMaxPixId()
3271
3272 * mraw/MRawEvtData.cc:
3273 - fixed wrong size calculation for fABflags
3274
3275
3276
3277 2004/02/06: Oscar Blanch
3278
3279 * mmc/MFadcDefine.h && mmc/MMcFadcHeader.cxx
3280 - We cahnged the name (and values) of the global variable
3281 MFADC_RESPONSE_AMPLITUDE to MFADC_RESPONSE_INTEGRAL
3282
3283
3284
3285 2004/02/05: Markus Gaug
3286
3287 * mcalib/MHCalibrationPixel.[h,cc]
3288 - put an NDF limit for the fit
3289 - removed all TStrings and replace them by Form(..)
3290 - Check for nan's of all returned fit values
3291
3292 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc:
3293 - reshuffled HiLoGainConversion, calculation of F-Factor method,
3294 - calculation of total F-Factor of the readout.
3295
3296 * mcalib/MCalibrationCam.cc
3297 - include relative times to display with GetPixelContent
3298
3299 * mcalib/MCalibrationCalc.[h,cc]
3300 - flag to skip Hi-Lo Calibration
3301 - Hi-LO Graph not filled any more after overflow of ChargevsN
3302 - fill the blind pixel differently from the rest of pixels
3303
3304 * mcalib/MCalibrate.cc:
3305 - call to const MCalibrationPix &pix replaced by MCalibrationPix &pix
3306
3307 * manalysis/MArrivalTimeCalc.cc
3308 - default step width 100 ps.
3309 - look for half maximum (at rising edge)
3310
3311 * manalysis/MExtractSignal.[h,cc]
3312 - removed uncommented code (arrival time)
3313 - set start byte back by one like it was before TB's changes
3314 (does not affect the calculation of number of FADC slices)
3315
3316 * manalysis/MExtractSignal2.[h,cc]
3317 - removed uncommented code (arrival time)
3318
3319 * manalysis/MHPedestalPixel.[h,cc]
3320 - is now filled with total pedestals (not per slice), but results are
3321 renormalized to values per slice (this is not to screw up with the
3322 pedestal RMS and the derived uncertainties)
3323 - new function Renorm(nslices)
3324
3325 * manalysis/MPedestalCam.[h,cc]
3326 - introduced function Clone() (like proposed by TB)
3327 - call to MHPedestalPixel operator() not const any more
3328 - take out lots of uncommented code
3329 - found bug in initialization of hists. SetupFill is called in
3330 PreProcess, therefore, TObjArray is not yet enlarged there.
3331 Now, InitUseHists is called in Fill
3332 - MHPedestalPixel is now filled with total pedestals (not per slice),
3333 but results are
3334 renormalized to values per slice (this is not to screw up with the
3335 pedestal RMS and the derived uncertainties)
3336
3337 * manalysis/MPedCalcPedRun.cc
3338 - added author
3339 - split calculation of RMS into two steps to make it more clear to
3340 the user
3341
3342 * macros/calibration.C
3343 - found bug introduced two days ago, namely calculating pedestlas with
3344 MExtractSignal2 which is now fixed
3345 - Skip HiLoConversionCalibration
3346
3347
3348
3349 2004/02/05: Abelardo Moralejo
3350
3351 * macros/starmc2.C
3352 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add
3353 for both MMcEvt and MMcRunHeader since these containers are
3354 not present in real data. Name of macro is no longer adequate if
3355 we will use it for calibrated real data (to be changed if so).
3356
3357
3358
3359 2004/02/05: Sebastian Raducci
3360
3361 * mtools/MCubicSpline.[h,cc]
3362 - added
3363 - this class will take the place of the TSpline class to
3364 calculate arrival times
3365
3366 * mtools/MCubicCoeff.[h,cc]
3367 - added
3368 - this class is used by MCubicSpline to store coefficients
3369
3370 * macros/spline.C
3371 - added
3372 - test macro. Shows how to use the MCubicSpline class
3373 - it could be used to test the methods of the Spline class
3374
3375
3376
3377 2004/02/05: Thomas Bretz
3378
3379 * mmain/MBrowser.cc:
3380 - fixed a double deletion of a TGLayoutHints
3381
3382
3383
3384 2004/02/04: Markus Gaug
3385
3386 * mmain/MBrowser.cc:
3387 - corrected TGTReeLBEntry for TGTreeLBEntry
3388
3389
3390
3391 2004/02/04: Thomas Bretz
3392
3393 * manalysis/MExtractSignal2.cc:
3394 - don't allow odd numbers for the window size
3395
3396 * mfilter/MFilterList.cc:
3397 - corrected a wrong logging message
3398
3399 * mmain/MBrowser.cc:
3400 - added '/data/MAGIC' as shortcut in the combo box
3401
3402 * mraw/MRawEvtPixelIter.cc:
3403 - optimized calculation of MaxIdx
3404
3405
3406
3407 2004/02/04: Abelardo Moralejo
3408
3409 * macros/starmc2.C
3410 - removed unnecessary variables BinsHigh, BinsLow
3411
3412
3413
3414 2004/02/04: Markus Gaug
3415
3416 * manalysis/MPedestalCam.[h,cc], manalysis/MPedestalPix.[h,cc],
3417 manalysis/MPedCalcPedRun.[h,cc], manalysis/MHPedestalPixel.[h,cc],
3418 macros/calibration.C:
3419 - histograms are now filled with MFillH as proposed and coded by
3420 Thomas Bretz. Some modifications had to be done, however.
3421 - Class to hold MHPedestalPixel is still MPedestalCam
3422 - MPedCalcPedRun does nothing any more (except from what is was
3423 doing before)
3424
3425 * manalysis/MExtractSignal.cc
3426 - remove uncommented code
3427
3428 * mcalib/MCalibrationCalc.[h,cc]
3429 - modified way to handle histogram overflow: Now flags are set and
3430 ChargevsN histogram is not tried to be filled subsequently
3431
3432
3433
3434 2004/02/03: Markus Gaug
3435
3436 * manalysis/MHExtractedSignalPix.[h,cc]
3437 - added Thomas B. modified version of MHPedestalPixel. Later will
3438 remove MHPedestalPixel
3439
3440 * manalysis/MCalibrationPix.[h,cc], manalysis/MHCalibrationPixel.[h,cc],
3441 manalysis/MCalibrationCam.cc, macros/calibration.C:
3442 - now split completely absolute and relative times. Absolute
3443 times are not fitted, but their histogram mean and rms are
3444 returned.
3445
3446
3447
3448 2004/02/03: Thomas Bretz
3449
3450 * mfileio/MReadTree.cc:
3451 - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
3452
3453 * manalysis/MExtractSignal.[h,cc]:
3454 - moved code to extract the signal from Process to
3455 new member function FindSignal, I left the arrival time
3456 extraction as commented-out code in the code just as a
3457 demonstration to do this very fast.
3458
3459
3460
3461 2004/02/02: Markus Gaug
3462
3463 * manalysis/MPedCalcPedRun.cc
3464 - corrected formulae in Class description
3465
3466 * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
3467 manalysis/MMcCalibrationUpdate.cc:
3468 - calculate relative times and absolute times. Fit only
3469 the relative ones.
3470
3471
3472
3473 2004/02/02: Abelardo Moralejo
3474
3475 * manalysis/MMcCalibrationUpdate.cc, MMcPedestalCopy.cc
3476 - removed file type check (MC or data) from PreProcess since now
3477 run headers are not yet known at that point.
3478
3479 * mcalib/MMcCalibrationCalc.cc
3480 - same as above.
3481
3482 * NEWS
3483 - updated.
3484
3485
3486
3487 2004/02/02: Thomas Bretz
3488
3489 * manalysis/MExtractSignal2.[h,cc]:
3490 - added new task which takes a given number of slices with the
3491 highest integral content as signal.
3492
3493 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
3494 - added MExtractSignal2
3495
3496
3497
3498 2004/01/30: Abelardo Moralejo
3499
3500 * macros/starmc.C
3501 - changed default FADC integration range (more adequate for coming
3502 camera version).
3503
3504 * macros/mccalibrate.C, starmc2.C
3505 - added. First macro transforms input files from camera simulation
3506 into files with pixel data already calibrated in photons. The
3507 second reads in an already calibrated data file and produces an
3508 output file with Hillas parameters. Both together do the same as
3509 starmc.C, but it is convenient to have files containing
3510 calibrated pixel information.
3511
3512
3513
3514 2004/01/30: Thomas Bretz
3515
3516 * mbase/MDirIter.h:
3517 - added GetNumEntries
3518
3519 * mhist/MHEvent.cc:
3520 - added a dynamic_cast from MParContainer to MCamEvent to get the
3521 correct pointer to the correct base-class.
3522
3523 * mbase/MStatusDisplay.cc:
3524 - In EventInfo check whether gPad==0
3525
3526 * mfileio/MReadMarsFile.cc:
3527 - removed reading RunHeaders from PreProcess, this resulted
3528 in strange behaviour of writing RunHeaders
3529 - fixed consistency check for RunType accordingly
3530
3531 * mfilter/MFilterList.cc:
3532 - do not skip adding filter if only a filter with the same name
3533 exists
3534
3535 * mraw/MRawFileRead.cc:
3536 - added an output message if run header is not accessible
3537
3538 * mraw/MRawRunHeader.[h,cc]:
3539 - initialize fRunType to new enum kRTNone
3540
3541 * mfilter/MFGeomag.cc:
3542 - set fResult to kFALSE at the beginning of Process
3543 - according to this removed setting fResult=kFALSE before return
3544 - replaced some float by Float_t
3545 - added some const-qualifiers
3546 - replaced (rig<0.5/pr*R*(r2-r1)+r1) by (rig-r1)*pr<rnd
3547 with rnd = R * (r2-r1)/2 to make sure that we cannot
3548 devide by 0
3549
3550 * manalysis/MPedCalcPedRun.cc:
3551 - added some comments
3552
3553 * Makefile:
3554 - added mjobs
3555
3556 * mjobs/*:
3557 - added
3558
3559 * mbase/Makefile, mbase/BaseLinkDef.h:
3560 - added MRunIter
3561
3562 * mbase/MRunIter.[h,cc]:
3563 - added
3564
3565
3566
3567 2004/01/30: Markus Gaug
3568
3569 * manalysis/MPedestalCam.h
3570 - added function IsUsedHists()
3571
3572 * manalysis/MPedestalCam.cc
3573 - modified GetPixelContent
3574
3575 * manalysis/MPedestalCam.cc, manalysis/MPedCalcPedRun.cc:
3576 - include storage of number of used FADC slices to compare later
3577 the pedestal per slice ( and sigma per slice)
3578 - return relative differences in GetPixelContent
3579
3580 * mcalib/MCalibrationCalc.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc]:
3581 - fBlindPixelId and fPINDiodeId now like in PedestalCam
3582 - fill Blind Pixel with information about its fitted pedestal if
3583 available
3584 - initialize charges histogram with a bigger range
3585 - use pedestal information to constrain the pedestal fit ranges
3586
3587 * manalysis/MHPedestalPixel.cc
3588 - initialize charges histogram with a bigger range
3589
3590 * macros/calibration.C
3591 - SetRange of MExtractSignal to 1,14 (see emails of yesterday)
3592 - apply new GetPixelContents of MPedestalCam (more calculations
3593 and displays of errors, correction for different FADC slice
3594 number)
3595
3596 * manalysis/MExtractSignal.cc
3597 - not access to MArrivalTime any more. The same information is
3598 stored in MRawEvt->GetPixelContent(...)
3599
3600 * manalysis/MCalibrationCalc.cc
3601 - retrieve default arrival time from MRawEvt
3602
3603 * manalysis/MCalibrationBlindPix.cc, manalysis/MCalibrationPix.cc
3604 - check for NaN's in fit results
3605
3606
3607
3608 2004/01/29: Abelardo Moralejo
3609
3610 * mfileio/MWriteFile.h
3611 - added missing declaration of ReInit
3612
3613 * manalysis/MMcCalibrationUpdate.cc
3614 - added call to MCalibrationCam::SetBlindPixelMethodValid(kTRUE)
3615 to adapt to recent changes in MCalibrate.
3616
3617
3618
3619 2004/01/29: Thomas Bretz
3620
3621 * manalysis/MArrivalTime.h, manalysis/MCameraData.h,
3622 manalysis/MCerPhotEvt.h, manalysis/MExtractSignalCam.h,
3623 manalysis/MPedPhotCam.h, manalysis/MPedestalCam.h,
3624 mcalib/MCalibrationCam.h, mcamera/MCameraDC.h,
3625 mraw/MRawEvtData.h, mreflector/MRflEvtData.h:
3626 - split derivement into MParContainer and MCamEvent
3627
3628 * manalysis/MExtractSignalCam.[h,cc]:
3629 - removed obsolete MExtractSignal::ReInit
3630 - added -> to fArray
3631
3632 * mbase/MParList.h:
3633 - added a new bit kIsProcessing
3634
3635 * mbase/MTaskList.cc:
3636 - fixed the handling of kDoNotReset and the bahaviour of
3637 SetReadyToSave, such that it is possible to write all
3638 headers
3639
3640 * mfileio/MWriteFile.cc:
3641 - added ReInit which also calls CheckAndWrite
3642
3643 * mgui/MCamEvent.h:
3644 - does not derive from MParContainer anymore
3645
3646
3647
3648 2004/01/29: Markus Gaug
3649
3650 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
3651 mcalib/MCalibrationConfig.h
3652 - put gkCalibrationBlindPixelId and gkCalibrationPINDiodeId
3653 directly into the corresponding classes.
3654
3655
3656
3657 2004/01/29: Nicola Galante
3658
3659 * mhistmc/MHMcTriggerLvl2.[h,cc]:
3660 - In method MHMcTriggerLvl2::GetHistByName(const TString name)
3661 added string checking to return also
3662 fHistCellPseudoSize, fHistCellPseudoSizeNorm
3663 and fHistCellPseudoSizeEnergy.
3664 - Added inline functions GetHistCellPseudoSize() and
3665 GetHistCellPseudoSizeNorm().
3666
3667
3668
3669 2004/01/28: Javier Rico
3670
3671 * mcalib/MCalibrate.[h.cc]
3672 - include possibility to select the calibration method to be used
3673
3674
3675
3676 2004/01/28: Markus Gaug
3677
3678 * mcalib/MCalibrate.[h.cc]
3679 - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
3680
3681 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
3682 - included flags to indicate if Blind Pixel Method or PIn Diode
3683 method was OK. Up to now, program stopped, if one of the two
3684 methods was chosen but not able to being executed.
3685
3686 * manalysis/MArrivalTimeCalc.cc, manalysis/MExtractSignals.cc,
3687 manalysis/MGeomApply.cc:
3688 - put all missing InitSize(npixels) into MGeomApply
3689
3690 * manalysis/MPedCalcPedRun.[h,cc], manalysis/MPedestalCam.[h,cc],
3691 manalysis/MPedestalPix.[h,cc], manalysis/MHPedestalPixel.[h,cc],
3692 manalysis/Makefile, manalysis/AnalysisLinkDef.h:
3693 - include possibility to fit the pedestals with Gaussian.
3694 - old methods are not affected.
3695 - add new method with MPedCalcPedRun::SetUseHists()
3696
3697
3698
3699 2004/01/28: Abelardo Moralejo
3700
3701 * mcalib/MMcCalibration.cc
3702 - fixed wrong variable type in call to TH1F constructor (number of
3703 bins is now integer), which resulted in a compilation warning.
3704
3705
3706
3707 2004/01/28: Thomas Bretz
3708
3709 * manalysis/MPedestalCam.cc:
3710 - removed unwanted CheckBound from operators. CheckBounds is ONLY
3711 ment for really old MC files and will be removed in the future
3712 anyhow.
3713
3714 * mcalib/MHCalibrationPixel.h:
3715 - removed obsolete include of MFFT
3716
3717 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
3718 manalysis/MPedestalCam.[h,cc]:
3719 - removed use of obsolete MPedestalCam::CheckBounds. This was
3720 a workaround for a 'bug' in very old camera files, which is not
3721 necessary anymore.
3722
3723 * manalysis/MCerPhotAnal2.[h,cc]:
3724 - replaced MPedestalCam by MPedPhotCam
3725
3726 * manalysis/MExtractSignal.cc:
3727 - some small simplification to the signal extraction
3728 - removed some obsolete variables
3729 - replaced for by while
3730 - removed obsolete casts
3731
3732 * mmain/MEventDisplay.cc:
3733 - gave names to the filters
3734 - removed adding MHCamera to fList because it was deleted twice
3735
3736 * mhist/MHCamera.cc:
3737 - fixed usage of fPainter in Paint() - title was not updated
3738 correctly
3739
3740
3741
3742 2004/01/28: Sebastian Raducci
3743
3744 * manalysis/MArrivalTime.[h,cc]:
3745 - removed all the code relative to the cluster evaluation
3746
3747
3748
3749 2004/01/27: Markus Gaug
3750
3751 * manalysis/MPedestalPix.cc:
3752 - initialize default values to 0 instead of -1.
3753
3754 * manalysis/MPedestalCam.[h,cc]:
3755 - include CheckBounds, also in operator[]
3756
3757 * mcalib/MCalibrationCam.[h,cc]:
3758 - apparently, there was a reference to InitSize(UInt_t i) instead
3759 of InitSize(Int_t i), where compiler complained, now changed
3760
3761 * mcalib/MHCalibration*, mcalib/MCalibration*:
3762 - fixed all Clear()'s, Reset()'s, direct intializers
3763
3764
3765
3766 2004/01/27: Thomas Bretz
3767
3768 * mdata/MDataChain.cc:
3769 - added '%' to supported operators
3770
3771
3772
3773 2004/01/26: Nicola Galante
3774
3775 * manalysis/MMcTriggerLvl2.[cc,h]:
3776
3777 - Defined some static constants to avoid ugly "magic numbers"
3778 in arrays: gsNCells, gsNTrigPixels,
3779 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
3780 - Added method
3781 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
3782 which computes compact pixels into a given L2T macrocell.
3783 - Added method
3784 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
3785 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
3786 macrocells
3787 - Added method
3788 MMcTriggerLvl2::GetCellPseudoSize() const
3789 which returns fCellPseudoSize
3790 - Added method
3791 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
3792 which controls whether a pixel belongs to a given L2T cell.
3793 - Added method
3794 MMcTriggerLvl2::GetMaxCell() const
3795 which returns fMaxCell, the cell with the maximum
3796 fCellPseudoSize.
3797
3798
3799
3800 2004/01/26: Markus Gaug, Michele Doro
3801
3802 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
3803 - moved calculation of arrival time from MArrivalTime to
3804 MArrivalTimeCalc. MArrivalTime does not do any Process-job
3805 anymore
3806 - TSpline5 now on stack.
3807 - function to set the stepsize
3808
3809 * mcalib/MHCalibrationBlindPixel.[h,cc]:
3810 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
3811 - implement combined Polya fit and Michele's back-scattered electron
3812 fit
3813
3814 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
3815 mcalib/MCalibrationPINDiode.cc:
3816 - combine FitChargeHiGain and FitChargeLoGain into one function
3817
3818 * macros/calibration.C
3819 - improve double gauss fit a bit
3820
3821
3822
3823 2004/01/26: Thomas Bretz
3824
3825 * mraw/MRawEvtPixelIter.[h,cc]:
3826 - removed member function GetNumPixels. For more details see mantis.
3827
3828 * manalysis/MArrivalTime.[h,cc]:
3829 - reorganized includes
3830 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
3831 definition
3832 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
3833 PROGRAM
3834
3835 * manalysis/MArrivalTimeCalc.[h,cc]:
3836 - reorganized includes
3837 - removed many obsolete code, exspecially copy&paste relicts!
3838 - fixed usage of InitSize
3839 - removed CleanArray. Reset() is called automatically before Process()
3840
3841 * manalysis/MExtractedSignalCam.[h,cc]:
3842 - added SetLogStream
3843 - removed obsolete include MGeomCam
3844 - replaced PrintOut by Print
3845 - added const-qualifiers to all Getters
3846 - fixed documentation
3847
3848 * manalysis/MExtractedSignalPix.[h,cc]:
3849 - replaced PrintOut by Print
3850 - fixed documentation
3851
3852 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
3853 - replaced memset by Reset()
3854
3855
3856
3857 2004/01/24: Abelardo Moralejo
3858
3859 * macros/starmcstereo.C
3860 - Added. Example of how to run the analysis chain for MC files
3861 containing simulation of stereo systems of 2 telescopes.
3862
3863 * mcalib/MCalibrate.cc
3864 - Added check that value of signal from MExtractedSignalPix is not
3865 the default (error) value. In such a case, the signal in
3866 MCerPhotEvt is now set to 0. Before, all pixels got very high
3867 values in MCerPhotEvt in case the MRawEvtData object for the
3868 event was missing in the file. This happened in MC files, in
3869 which in some circumstances an event is written without the
3870 pixel information (for instance, when running stereo simulations
3871 the pixel data is missing for non-triggered telescopes, but the
3872 event headers are present).
3873
3874
3875
3876 2004/01/23: Markus Gaug
3877
3878 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
3879 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
3880 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
3881 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
3882 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
3883 - use MArrivalTime for Storage (or calculation) of time
3884 in MExtractSignal
3885 - pass from TH1I histos to TH1F for times
3886
3887 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
3888 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
3889 mcalib/MCalibrationCalc.[h,cc]:
3890 - clean up setters
3891 - pass to bit-fields for all flags
3892
3893 * mcalib/MCalibrationCam.cc
3894 - exclude Blind Pixel from Camera display
3895 - do not fill &val when return kFALSE
3896
3897 * macros/calibration.C
3898 - include functions to exclude the blind pixel,
3899 calculation of times and quality checks
3900
3901
3902
3903 2004/01/23: Abelardo Moralejo
3904
3905 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
3906 - Added support (using AddSerialNumber) for stereo MC files.
3907
3908
3909
3910 2004/01/23: Thomas Bretz
3911
3912 * mbase/MAstro.cc:
3913 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
3914
3915 * mreport/MReport*.[h,cc]:
3916 - changed all classes to return Int_t instead of Bool_t in
3917 InterpreteBody
3918 - changed MReportFileRead such, that a wrong line results in
3919 skipping the line instead of abort reading.
3920
3921 * manalysis/MExtractSignal.cc:
3922 - do not print information for each pixel - it's too much.
3923
3924 * mbase/MStatusDisplay.cc:
3925 - when reading a status display do not display tabs with
3926 the same name than one which is already existing.
3927
3928 * mcalib/MCalibrate.cc:
3929 - directly store pointer to pixel when setting saturation flag
3930
3931 * mcamera/MCameraDC.cc:
3932 - fixed some comments
3933
3934 * mhist/MHCamEvent.cc:
3935 - fixed a crash when no geometry was available
3936
3937 * mhist/MHCamera.[h,cc]:
3938 - removed obsolete member function SetPix
3939
3940 * mbase/MStatusDisplay.[h,cc]:
3941 - added EventInfo member function
3942 - implemented preliminary redirection of GetObjectInfo to
3943 StatusLine2 -> An own status line for this is missing
3944
3945 * manalysis/MExtractSignal.[h,cc]:
3946 - implemented StreamPrimitive
3947 - changed deafults to be static const data members
3948
3949 * manalysis/MGeomApply.[h,cc]:
3950 - implemented StreamPrimitive
3951
3952
3953
3954 2004/01/23: Abelardo Moralejo
3955
3956 * manalysis/MMcCalibrationUpdate.[h,cc]
3957 - Added check to guarantee that the FADC simulation parameters of
3958 all read files (those used for calibration and those analyzed)
3959 are the same.
3960 - Added missing support for analysis of stereo files.
3961
3962 * mcalib/MMcCalibrationCalc.cc
3963 - Removed obsolete FIXME comment.
3964 - Added missing support for analysis of stereo files.
3965
3966
3967 2004/01/23: Raquel de los Reyes
3968
3969 * macros/CCDataCheck.C
3970 - Added the temperature distribution of the optical links
3971 and the plots of the LV power supplies.
3972 * mcamera/MCameraLV.h
3973 - Added the "Get" functions to access the private data
3974 members of the class.
3975
3976
3977 2004/01/22: Abelardo Moralejo
3978
3979 * manalysis/MMcCalibrationUpdate.[h,cc]
3980 - Now ratio of high to low gain is taken from MCalibrationCam if
3981 it existed previously in the parameter list, instead of being
3982 read again from the MMcFadcHeader. Removed Setter function for
3983 fADC2PhInner, no longer necessary. Fixed error regarding the
3984 pedestal conversion to photons (did not read conversion factor
3985 from preexisting MCalibrationCam object).
3986
3987 * mcalib/MMcCalibrationCalc.cc
3988 - Changed parameters of the histogram, and also the quantity being
3989 histogrammed. Check that input data come from a noiseless camera
3990 file before proceeding to do the calibration. Introduced lower
3991 size in cut for calibration. Now rhe calibration constant is not
3992 calculated from the mean of photons/ADC counts, but from the peak
3993 of the histogram.
3994
3995 * macros/starmc.C
3996 - Introduced new scheme. Now there are two loops over two different
3997 sets of files. First loop calculates the calibration constants,
3998 second one does the analysis. Introduced comments. Now the
3999 histogram used in the light calibration is written to the output
4000 file.
4001
4002
4003
4004 2004/01/22: Thomas Bretz
4005
4006 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
4007 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
4008 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
4009 mcalib/MCalibrationBlindPixel.[h,cc],
4010 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
4011 mcalib/MHCalibrationBlindPixel.[h,cc],
4012 mcalib/MHCalibrationPINDiode.[h,cc]:
4013 - cleaned up includes
4014
4015
4016
4017 2004/01/22: Raquel de los Reyes
4018
4019 * macros/CCDataCheck.C
4020 - macro to check the data from the central control (.rep files).
4021
4022
4023
4024 2004/01/22: Markus Gaug
4025
4026 * macros/calibration.C
4027 - made MStatusDisplay 3 bit smaller
4028
4029 * manalysis/MExtractSignal.cc
4030 - put fSignals->SetUsedFADCSlices into PreProcess
4031
4032 * manalysis/MPedCalcPedRun.cc
4033 - calculate PedRMS as RMS of the sums, later renormalized to units
4034 of RMS/slice (eliminate the wrong effect of odd and even slices)
4035
4036 * mcalib/MCalibrationCalc.cc
4037 - if bit SkipBlindPixelFit is set, now number of photons outside
4038 plexiglass is not intended to be calculated any more (previous
4039 bug)
4040 - exclude excluded pixels in eventloop
4041
4042 * mcalib/MHCalibrationBlindPixel.[h,cc]
4043 - move functions to pointer again (otherwise, Clone will give
4044 strange results)
4045
4046
4047
4048 2004/01/21: Abelardo Moralejo
4049
4050 * mcalib/MMcCalibrationCalc.[h,cc]
4051 - Added. First version of the task intended to calculate the
4052 conversion factors from ADC counts to photons in the MC. It has
4053 a different aim than the recently renamed class
4054 "MMcCalibrationUpdate" (which takes care that the correct
4055 pedestals and conversion factors are supplied to each event, but
4056 does not really calculate anything).
4057
4058 * mcalib/Makefile, CalibLinkDef.h
4059 - Added new class MMcCalibrationCalc
4060
4061 * manalysis/MMcCalibrationUpdate.[h,cc]
4062 - Now the container MCalibrationCam is not created or modified if
4063 it is found that one such container already exists in the
4064 Parameter list (from a previous calibration).
4065
4066
4067
4068 2004/01/21: Thomas Bretz
4069
4070 * mraw/MRawRead.cc:
4071 - restore the fake time for all runs (current time stamp in
4072 the data seems to be toally nonsense)
4073
4074 * mraw/MRawEvtHeader.cc:
4075 - removed decoding of real time (current time stamp in the data
4076 seems to be toally nonsense)
4077
4078
4079
4080 2004/01/21: Abelardo Moralejo
4081
4082 * mmc/MMcEvt.hxx
4083 - Uncommented 6 Getter functions (those regarding the number of
4084 photons surviving the different stages of simulation).
4085
4086 * manalysis/MMcCalibrationUpdate.[h,cc]
4087 - Added (see below).
4088
4089 * manalysis/MMcCalibrationCalc.[h,cc]
4090 - Removed: changed name of this class to MMcCalibrationUpdate,
4091 which is more representative of what it really does. Moved
4092 the filling of the MCalibrationCam container from Process to
4093 ReInit, since it does not change on an event by event basis.
4094 Simplified PreProcess (MCalibrationCam was searched for twice).
4095 Updated class description and comments.
4096
4097 * manalysis/Makefile, AnalysisLinkDef.h
4098 - Adapted to change above
4099
4100 * macros/starmc.C
4101 - Adapted to change above. Changed also task instance name from
4102 mccalibcalc to mccalibupdate.
4103
4104
4105
4106 2004/01/21: Raquel de los Reyes
4107
4108 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
4109 and mcamera/MCameraCalibration.h
4110 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
4111 the private data members of the class.
4112
4113
4114
4115 2004/01/20: Thomas Hengstebeck
4116
4117 * mranforest/MRanForestCalc.[h,cc]
4118 - Added member functions Grow (training of RF) and Fill (reading in
4119 trained forest from file) which simplify macros.
4120 One just needs to call them instead of using MRanForestGrow and
4121 MRanForestFill (and the related training and fill loops) in a
4122 macro.
4123
4124
4125
4126 2004/01/20: Abelardo moralejo
4127
4128 * manalysis/MMcCalibrationCalc.cc
4129 - removed call to MCalibrationPix::SetPedestal, which was not
4130 needed.
4131
4132
4133
4134 2004/01/20: Thomas Bretz
4135
4136 * Makefile:
4137 - replaced 'make' by '$(MAKE)'
4138
4139 * Makefile.rules:
4140 - added Makefile itself to dependencies
4141
4142 * mbase/MTask.cc:
4143 - added comment about ReInit
4144
4145 * mhbase/MH.cc:
4146 - do not clear pad in DrawClone if 'same' option given
4147
4148 * mhist/MHVsTime.cc:
4149 - evaluate 'same' option
4150
4151 * mfileio/MReadCurrents.[h,cc]:
4152 - obsolete, removed
4153
4154 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
4155 - added some comments
4156
4157
4158
4159 2004/01/20: Abelardo moralejo
4160
4161 * mcalib/MHCalibrationPINDiode.cc
4162 - Added call to SetDirecory(0) for histograms fHErrCharge,
4163 fHPCharge, fHPTime.
4164
4165 * manalysis/MCerPhotPix.h:
4166 - Changed position of declaration of fIsSaturated to be the last
4167 private variable. Otherwise, since in the constructor it is
4168 initialized in the last place, a warning is displayed upon
4169 compilation in some systems.
4170
4171
4172
4173 2004/01/20: Markus Gaug
4174 * mcalib/Makefile, manalysis/Makefile:
4175 - include directory ../mtools
4176
4177 * mtools/MFFT.[h,cc]
4178 - class inherits from TObject now
4179
4180
4181
4182 2004/01/19: Markus Gaug
4183
4184 * mcalib/MHCalibrationBlindPixel.[h,cc]
4185 - fixed a bug in fFitLegend due to which program crashed by calls
4186 to DrawClone
4187 - Modified way to change the fit function
4188
4189 * mcalib/MHCalibrationPixel.[h,cc]
4190 - reordered function calls
4191 - removed SetupFill
4192
4193 * mcalib/MHCalibrationPINDiode.h
4194 - reordered function calls
4195
4196 * mcalib/MCalibrationPix.[h,cc]
4197 - limits to define fFitValid now as variables in class
4198
4199 * mcalib/MCalibrationCam.[h,cc]
4200 - reordered function calls
4201 - incorporate option to exclude pixels
4202
4203 * mcalib/MCalibrationBlindPix.h
4204 - Modified way to change the fit function
4205
4206 * mcalib/MCalibrationCalc.[h,cc]
4207 - Modified way to change the fit function
4208 - incorporate option to exclude pixels from configuration file
4209
4210 * macros/calibration.C
4211 - Modified way to change the fit function
4212 - incorporate option to exclude pixels from configuration file
4213
4214
4215
4216 2004/01/19: Javier Rico
4217
4218 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
4219 - Added documentation of member functions
4220
4221
4222
4223 2004/01/19: Abelardo Moralejo
4224
4225 * manalysis/MCerPhotPix.[h,cc]
4226 - Added fIsSaturated to flag whether low gain of the pixel is
4227 saturated. Added corresponding getter and setter functions.
4228 Updated ClassDef to version 2.
4229
4230 * mcalib/MCalibrate.cc
4231 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
4232 one low gain FADC slice is saturated.
4233
4234 * mimage/MNewImagePar.[h,cc]
4235 - Added new member variable fNumSaturatedPixels to count how many
4236 pixels were saturated. Updated ClassDef to version 2.
4237
4238
4239
4240 2004/01/19: Thomas Bretz
4241
4242 * manalysis/MPedPhotCalc.[cc,h]:
4243 - fixed order of includes
4244 - removed obsolete forward declarations
4245 - removed obsolete data member fNumPixels (stored already twice in
4246 the two TArrayF)
4247 - fixed some small bugs in the documentation
4248
4249 * manalysis/MPedCalcPedRun.cc:
4250 - updated my eMail address
4251
4252
4253
4254 2004/01/19: Javier Rico
4255
4256 * macros/dohtml.C, NEWS
4257 - include some missing info
4258
4259
4260
4261 2004/01/19: Abelardo Moralejo
4262
4263 * manalysis/MExtractedSignalPix.h
4264 - added GetNumLoGainSaturated()
4265
4266
4267
4268 2004/01/19: Markus Gaug
4269
4270 * macros/dohtml.C
4271 - include calibration.C
4272
4273 * manalysis/MExtractSignal.cc
4274 - warning of logain saturation now only once per event (out of loop)
4275
4276 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
4277 - new Flag fExcluded to indicate if pixel has been excluded from
4278 further analysis
4279
4280
4281
4282 2004/01/16: Javier Rico & Pepe Flix
4283
4284 * manalysis/MPedPhotCalc.[cc,h]
4285 - added
4286 - new class for the evaluation of pedestals in units of photons
4287 using the extracted signal from pedestal runs and calibration
4288 constants defined in MCalibrate
4289
4290 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
4291 - added entries for MPedPhotCalc
4292
4293 * macros/pedphotcalc.C
4294 - added
4295 - example on how to use MPedPhotCalc task
4296
4297
4298
4299 2004/01/16: Markus Gaug
4300
4301 * mcalib/MCalibrationFits.h
4302 - removed and incorporated in MHCalibrationBlindPixel.h
4303
4304 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
4305 mcalib/MCalibrationBlindPix.h:
4306 - incorporate Fit functions
4307 - fixed a bug due to which DrawClone crashed when class was used
4308 in a compiled macro
4309
4310 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
4311 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
4312 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
4313 mcalib/MHCalibrationPixel.cc:
4314 - fixed the warns and errs in fLog's
4315
4316
4317
4318 2004/01/16: Abelardo Moralejo
4319
4320 * manalysis/MMcCalibrationCalc.cc
4321 - TMath::Max() is no longer used because it did not compile in some
4322 systems for unkown reasons. I replaced it by a safer (and may be
4323 slower) code.
4324 - Added calpix.SetFitValid();
4325
4326 * mhist/MHEvent.cc
4327 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
4328 be 1 in case of RMS:
4329 case kEvtPedestalRMS:
4330 fHist->SetCamContent(*(MCamEvent*)par, 1);
4331
4332
4333
4334 2004/01/15: Abelardo Moralejo
4335
4336 * macros/starmc.C
4337 - Added. Version of star showing new chain to get Hillas
4338 parameters (with Size calibrated in photons) from MC files.
4339
4340
4341
4342 2004/01/15: Javier Rico
4343
4344 * manalysis/MPedCalcPedRun.[h,cc]
4345 - optimize the running time
4346 - add (some) documentation
4347 - correct treatment for the case of several input files
4348
4349 * macros/pedvsevent.C
4350 - added
4351 - draw pedestal mean and rms vs event# for input pixel# and run
4352 file, and compares them to the global pedestal mean and rms
4353
4354
4355
4356 2004/01/15: Raquel de los Reyes
4357
4358 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
4359 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
4360 functions to compute the estimation of the error of the
4361 mean. It can be done calling to the function
4362 MCamEvent::SetBit(MHCamera::kVariance) in the macro
4363
4364
4365
4366 2004/01/15: Markus Gaug
4367
4368 * mhist/MHCamera.[h,cc]
4369 - incorporate Thomas's changes
4370 - replace void CreateProjection() by TH1D *Projection(const char*)
4371
4372 * macros/calibration.C
4373 - replace MHCamera->Draw("proj") by MHCamera->Projection()
4374 - produce better fits to the projection
4375
4376 * manalysis/MSimulatedAnnealing.[h,cc],
4377 mhist/MHSimulatedAnnealing.[h,cc]:
4378 - moved to directory mtools
4379 - MSimulatedAnnealing now inherits from TObject
4380
4381 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
4382 mhist/Makefile, mhist/HistLinkDef.h:
4383 - removed MSimulatedAnnealing
4384 - removed MHSimulatedAnnealing
4385
4386 * mtools/Makefile, mtools/AnalysisLinkDef.h:
4387 - added MSimulatedAnnealing
4388 - added MHSimulatedAnnealing
4389
4390
4391
4392 2004/01/15: Thomas Bretz
4393
4394 * manalysis/AnalysisLinkDef.h:
4395 - removed MCurrents
4396
4397 * mhist/MHCamera.[h,cc]:
4398 - added member function Projection
4399 - removed fYproj
4400
4401 * mreport/MReport*.*:
4402 - added more comments
4403
4404
4405
4406 2004/01/14: Markus Gaug
4407
4408 * mtools/MFFT.[h,cc]
4409 - new class to perform Fast Fourier Transforms
4410
4411 * mtools/Makefile
4412 * mtools/ToolsLinkDef.h
4413 - include MFFT
4414
4415 * manalysis/MExtractedSignalCam.h
4416 - removed variables fNumHiGainSamples and fNumLoGainSamples
4417 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
4418
4419 * manalysis/MExtractSignal.cc
4420 - updated call to SetUsedFADCSlices
4421
4422
4423
4424 2004/01/14: Abelardo Moralejo
4425
4426 * manalysis/MMcCalibrationCalc.cc:
4427 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
4428 This can happen (depending on camera simulation parameters), and
4429 rms = 0 later resulted in the pixel being eliminated in the
4430 image cleaning.
4431
4432
4433
4434 2004/01/14: Thomas Bretz
4435
4436 * Makefile:
4437 - replaced old style Makefile.depend by directory specific
4438 dependancy files
4439
4440 * Makefile.rules:
4441 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
4442 - added rule to make dependency files
4443 - added rule to remove dependancy files.
4444 - added rmdep as prerequisite to clean
4445 - include dependency file
4446
4447 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
4448 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
4449 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
4450 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
4451 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
4452 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
4453 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
4454 mtools/Makefile:
4455 - removed clean-rule, use the one in Makefile.rules instead
4456
4457 * mreport/Makefile, mreport/ReportLinkDef.h:
4458 - added MReportHelp
4459
4460 * mreport/MReportFileRead.cc:
4461 - moved code from MReportHelp to new file
4462 - removed usage of MReport class completely
4463
4464 * mfilter/MFGeomag.[h,cc]:
4465 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
4466 - changed the second loop from 0->1151 to 1152->2304
4467 - removed dummy arrays used for reading
4468 - output filename in case of 'file not found'
4469 - removed obsolete data members
4470 - removed obsolete Init function
4471 - removed forbidden underscore from member variable
4472 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
4473
4474 * mbase/MStatusDisplay.[h,cc]:
4475 - added new member function Open
4476 - added new menu entry kFileOpen
4477 - changed UpdatePSheader algorithm (the old one was much too slow)
4478
4479 * manalysis/MCurrents.[h,cc]:
4480 - removed (old outdated)
4481
4482 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
4483 - removed MCurrents
4484
4485
4486
4487 2004/01/14: Wolfgang Wittek
4488
4489 * macros/ONOFFAnalysis.C:
4490 - current version
4491
4492 * mhist/MHSigmaTheta.[h,cc]:
4493 - replace MPedestalCam by MPedPhotCam
4494
4495 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
4496 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
4497 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
4498 - replace MPedestalCam by MPedPhotCam
4499
4500 * manalysis/MPedPhotPix.[h,cc]
4501 - uncomment SetRms()
4502
4503
4504
4505 2004/01/13: Markus Gaug
4506
4507 * manalysis/MExtractSignal.h
4508 - seems that the reduced light intensity of the CT1 Pulser
4509 results in broader pulses -> Set Default time slices to [3,10]
4510
4511 * mhist/MHCamera.cc
4512 - make Stat Window in option 'proj' bigger
4513 - add comment line at beginning of Draw()
4514
4515 * mcalib/MHCalibrationBlindPixel.[h.cc]
4516 - add Function DrawClone()
4517 - fix bug in calculation of integral (GetIntegral("width"))
4518 - restrict parameters tighter
4519 - declare fit as not valid, if less than 100 events
4520 in single photo-electron peak
4521
4522 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
4523 - fit now with fixed normalization
4524
4525 * mcalib/MHCalibrationPixel.[h.cc]
4526 - new function IsEmpty()
4527 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
4528
4529 * mcalib/MCalibrationPix.[h.cc]
4530 - F-Factor corrected and added error
4531 - Histograms not fitted if they are empty
4532 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
4533
4534 * mcalib/MCalibrationCam.cc
4535 - Square Root of Reduced Sigmas not taken, if they are < 0.
4536 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
4537
4538 * mcalib/MCalibrationCalc.cc
4539 - Blind Pixel is not additionally treated as normal pixel any more
4540 - Blind Pixel Draw replaced by DrawClone
4541
4542 * macros/calibration.C
4543 - took out some unused code
4544 - some default axis labelling corrected
4545
4546
4547
4548 2004/01/13: Abelardo Moralejo
4549
4550 * manalysis/MMcPedestalCopy.cc
4551 - added check of whether input file is a MC file before executing
4552 the PreProcess.
4553
4554
4555
4556 2004/01/13: Wolfgang Wittek
4557
4558 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
4559 - change macro to handle also MC events with finite sigmabar
4560
4561 * manalysis/MPadOn.[h,cc]:
4562 - deleted, is replaced by MPad
4563
4564 * manalysis/MPadOnOFF.[h,cc]:
4565 - deleted, is replaced by MPad
4566
4567 * manalysis/MPad.[h,cc]:
4568 - new class, replacing MPadON and MPadONOFF
4569 - handle also MC events with finite sigmabar
4570
4571 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
4572 - replace MPadON and MPadONOFF by MPad
4573
4574
4575
4576 2004/01/13: Thomas Bretz
4577
4578 * mraw/MRawRunHeader.[h,cc]:
4579 - implemented new member function GetRunTypeStr
4580
4581 * Changelog.03:
4582 - added (contains entries of 2003)
4583
4584 * Changelog:
4585 - removed entries of 2003
4586
4587 * mfilter/MFGeomag.cc:
4588 - simplified open/close of input files
4589
4590 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
4591 - added some comments
4592 - added new member function GetError
4593
4594 * Makefile:
4595 - updated 'make dox' output for convinience
4596
4597 * macros/dohtml.C:
4598 - do not print Info's
4599 - added mcamera
4600 - added mpointing
4601 - added mreport
4602
4603 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
4604 - removed some obsolete comments (these comments confused THtml)
4605
4606 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
4607 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
4608 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
4609 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
4610 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
4611 - replaced MPedestalCam by MPedPhotCam
4612 - removed some obsolete includes
4613
4614 * mbase/BaseLinkDef.h, mbase/Makefile:
4615 - added MLogPlugin
4616 - added MLogHtml
4617
4618 * mbase/MLog.[h,cc]:
4619 - added use of plugins
4620
4621 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
4622 - added
4623
4624 * mbase/MStatusDisplay.[h,cc]:
4625 - added a Save-As dialog
4626
4627
4628
4629 2004/01/12: Thomas Bretz
4630
4631 * macros/rootlogon.C:
4632 - added mcamera to include path
4633 - added mpointing to include path
4634 - added mreport to include path
4635
4636 * mbase/MLog.cc:
4637 - updated my eMail address
4638
4639 * mbase/MParContainer.h:
4640 - added Read member function
4641
4642 * mbase/MStatusDisplay.[h,cc]:
4643 - changed size of ps-paper
4644 - added a user defined bottom line to the ps-files
4645 - added name (currently unused)
4646 - added title (used as possible bottom line in ps-file)
4647
4648 * mraw/MRawRunHeader.cc:
4649 - added some comments
4650
4651 * status.cc:
4652 - set name of input as bottom line of status display
4653
4654
4655
4656 2004/01/12: Abelardo Moralejo
4657
4658 * mimage/MStereoPar.cc
4659 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
4660 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
4661 Bug had no effect unless scale1 != scale2 (-> telescopes of
4662 different size).
4663
4664
4665
4666 2004/01/12: Markus Gaug
4667
4668 * manalysis/MExtractSignal.[h,cc]
4669 - take out some uncommented code
4670 - replace logainshift by two independent variables:
4671 logainfirst, logainlast
4672 - because in most data, maximum occurs in slice 4, shift default
4673 from slices 4-9 to slices 3-8.
4674
4675 * manalysis/MExtractedSignalPix.[h,cc]
4676 - took out some uncommented code
4677 - new initializers: instead of -1. now 99999.9
4678
4679
4680
4681 2004/01/09: Markus Gaug
4682
4683 * mcalib/MCalibrationCam.[h,cc]
4684 - take out 1-dim histos because we can use
4685 the projections in MHCamera (s.b.)
4686
4687 * mcalib/MHCalibrationBlindPixel.h
4688 - make the fit by default quiet
4689
4690 * mcalib/MHCalibrationPixel.[h,cc]
4691 * mcalib/MCalibrationPix.[h,cc]
4692 - Ranges of time slices stored independently for HiGain and LoGain
4693 in order to allow consecutive checks
4694
4695 * mhist/MHCamera.[h.cc]
4696 - add the possibility to call a Draw("proj") which will
4697 draw a Y-Projection of the histogram
4698
4699 * macros/calibration.C
4700 - apply the drawing of the projections and fit them
4701
4702 * mcalib/MCalibrationCalc.cc
4703 - catch the possibility of a calibration file,
4704 unintendedly being a pedestal or cosmic file.
4705 Program now exits with an error before doing the fits
4706
4707 * mcalib/MCalibrationPix.[h,cc]
4708 - fixed a bug in calculation of fFitValid.
4709 before, a call to IsFitValid() always returned false
4710
4711
4712
4713 2004/01/09: Javier L¢pez
4714
4715 * macros/bootcampstandardanalysis.C
4716 - added new macro that holds the main scheleton discussed in the
4717 december bootcamp in Wuerzburg. It runs first over a pedestal
4718 run, then over a calibration run, again over the pedestal run
4719 to compute de pedestal in number of photons and finally over a
4720 data run to calibrate the data.
4721
4722
4723
4724 2004/01/06: Sebastian Raducci
4725
4726 * manalysis/MArrivalTime.[h,cc]
4727 - added new method to calculate photon arrival times. It uses the
4728 TSpline5 Root Class to interpolate the Fadc Slices. The time is
4729 the abscissa value of the absolute maximum of the interpolation
4730 - added new method to find clusters with similar arrival times.
4731 For now it's a preliminary version. It simply search for adiacent
4732 pixels having the same arrival time (color).
4733
4734 * manalysis/MArrivalTimeCalc.[h,cc]
4735 - modified the Process() method according to the changes in the
4736 Arrival Time Cointainer
4737
4738 * mmain/MEventDisplay.cc
4739 - added new tab in the camera event display to show the arrival
4740 time. This arrival time is calculated with the spline method
4741 - the old Arrival Time pad now it's called Max Slice Idx, because
4742 it's only the index of the slice with the max content.
4743
4744 * mhist/MHEvent.[h,cc]
4745 - added new fType in te enumeration to handle the arrival time
4746 histos
Note: See TracBrowser for help on using the repository browser.