source: trunk/MagicSoft/Mars/Changelog@ 3840

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