source: trunk/MagicSoft/Mars/Changelog@ 3852

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