source: trunk/MagicSoft/Mars/Changelog@ 3854

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