source: trunk/MagicSoft/Mars/Changelog@ 3839

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