source: trunk/MagicSoft/Mars/Changelog@ 3404

Last change on this file since 3404 was 3404, checked in by raducci, 21 years ago
*** empty log message ***
File size: 88.1 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
4
5 -*-*- END OF LINE -*-*-
6 2004/03/04: Sebastian Raducci
7
8 * msignal/MArrivalTimeCalc.cc
9 - fixed a memory leak (the spline was not deleted...)
10
11 2004/03/04: Thomas Bretz
12
13 * mgeom/MGeomCam.[h,cc]:
14 - added new data member fNumAreas
15 - added new function CalcNumAreas
16 - increased class version to 3
17
18 * mgeom/MGeomCamMagic.cc:
19 - added setting of area index
20
21 * mgeom/MGeomPix.[h,cc]:
22 - added fAidx data member
23 - added getter function fAidx
24 - increased class version to 3
25
26 * macros/sectorvstime.C:
27 - added example of how to plot the evolution of a sector vs time
28
29 * mhist/MHVsTime.[h,cc], mhist/MHPixVsTime.[h,cc]:
30 - moved to mhvstime
31
32 * mhvstime/MHSectorVsTime.[h,cc]:
33 - added
34
35 * Makefile:
36 - added mhvstime
37
38 * mhvstime/Makefile, mhvstime/HVsTimeLinkDef.h,
39 mhvstime/HVsTimeIncl.h:
40 - added
41
42 * mhist/Makefile, mhist/HistLinkDef.h,
43 - removed MHVsTime
44 - removed MHPixVsTime
45
46 * macros/rootlogon.C, macros/dohtml.C:
47 - added new directory mhvstime
48
49 * msignal/MExtractSignal.cc, msignal/MExtractSignal2.cc:
50 - changes such, that it doesn't crash if signal has no lo-gain
51 (This might still give wrong results!)
52
53 * macros/dohtml.C:
54 - added pixvstime.C
55 - added sectorvstime.C
56
57 * manalysis/MMcCalibrationUpdate.cc:
58 - some changes on file consistency check done by Abelardo,
59 he may comment on it
60
61 * mhist/MHCamera.[h,cc]:
62 - changed to support also dividing the camera in pixels area indices
63
64 * mhist/MHEvent.cc:
65 - minor change
66
67 * mjobs/MJPedestal.cc:
68 - adapted to changes in MHCamera
69
70
71
72 2004/03/03: Thomas Bretz
73
74 * mgeom/MGeomCam.cc:
75 - give a name and title also if the default constructor is used
76
77 * mgeom/MGeomMirror.[h,cc]:
78 - added member function GetReflection
79 - added persistent data member fReflector
80
81 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, mjobs/MJPedestal.cc:
82 - fixed a typo in the output
83
84 * mraw/MRawFileWrite.cc:
85 - added the missing '.' to MRawRunHeader. Because of the design of
86 MReadTree this is backward compatible
87
88 * mraw/MRawRunHeader.h:
89 - removed last change from Abelardo. '>255' is the correct
90 check for MC files following the definition that all MC files
91 have run types >255 which was made in the past.
92
93 * manalysis/MCerPhotAnal.[h,cc], manalysis/MCerPhotAnal2.[h,cc]:
94 - created ReInit member function to hold all code (moved from
95 PreProcess) accessing the run header. The run header is not
96 available in PreProcess. That it was working before was only
97 by chance, because the run type is initialized with 65535 which
98 is != 255 but not >255.
99
100
101
102 2004/03/03: Sebastian Raducci
103
104 * msignal/MArrivalTimeCalc.cc
105 - The calculation of the arrival times is made only when needed
106 (when the HalfMax is over the pedestal)
107
108 * mtools/MCubicSpline.cc
109 - Commented out an annoying warn
110
111
112
113 2004/03/03: Abelardo Moralejo
114
115 * mraw/MRawRunHeader.h
116 - Replaced
117 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by
118 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
119 since the latter is the exact translation of what the function
120 intends to do. I do not know why, but the display of real data
121 did not work with the upper line!
122
123 * mgeom/MGeomCam.cc
124 - Undid yesterday change! I do not know why, display completely
125 fails after that change, both for old and new camera files.
126 Put back fPixels[i] = new MGeomPix; in constructor.
127
128
129
130 2004/03/02: Abelardo Moralejo
131
132 * mmc/MMcCorsikaRunHeader.[h,cc]
133 - Added operator [] to get references to the objects in
134 TObjArray fTelescopes.
135 - Added Print() function.
136 - Added GetNumCT() function.
137 - Replaced
138 fTelescopes[i]= new MGeomCorsikaCT;
139 by
140 MGeomCorsikaCT* dummy = new MGeomCorsikaCT();
141 fTelescopes.Add(dummy);
142
143 * mgeom/MGeomCorsikaCT.[h,cc]
144 - Added getter functions for telescope coordinates.
145 - Added Print() function.
146
147 * mgeom/MGeomCam.cc => NOTE: this change was undone later!
148 - Replaced
149 fPixels[i] = new MGeomPix;
150 by
151 MGeomPix* dummy = new MGeomPix();
152 fPixels.Add(dummy);
153
154
155
156 2004/03/02: Thomas Bretz
157
158 * mcalib/MCalibrateData.cc:
159 - removed usage of MGeomCam (you have MGeomApply for this!)
160
161
162
163 2004/03/01: Nadia Tonello
164
165 * manalysis/MCerPhotEvt.cc
166 - TObject *MCerPhotEvtIter::Next() now returns Used pixels
167 only if fUsedonly=kTRUE, otherwise it returns all the pixels
168 in the array
169
170
171
172 2004/03/01: Sebastian Raducci
173
174 * msignal/MArrivalTimeCalc.[cc,h]
175 - now the arrival time is at the half max of the spline:
176 half max = (maximum - pedestal)/2
177
178 * mmain/MEventDisplay.cc
179 - fixed an include (from MArrivalTime.h to MArrivalTimeCam.h)
180
181
182
183 2004/03/01: Wolfgang Wittek
184
185 * mhist/MHStarMap.[h,cc]
186 - remove bugs
187 - change GetRotationAngle() such that it can be called from outside
188
189
190
191 2004/03/01: Thomas Bretz
192
193 * Makefile:
194 - enhanced all calls to subsequent makes by '-f Makefile' to
195 make sure the correct Makefile is called
196
197 * merpp.cc:
198 - enhanced interpretation of time
199 - fixed a bug in determin the file-type
200
201 * mbase/MTime.[h,cc]:
202 - added GetGmst() member function
203
204 * mastro/MAstro.[h,cc]:
205 - added Coordinate2Angle
206 - added AngularDistance
207 - implemented UT2GMST
208 - replaced defined by TMath::Pi()
209
210 * mastro/MObservatory.[h,cc]:
211 - added data members for sin-/cos-component of latitude
212 - added calculation of rotation angle
213
214 * mhist/MHStarMap.[h,cc]:
215 - changes to use MObservatory member function
216
217 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotAnal2.cc,
218 manalysis/MCerPhotCalc.cc, manalysis/MMcCalibrationUpdate.cc,
219 manalysis/MMcPedestalCopy.cc, manalysis/MMcPedestalNSBAdd.cc,
220 manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc,
221 mcalib/MCalibrationChargeCalc.cc, mcalib/MMcCalibrationCalc.cc
222 - changed to use IsMonteCarloRun() now
223
224 * manalysis/MMcCalibrationUpdate.cc:
225 - unified output to log-stream
226 - replaced sqrt by TMath::Sqrt
227
228 * mcalib/MCalibrationChargeCalc.cc:
229 - unified output to log-stream
230 - removed .Data() from TString where obsolete
231 - fixed memory leak using gSystem->ExpandPathName
232
233 * mpointing/MPointingPosCalc.cc, mraw/MRawFileWrite.cc:
234 - adde class name to used kRT*/kTT* enums
235
236 * mraw/MRawEvtHeader.h:
237 - made enum data member of class
238
239 * mraw/MRawRunHeader.[h,cc]:
240 - made kMagicNumber and kMaxFormatVersion a static data
241 member of the class
242 - added IsMonteCarloRun member function
243
244
245
246 2004/02/27: Markus Gaug
247
248 * mjobs/MJPedestal.cc, mjobs/MJCalibration.cc, macros/calibration.C:
249 - put in call to MHCamera::Projection the name of the calling
250 class, otherwise the projected hsitogram will be overwritten by
251 an empyt one.
252
253 * mcalib/MHCalibrationChargePix.[h,cc],
254 mcalib/MHCalibrationHiGainChargePix.[h,cc],
255 mcalib/MHCalibrationLoGainChargePix.[h,cc]:
256 - histogram name setting and title setting moved to constructor,
257 Functions Init and ChangeHistId derive directly from
258 MHcalibrationChargePix
259
260 * mcalib/MHCalibrationChargeCam.[h,cc],
261 mcalib/MCalibrationChargeCam.[h,cc],
262 mcalib/MCalibrationChargeCalc.[h,cc]:
263 - introduced "average inner" and "average outer" higain and logain
264 pixels.
265
266
267
268 2004/02/27: Raducci Sebastian
269
270 * mhist/Makefile
271 - added mastro in the include list
272
273
274
275 2004/02/27: Abelardo Moralejo
276
277 * mmain/MEventDisplay.cc
278 - replaced in fill8 obsolete MArrivalTime with MArrivalTimeCam.
279 - Updated display of MC data: removed MCerPhotCalc, and replaced
280 it by MExtractSignal+MMcCalibrationUpdate+MCalibrate. Now
281 MPedPhotCam is filled and all the camera display tabs are shown
282 correctly (most were not working for MC events since a while
283 ago).
284
285 * mmain/Makefile
286 - Added mcalib to list of include directories.
287
288 * manalysis/MMcCalibrationUpdate.[h,cc]
289 - Added member variable Bool_t fOuterPixelsScaling, which is
290 kTRUE by default. If set to kFALSE, MCalibrationCam is filled
291 such that MCerPhotEvt will later be filled with the signal as it
292 is, not corrected for the (possibly) different gain of the outer
293 pixels electronic chain. This option was necessary to allow for
294 the change in the camera display (see above).
295
296 * macros/starmc.C
297 - added (optional) division of output into two, for use as train
298 and test samples in g/h separation studies.
299
300
301
302 2004/02/26: Hendrik Bartko
303
304 * macros/dohtml.C
305 - included the path msignals/
306
307
308
309 2004/02/26: Abelardo Moralejo
310
311 * macros/starmcstereo.C
312 - changed filters to divide data between train and test sample for
313 gamma hadron separation studies. Now we use the modulus operator
314 applied to (Corsika) event number:
315 MF filter1("{MMcEvt;1.fEvtNumber%2}<0.5");
316 MF filter2("{MMcEvt;1.fEvtNumber%2}>0.5");
317 - cleaned up a bit the way the CT coordinates are fed to the task
318 MStereoCalc.
319 - Changed default FADC integration range (center range to adapt to
320 new camera).
321
322
323
324 2004/02/26: Thomas Bretz
325
326 * mhist/MHCamera.cc:
327 - fixed a function description
328
329 * mreport/MReport.cc, mreport/MReportFileRead.cc:
330 - introduced return case -1
331
332 * Makefile.rules:
333 - remove all dependancy files when calling 'rmdep'
334
335 * mbase/MAGIC.h, mmc/MMcEvt.hxx:
336 - moved ParticleId_t to MMcEvt
337 - implemented MMcEvt::GetParticleName
338 - implemented MMcEvt::GetEnergyStr
339
340 * mfilter/MFGeomag.cc, mfilter/MFParticleId.cc, mhist/MHCompProb.cc,
341 mhist/MHEvent.cc, mhist/MHHadronness.cc,
342 mmontecarlo/MMcTriggerRateCalc.cc, mranforest/MHRanForest.cc:
343 - fixed usage of ParticleId_t
344
345 * msignal/Makefile:
346 - removed obsolete includes
347
348 * mastro/Makefile, mastro/AstroLinkDef.h, mastro/MAstro.[h,cc],
349 mastro/MObservatory.[h,cc]:
350 - added
351
352 * mbase/MAstro.[h,cc]:
353 - removed
354
355 * mbase/Makefile, mbase/BaseLinkDef.h:
356 - removed MAstro
357
358 * Makefile:
359 - added mastro
360 - added msql
361 - added mfbase
362
363 * mtemp/MObservatory.[h,cc], mtemp/MObservatoryLocation.[h,cc]:
364 - removed
365
366 * merpp.cc:
367 - added Sql support
368
369 * mraw/MRawFileRead.h:
370 - added GetFileName
371
372 * msql/Makefile, msql/SqlLinkDef.h, msql/SqlIncl.h,
373 MSQLServer.[h,cc], MSqlInsertRun.[h,cc]:
374 - added
375
376 * mfilter/MF.[h,cc], mfilter/MFDataChain.[h,cc],
377 mfilter/MFDataMember.[h,cc], mfilter/MFEventSelector.[h,cc],
378 mfilter/MFEventSelector2.[h,cc], mfilter/MFRealTimePeriod.[h,cc]:
379 - moved to mfbase
380
381 * mfbase/Makefile, mfbase/FBaseLinkDef.h, mfbase/FBaseIncl.h:
382 - added
383
384 * merpp.cc:
385 - implemented control of gDebug (root debugging)
386
387 * mfileio/MWriteAsciiFile.[h,cc], mfileio/MWriteFile.[h,cc],
388 mfileio/MWriteRootFile.[h,cc]:
389 - implemented CheckAndWrite return value
390
391 * mfileio/MWriteRootFile.cc:
392 - fixed updating already existing branches (eg concatenating report
393 files)
394
395 * macros/dohtml.C, macros/rootlogon.C:
396 - added mastro
397 - added mfbase
398 - added msql
399
400 * mraw/MRawEvtHeader.h:
401 - implemented GetNumTrigLvl1
402 - implemented GetNumTrigLvl2
403
404
405
406 2004/02/25: Markus Gaug
407
408 * mcalib/MExtractBlindPixel.[h,cc],
409 mcalib/MExtractPINDiode.[h,cc],
410 mcalib/MExtractedSignalBlindPixel.[h,cc],
411 mcalib/MExtractedSignalPINDiode.[h,cc],
412 mcalib/Makefile, msignal/Makefile, mcalib/CalibLinkDef.h,
413 msignal/SignalLinkDef.h:
414 - moved blindpixel and PINdiode extractors to msignal
415
416
417 * mcalib/MCalibrationQECam.[h,cc], mcalib/MCalibrationQEPix.[h,cc]:
418 - two new classes to hold the quantum efficieny information of the
419 calibration
420
421 * msignal/MArrivalTimeCalc.[h,cc]
422 - fill now MArrivalTimePix instead of MArrivalTime
423
424 * mcalib/MHCalibrationChargeCam.cc
425 - display only valid pixels for the corr. values in GetPixelContent
426
427 * mcalib/MHCalibrationRelTimeCam.cc
428 - is now filled from MArrivalTimeCam instead of MArrivalTime
429
430 * macros/calibration.C
431 - divided into two macros: calibration.C using the MJPedestal
432 standard procedure and pedestalstudies.C using the old
433 procedures
434
435 * macros/pedestalstudies.C
436 - new macro containing the first previous part of calibration.C
437
438 * mcalib/MCalibrationChargeBlindPix.h,
439 mcalib/MCalibrationChargePINDiode.h, mbase/MAGIC.h,
440 mjobs/MJCalibration.cc:
441 - definition of PulserColot_t in MAGIC.h.
442
443
444
445 2004/02/25: Hendrik Bartko
446
447 * macros/rootlogon.C
448 - set the include path also to msignals/
449
450 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractSignal2.[h,cc],
451 manalysis/MExtractedSignalCam.[h,cc],
452 manalysis/MExtractedSignalPix.[h,cc],
453 manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc],
454 manalysis/MArrivalTimeCalc2.[h,cc]:
455 - removed
456
457 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
458 - removed classes mentioned above
459
460 * msignal/MExtractSignal.[h,cc], msignal/MExtractSignal2.[h,cc],
461 msignal/MExtractedSignalCam.[h,cc],
462 msignal/MExtractedSignalPix.[h,cc],
463 msignal/MArrivalTime.[h,cc], msignal/MArrivalTimeCalc.[h,cc],
464 msignal/MArrivalTimeCalc2.[h,cc]:
465 - added
466
467 * msignal/Makefile, msignal/AnalysisLinkDef.h:
468 - added classes mentioned above
469
470 * mfilter/Makefile, mcalib/Makefile, mjobs/Makefile, mmain/Makefile:
471 - added include msignal
472
473
474
475
476 2004/02/25: Wolfgang Wittek
477
478 * mcalib/MCalibrateData.[h,cc]
479 - initialize size for MPedPhotCam
480
481
482
483 2004/02/24: Wolfgang Wittek
484
485 * manalysis/MSourcPosfromStarPos.[h,cc]
486 - change member function SetSourceAndStarPosition() to expect sky
487 coordinates in the standard units
488 - generalize to more than 1 star
489 - the class is not yet fully tested
490
491 * mfilter/MFSelBasic.[h,cc]
492 - change default values of cuts
493
494
495
496 2004/02/24: Markus Gaug
497
498 * mjobs/MJCalibration.cc, macros/calibration.C,
499 macros/bootcampstandardanalysis.C, macros/pedphotcalc.C:
500 - added MCalibrationChargeBlindPix to plist
501 - added new filling of histograms with MFillH
502 - changed SetPulserColor to MCalibrationChargeBlindPix and
503 MCalibrationChargePINDiode
504
505 * mcalib/MHCalibrationChargeBlindPix.[h,cc]:
506 - receives a pointer to MCalibrationChargePINDiode which is filled
507 with the results and told to calculate the fluxes in the
508 Finalize function
509 - is filled via MFillH from MExtractBlindPixel
510 - SetPulserColor directly in this class
511
512 * mcalib/MCalibrationChargeBlindPix.[h,cc]
513 - new storage container of the blind pxiel resutls, replaces
514 MCalibrationBlindPix
515
516 * mcalib/MCalibrationChargeCalc.[h,cc]:
517 - does not fill the histograms any more, but does ony the
518 calculations in the postprocess. No pointer to MExtractPINDidoe
519 or MExtractBlindPixel any more.
520
521 * mcalib/MCalibrationChargePix.cc
522 - discovered an error in the calculation of phe's in
523 CalcFFactorMethod(). The average QE was applied twice.
524 This error had been introduced on 13/02/04
525 - loosened criterium convFFactorRelErrLimit from 0.1 to 0.2
526 - CalcFFactor asks for IsChargeValid before calculating anything
527
528 * mcalib/MCalibrationChargePINDiode.[h,cc]
529 - added function SetFluxOutsidePlexiglassAvailable
530 - SetPulserColor directly in this class
531
532 * mcalib/MCalibrationChargeCam.cc
533 - removed function SetPulserColor from here
534
535 * mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationConfig.h,
536 mcalib/MHCalibrationPINDiode.[h,cc],
537 mcalib/MCalibrationBlindPix.[h,cc],
538 mcalib/MHCalibrationBlindPixel.[h,cc]:
539 - removed since obsolote
540
541 * mcalib/MHCalibrationChargePix.cc
542 - make fPickup an Int_t
543
544 * mcalib/MCalibrate.cc
545 - test validity of every calibration method before retrieving
546 conversion factors
547
548 * mcalib/MHGausEvents.[h,cc]
549 - add possibility to set fit ranges in call to FitGaus
550 - make function CreateXaxis protected
551
552
553
554 2004/02/23: Markus Gaug
555
556 * mraw/MRawEvtPixelIter.h
557 - include GetNumHiGainSamples and GetNumLoGainSamples
558
559 * mcalib/MExtractedSignalBlindPixel.h,
560 mcalib/MExtractBlindPixel.[h,cc]:
561 - included storage of pedestal
562
563 * mcalib/MHGausEvents.[h,cc]
564 - make the fit functions protected
565
566
567
568 2004/02/22: Markus Gaug
569
570 * mfilter/MFCosmics.[h,cc]
571 - fMaxNumEmpty changed from absolute number to relative number of
572 pixels
573
574 * mcalib/MHGausEvents.h
575 - remove the "->" from the pointers which are initialized only
576 in certain cases. The streamer did not work in case that
577 MFGausFit was left at the NULL pointer.
578
579
580
581 2004/02/21: Markus Gaug
582
583 * manalysis/MExtractedSignalPix.[h,cc]
584 - changed variable fIsLoGainUsed to fLoGainUsed
585 - added function GetNumHiGainSaturated()
586
587
588 2004/02/20: Markus Gaug
589
590 * mcalib/MHCalibrationChargeHiGainPix.[h,cc], mcalib/Makefile,
591 mcalib/MHCalibrationChargeLoGainPix.[h,cc],
592 mcalib/CalibLinkDef.h
593 - new class to replace MHCalibrationPixel,
594 based on MHCalibrationChargePix
595
596 * mcalib/MCalibrationChargeCalc.[h,cc]
597 mcalib/MCalibrationChargeCam.[h,cc]
598 mcalib/MCalibrationChargePix.[h,cc]
599 mcalib/MCalibrationChargePINDiode.[h,cc]
600 mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
601 mcalib/MCalibrationPINDiode.[h,cc]:
602 - added the "charge" versions, remove the old ones. The histograms
603 should be filled in the MH... versions independently of
604 MCalibrationChargeCalc. This is fully realized for the PIN Didoe
605 now and will later be so for the pixels and the blind pixel.
606
607 * mcalib/MHCalibrationChargePINDiode.[h,cc]
608 - receives a pointer to MCalibrationChargePINDiode which is filled
609 with the results and told to calculate the fluxes in the
610 Finalize function
611
612 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrateData.[h,cc],
613 mcalib/MMcCalibrationCalc.[h,cc], mjobs/MJCalibration.[h,cc],
614 manalysis/MMcCalibrationUpdate.[h,cc],
615 mjobs/MJExtractSignal.[h,cc], manalysis/MGeomApply.cc,
616 mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C,
617 macros/bootcampstandardanalysis.C,
618 macros/pedphotcalc.C:
619 - replace MCalibrationCam by MCalibrationChargeCam
620 - replace MCalibrationCalc by MCalibrationChargeCalc
621
622
623
624 2004/02/19: Markus Gaug
625
626 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc,
627 mcalib/MCalibrate.cc, mcalib/MCalibrateDate.cc,
628 manalysis/MMcCalibrationUpdate.cc:
629 - standardized naming of variables containing "Error", this also affected
630 the calling functions MCalibrate, MMcCalibrationUpdate and MCalibrateData
631
632 * mcalib/MCalibrationCam.cc, mcalib/MCalibrationPix.cc,
633 mcalib/MCalibrationCalc.cc, mcalib/MCalibrate.cc,
634 mcalib/MCalibrateData.cc, mcalib/MCalibrationConfig.h:
635 - took out some configuration numbers and put them directly into
636 the class
637 - remove completely MCalibrationConfig.h
638
639
640
641 2004/02/19: Abelardo Moralejo
642
643 * mhist/MHEvent.[h,cc]:
644 - Changed names of Event "types" to make them more descriptive.
645 Former kEvtSignal is now called kEvtSignalDensity, and indicates
646 pixel content scaled by area. Added kEvtSignalRaw, which
647 corresponds to pixel content (with no scaling) in whatever units
648 (this depends on how the MHEvent object is filled!). The default
649 constructor initializes type=kEvtSignalRaw.
650
651 * mmain/MEventDisplay.cc
652 - Changed filling of evt1 and evt2. Now they are filled with raw
653 content of MCerPhotEvt. Since in MEventDisplay, MCerPhotEvt is
654 still filled uncalibrated (hence in ADC counts), this means that
655 what will be now shown in Mars' camera display is now the signal
656 in each pixel without scaling with pixel area. Given that the
657 default flat fielding is such that equal light density
658 corresponds to equal absolute signal (in ADC counts), this is
659 more reasonable, and allows to check for instance how the
660 relative pixel gains are adjusted by looking at calibration
661 events. To be FIXED: there is however an "inconsistency" in
662 MEventDisplay, and it is that MCerPhotEvt is still used to keep
663 uncalibrated signals. To be replaced by MExtractedSignalCam?
664
665
666
667 2004/02/19: Thomas Bretz
668
669 * manalysis/MCerPhotEvt.h:
670 - added operator= to MCerPhotEvtIter -- is this correct?
671
672 * mhist/MHCamera.[h,cc]:
673 - added member function to calculate minimum content and
674 maximum content for a single sector
675 - Added possibility to get a projection for a single sector.
676 - GetMinimum/GetMaximum now only takes used pixels into account
677 (you can request all pixels using a different member function)
678 - fixed projection (projection only took pixels with contents!=0
679 instead of 'used' pixels
680 - Don't call Sumw2() anymore for projection
681
682 * mjobs/MJPedestal.cc:
683 - added MPedestalCam to output again - MPedestalCam was fixed
684 yesterday
685 - Added Histograms for the two camera halves
686
687
688
689 2004/02/18: Markus Gaug
690
691 * macros/calibration.C
692 - fixed a buggy display of the F-Factor method
693
694 * mcalib/MCalibrationCalc.cc
695 - calculate the F-Factor method already in the post-Process
696
697 * mcalib/MCalibrationPix.h
698 - move CalcFFactorMethod to public
699
700
701
702 2004/02/18: Abelardo Moralejo
703
704 * mtools/MCubicSpline.cc
705 - in Init, corrected initialization of arrays temp and ysd, which
706 was done with n-1 elements instead of n.
707
708 * mgui/MHexagon.cc
709 - added comment explaining the algorithm.
710 - changed explicit values of Sin and Cos 60 degrees by const
711 variables (more readable).
712
713
714
715 2004/02/18: Hendrik Bartko
716
717 * msignal/:
718 - removed the backup files *~
719 - removed the object files *.o
720 - removed the files SignalCint.*
721
722 * mgui/MHexagon.cc
723 - added comment explaining the algorithm.
724
725
726
727 2004/02/18: Thomas Bretz
728
729 * manalysis/MPedestalCam.[h,cc]:
730 - Changed order of derivements - seems to be VERY important!
731 - changed GetSize from UInt_t to Int_t which is the type
732 of TClonesArray::GetSize() !
733
734 * mfileio/MReadReports.cc:
735 - skip trees with no entries
736
737 * mgui/MCamEvent.cc:
738 - added a comment
739
740 * mhbase/MFillH.cc:
741 - in case SetupFill returns kFALSE and kCanSkip is set
742 Skip task
743
744 * mraw/MRawFileRead.cc:
745 - don't print warning in case of none executions
746
747 * manalysis/MArrivalTimeCalc2.cc:
748 - added some const-qualifiers
749
750
751
752 2004/02/17: Raquel de los Reyes
753
754 * macros/CCDataCheck.C
755 - Added some improvements in the plots.
756
757
758
759 2004/02/17: Abelardo Moralejo
760
761 * macros/readrfl.C
762 - Added missing gPad->cd(1), otherwise the display of events was
763 not updated.
764
765 * mgui/MHexagon.cc
766 - DistanceToPrimitive(Float_t px, Float_t py) Changed check of
767 whether px,py is inside the pixel or not. Previous algorithm
768 was just an approximation.
769
770
771
772 2004/02/17: Raquel de los Reyes
773
774 * mcamera/MCameraHV.h
775 - Now it derives from a MCamEvent class and implemented the
776 GetPixContent() and DrawPixelContent() functions. Added the
777 GetMean function to get the mean HV settings of the camera.
778
779 * macros/CCDataCheck.C
780 - Added the HV settings plots.
781
782
783
784 2004/02/17: Hendrik Bartko
785
786 * msignal:
787 - new: directory for all signal and time extraction classes
788
789 * msignal/MArrivalTimeCam.[h,cc], manalysis/Makefile,
790 msignal/AnalysisLinkDef.h, MGeomApply.cc:
791 - new: Storage Container for the ArrivalTime in the camera
792
793 * msignal/MArrivalTimePix.[h,cc], manalysis/Makefile,
794 msignal/AnalysisLinkDef.h:
795 - new: Storage Container for ArrivalTime information of one pixel
796
797 * msignal/Makefile, SignalCint.[h,cc], SignalDep.d, SignalIncl.h,
798 SignalLinkDef.h
799 - auxiliary files for msignal directory
800
801 * manalysis/MArrivalTimeCalc2.[h,cc]:
802 - added functionality to compute error of the extracted ArrivalTime
803 - calculated ArrivalTime is stored in MArrivalTimeCam
804
805 * manalysis/MGeomApply.cc
806 - geometry is applied to MArrivalTimeCam
807
808 * Makefile:
809 - directory msignal is included
810
811
812
813 2004/02/17: Sebastian Raducci
814
815 * mtools/MCubicSpline.[h,cc]
816 - little corrections in minimums evalustion methods
817 - changed constructors (they require the fadc slices to be const)
818
819 * macros/spline.C
820 - changed according to the MCubicSpline new constructors
821
822 * manalysis/MArrivalTimeCalc.[h,cc]
823 - changed to use the MCubicSpline class intead of the TSpline class
824 - warning: now the arrival time is again the maximum of the spline,
825 soon it will be changed to half maximum
826
827
828
829 2004/02/17: Wolfgang Wittek
830
831 * manalysis/MSourcPosfromStarPos.[h,cc]
832 - new class; calculates the position of the source in the camera from
833 the position of a star in the camera and puts it into
834 MSrcPosCam
835
836
837
838 2004/02/16: Abelardo Moralejo
839
840 * mcalib/MMcCalibrationCalc.cc
841 - Fixed two typos in screen output.
842
843
844
845 2004/02/16: Markus Gaug
846
847 * mcalib/MCalibrationPix.cc
848 - documentation from David's email added
849 - EffectiveQE decreased from 0.2 to 0.18 (see documentation)
850
851 * mcalib/Makefile, mcalib/CalibLinkDef.h:
852 - added MExtractBlindPixel and MExtractedSignalBlindPixel
853
854 * mcalib/MExtractBlindPixel.[h,cc]
855 - new signal extractor for the Blind Pixel
856
857 * mcalib/MExtractedSignalBlindPixel.[h,cc]
858 - new container for the extracted signal of the BlindPixel
859
860 * mcalib/MCalibrationCalc.[h,cc]
861 - does not extract signal from Blind Pixel any more, searches
862 for MExtractedSignalBlindPixel and fills the hists from there
863
864 * macros/calibration.C, macros/bootcampstandardanalysis.C,
865 macros/pedphotcalc.C, mjobs/MJCalibration.cc:
866 - introduce the blind pixel and PIN diode extraction in the macro
867
868 * manalysis/MPedestalCam.h
869 - changed type of fTotalEntries from ULong_t to UInt_t
870 - fixed documentation of fTotalEntries
871
872 * manalysis/MPedCalcPedRun.h
873 - changed type of fNumSamplesTot from ULong_t to UInt_t
874
875 * mcalib/MHGausEvents.h
876 - changed type of fCurrentSize from ULong_t to UInt_t
877
878 * mcalib/MCalibrationConfig.h
879 - removed gkConversionHiLo and gkConversionHiLoErr which is now
880 directly in the class MCalibrationPix
881
882
883
884 2004/02/16: Thomas Bretz
885
886 * manalysis/AnalysisLinkDef.h:
887 - added missing MCerPhotEvtIter
888
889 * merpp.cc:
890 - added possible usage of database
891
892 * star.cc:
893 - moved source code into new class MJStar - preliminary
894
895 * manalysis/MCerPhotPix.cc:
896 - updated class header
897 - fixed Print-output
898
899 * mbase/MAGIC.h:
900 - removed definition of MLog
901
902 * mbase/MArgs.h:
903 - removed include of MAGIC.h
904
905 * mbase/MLog.h:
906 - added extern definition of gLog
907
908 * mbase/MParContainer.[h,cc]:
909 - move body of constructors to source file
910
911 * mcalib/MCalibrate.cc, mcalib/MCalibrateData.cc,
912 mraw/MRawCrateArray.cc, mraw/MRawCrateData.cc,
913 mraw/MRawEvtData.cc, mraw/MRawEvtHeader.cc, mraw/MRawRead.cc,
914 mraw/MRawEvtPixelIter.cc, mraw/MRawFileWrite.cc:
915 - fixed documentation header
916
917 * mcalib/MMcCalibrationCalc.[h,cc]:
918 - fixed documentation header
919 - fixed usage of FindCreateObj and FindObject
920 - removed data member to count entries (use histogram instead)
921 - use TH1 function Integral instead of doing it manually
922
923 * mfilter/MFCosmics.cc:
924 - fixed documentation
925
926 * mimage/MHillas.cc, mimage/MImgCleanStd.cc,
927 mimage/MNewImagePar.[h,cc]:
928 - replaced for-loops by Iterators
929
930 * mraw/MRawFileRead.cc, mraw/MRawSocketRead.cc:
931 - fixed documentation header
932 - check return value of MRawRunHeader::ReadEvt
933
934 * mraw/mraw/MRawRunHeader.[h,cc]:
935 - fixed documentation header
936 - added return value to MRawRunHeader::ReadEvt
937 - added constant number for max format version - preliminary
938 (should by a static data member)
939
940 * mcalib/MHCalibrationPINDiode.cc:
941 - do not delete pointers in the destructor which are already
942 deleted in the base class
943 - reset histograms in Clear()
944
945 * mcalib/MHCalibrationPixel.cc:
946 - after deletion of instances in Clear() initialize pointer to NULL
947
948 * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
949 - fixed usage of logging stream output levels
950
951 * manalysis/MPedCalcPedRun.[h,cc]:
952 - removed obsolete fSignals
953
954 - removed obsolete fNumPixels
955
956 * manalysis/MPedestalCam.h:
957 - added '->' to fArray
958
959 * mfileio/MWriteRootFile.cc:
960 - changed some output to make debugging easier
961
962 * mjobs/MJCalibration.cc:
963 - fixed a bug in drawing
964
965 * mjobs/MJExtractSignal.cc:
966 - removed MPedestalCam from MWriteRootFile output.
967 When creating the branch it crashes - reason unknown I'll
968 investigate further
969
970
971
972 2004/02/16: Markus Gaug
973
974 * mcalib/Makefile, mcalib/CalibLinkDef.h, macros/calibration.C:
975 - added MHCalibrationRelTimePix
976
977 * mcalib/MHCalibrationRelTimePix.[h,cc],
978 mcalib/MHCalibrationRelTimeCam.[h,cc]:
979 - new classes to fit and display the relative arrival times.
980 - filled from MArrivalTime
981 - need: MFillH("MHCalibrationRelTimeCam","MArrivalTime")
982
983 * manalysis/MCalibrationCalc.cc
984 - take out all uncommented code referring to the relative arrival time
985
986 * manalysis/MArrivalTime.h
987 - changed function GetNumPixels to GetSize
988
989 * macros/bootcampstandardanalysis.C, macros/pedphotcalc.C
990 - included cosmics rejection which was in MCalibrationCalc before
991
992
993
994 2004/02/14: Markus Gaug
995
996 * mcalib/Makefile, mcalib/CalibLinkDef.h:
997 - added MHCalibrationChargePINDiode
998
999 * mcalib/MHCalibrationChargePINDiode.[h,cc]
1000 - new class to fill the PIN Diode histograms. Derives from
1001 MHCalibrationChargePix and is filled with MFillH from the
1002 container MExtractedSignalPINDiode.
1003 Will replace MHCalibrationPINDiode entirely soon.
1004
1005 * mcalib/MHCalibrationChargePix.[h,cc]
1006 - new base class for the calibration charges histogram pixel.
1007 Derives from MH and can be filled with the MH with the MH
1008 functions.
1009
1010 * mcalib/MExtractPINDiode.[h,cc]
1011 - new signal extractor for the PIN Diode
1012
1013 * mcalib/MExtractedSignalPINDiode.[h,cc]
1014 - new container for the extracted signal of the PIN Diode
1015
1016 * mcalib/MCalibrationCalc.[h,cc]
1017 - remove the PIN Diode signal extraction
1018
1019 * manalysis/MHPedestalPix.[h,cc]
1020 - new version of MHPedestalPixel, deriving from MHGausEvents.
1021
1022 * manalysis/MHPedestalPixel.[h,cc]
1023 - old version removed, since obsolete (and erroneous)
1024
1025 * manalysis/MHPedestalCam.[h,cc]
1026 - histogramming part of MPedestalCam now in own class
1027
1028 * manalysis/MPedestalPix.h
1029 - removed include of MHPedestalPixel
1030
1031 * macros/calibration.C
1032 - changed pedestal displays accordingly
1033
1034 * mjobs/MJPedestal.h
1035 - class TCanvas included (did not compile otherwise)
1036
1037 * mhbase/MH.cc
1038 - included call to FindGoodLimits(..) in CutEdges()
1039 - axe from pointer to reference
1040 - "CutEdges" renamed to "StripZeros"
1041
1042 * manalysis/MHPedestalPixel.cc, mcalib/MHCalibrationPixel.cc,
1043 mcalib/MHCalibrationBlindPixel.cc:
1044 - "CutEdges" renamed to "StripZeros"
1045
1046 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
1047 - replaced by the improved version: MHGausEvents.[h,cc]
1048
1049
1050
1051 2004/02/14: Thomas Bretz
1052
1053 * manalysis/MCerPhotEvt.[h,cc]:
1054 - added 'Iterator' facility, this will replace some for-loops
1055 in the near future
1056
1057 * mbase/MTime.[h,cc]:
1058 - added a more powerfull interface to get and interprete the
1059 MTime contents as string
1060 - added a new constructor
1061
1062 * mreport/MReportTrigger.h:
1063 - fixed GetPixContent
1064
1065 * mtools/MCubicCoeff.cc, mtools/MCubicSpline.[h,cc]:
1066 - many small changes to simple details (like order of includes)
1067 - some speed improvements
1068 - many small simplifications
1069 - changed parts of the code to be more C++ like (eg Iterators
1070 instead of for-loops)
1071 - disentangles some if-cases
1072 - replaced some math.h function by TMath::
1073 - removed data-member fN (obsolete with iterators)
1074
1075
1076
1077 2004/02/13: Wolfgang Wittek
1078
1079 * mcalib/MCalibrateData.[h,cc]
1080 - new class;
1081 like MCalibrate, but in ReInit it fills the MPedPhot container
1082 using informations from MPedestal, MExtracteSignalCam and
1083 MCalibrationCam
1084
1085 * mcalib/Makefile, mcalib/CalibLinkDef.h
1086 - added MCalibrateData
1087
1088 * manalysis/MPedestalWorkaround.[h,cc]
1089 - create MMcEvt container and fill with theta = 10.0
1090 - set pedestalRMS = 0. if it is > 10.0
1091
1092 * manalysis/MSupercuts.[h,cc]
1093 - change default values of parameters
1094
1095 * manalysis/MSupercutsCalc.[h,cc]
1096 - change dNOMLOGSIZE from 4.1 to 5.0
1097
1098 * mhist/MHBlindPixels.[h,cc]
1099 - change MPedestalCam to MPedPhotCam
1100
1101 * mhist/MHSigmaTheta.[h,cc]
1102 - automatic binning for pixel number doesn't work
1103 use default binning
1104
1105
1106
1107 2004/02/13: Markus Gaug
1108
1109 * mcalib/MCalibrationPix.[h,cc]
1110 - added variables gkAverageQE, gkAverageQEErr, and fAverageQE,
1111 fAverageQEErr
1112 - gkAverageQE initializes to 0.2 (according to David)
1113 - gkAverageQEErr initializes to 0.02 (dito)
1114 - added new member function: SetAverageQE
1115 - call to GetMeanConversionFFactorMethod returns:
1116 fMeanConversionFFactorMethod/fAverageQE.
1117 - call to GetErrorConversionFFactorMethod returns:
1118 errors of fMeanConversionFFactorMethod and fAverageQEErr added
1119 quadratically
1120
1121 * mcalib/Makefile
1122 - split into two parts one comment line
1123
1124
1125 2004/02/13: Thomas Bretz
1126
1127 * mbadpixels/MBadPixelsTreat.[h.cc]:
1128 - added for new bad pixel treatment
1129
1130 * mbadpixels/Makefile, mbadpixels/BadPixelsLinkDef.h:
1131 - added MBadPixelsTreat
1132
1133 * merpp.cc:
1134 - changed the name of the "DC" tree to "Currents" to make
1135 MReportRead work correctly with this tree
1136
1137 * mbase/MTime.[h,cc]:
1138 - Changed UpDMagicTime to support nanosec instead of millisec
1139 - exchanged Reset() by Clear() not to clear the yy/mm/dd
1140 information away in an eventloop
1141
1142 * mraw/MRawEvtHeader.[h,cc]:
1143 - implemented decoding of the time-stamp for raw-data files
1144 with version>2. Thanks to Marcos.
1145
1146 * mraw/MRawRead.[h,c]:
1147 - pipe file version number to MRawEvtHeader::ReadEvt
1148 - create fake time for file-version<3
1149
1150 * macros/readMagic.C:
1151 - changed to use MInteractiveTask
1152
1153 * mbase/MPrint.cc:
1154 - fixed debugging level of some output
1155
1156 * mhist/MHCamera.[h,cc]:
1157 - fixed handling in AddNotify (necessayr due to change of
1158 inheritance from MCamEvent)
1159 - replaced cout by gLog
1160 - added fNotify to list of cleanups
1161
1162 * mhist/MHEvent.cc, mjobs/MJCalibration.cc,
1163 mjobs/MJPedestal.cc:
1164 - fixed usage of AddNotify
1165
1166 * mfileio/MReadReports.cc:
1167 - use a different way to determin whether the tree is a valid tree,
1168 skip invalid trees
1169
1170 * mfileio/MReadTree.cc:
1171 - added another sanity check at the beginning of PreProcess
1172
1173 * mhbase/MFillH.[h,cc]:
1174 - added bit kCanSkip which skips MFillH in case the necessary container
1175 wasn't found.
1176 - cd into the corresponding canvas before filling the MH
1177
1178
1179
1180 2004/02/12: Markus Gaug
1181
1182 * mbase/MArray.[h,cc]:
1183 - changed name of StripZeros
1184
1185 * mcalib/MHGausEvent.cc:
1186 - corrected call to StripZeros
1187
1188 * mcalib/MCalibrationPix.[h,cc]
1189 - implemented dummy for combined method
1190
1191 * mcalib/MCalibrate.[h,cc]
1192 - implemented a dummy for calibration factor 1. (requested by
1193 Javier Rico)
1194 - implemented combined method
1195 - check for valid methods moved to ReInit
1196
1197 * mcalib/MCalibrationCalc.cc
1198 - removed initialization of non-used nsamples
1199
1200 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.[h,cc],
1201 mcalib/MCalibrationCalc.[h,cc]
1202 macros/calibration.C
1203 - implemented new histograms:
1204 HSinglePheFADCSlices and HPedestalFADCSlices
1205 They are filled with the FADC slice values of either a s.phe.
1206 event or a pedestal event. The decision is taken with the
1207 variable: MCalibrationCalc::fBlindPixelSinglePheCut, to be set
1208 with a setter
1209
1210 * mtools/MFFT.[h,cc]
1211 - PowerSpectrumDensity of TArrayI implemented
1212
1213
1214
1215 2004/02/12: Thomas Bretz
1216
1217 * mbase/MArray.[h,cc]:
1218 - changed argument of CutEdges from pointer to reference
1219
1220 * mgeom/MGeomPix.h:
1221 - fixed calculation of area of pixel. It was too big for a
1222 factor of 2
1223
1224 * mjobs/MJCalibration.cc:
1225 - slight change of name of a MHCamera
1226
1227 * manalysis/MExtractSignal.cc:
1228 - slight change to the creation of the satpixels list
1229
1230 * mcalib/MHCalibrationBlindPixel.cc, mcalib/MHCalibrationPixel.cc,
1231 mcalib/MHGausEvent.cc:
1232 - corrected call to ProjectArray
1233 - corrected call to CutEdges
1234
1235 * mfilter/MFCosmics.[h,cc]:
1236 - small fixes to logging output
1237 - small simplification to return statement
1238 - declared CosmicsRejection const
1239
1240 * mhbase/MH.[h,cc]:
1241 - changed argument of ProjectArray from pointer to reference
1242 - added missing calcualtion of minimum
1243 - removed obsolete SetEntries
1244 - changed SetDirectory from NULL to gROOT
1245
1246
1247
1248 2004/02/12: Javier López
1249
1250 * macros/pointspreadfunction.C
1251 - added new macro that fits with a 2D gaussian the DC spot for an
1252 star. It gives you the RMS of the PSF and the center of the star,
1253 very useful for misspointing studies.
1254
1255
1256
1257 2004/02/11: Hendrik Bartko
1258
1259 * manalysis/MExtractSignal2.cc:
1260 - introduced a validity check for the set-function of the window
1261 size (even number of slices, WindowSize < NumberSlices)
1262
1263 * manalysis/MArrivalTimeCalc2.[h,cc], manalysis/Makefile,
1264 manalysis/AnalysisLinkDef.h:
1265 - new: introduced the calculation of the arrival time as the signal
1266 weighted mean of the time slices in the maximum window
1267
1268
1269
1270 2004/02/11: Markus Gaug
1271
1272 * mcalib/MCalibrationCalc.cc:
1273 - the blind pixel signal extractor introduced one week ago, counted
1274 one FADC slice too little, thus the normalization w.r.t. pedestals
1275 was wrong. Now corrected.
1276
1277 * manalysis/MExtractSignal.cc, manalysis/MExtractSignal2.cc:
1278 - when "WARNING - Lo Gain saturated" occurs, display also the
1279 corr. pixel numbers.
1280
1281 * mbase/MArray.[h,cc]:
1282 - introduced function to cut array edges with zeros.
1283 (Thomas, should we keep it there or move it to another class? )
1284
1285 * mcalib/MCalibrationCalc.[h,cc]:
1286 - new function SetBlindPixelRange to set start and end of FADC slices
1287 used for the blind pixel signal extraction.
1288 - remove fEvents which are not necessary any more after the shift
1289 to MFCosmics.
1290
1291 * mcalib/MHCalibration(Blind)Pixel.[h,cc]:
1292 - show the fourier spectrum now with axes in frequency [Hz] instead
1293 of inverted events.
1294
1295 * mcalib/MHGausEvent.[h,cc], mcalib/Makefile, mcalib/CalibLinkDef.h:
1296 - new base class for all kind of events with variables having a
1297 Gaussian distribution. Will serve as base class for the
1298 existing and new calibration histogram classes.
1299
1300
1301
1302 2004/02/11: Abelardo Moralejo
1303
1304 * mmain/MEventDisplay.cc
1305 - Switched order of MMcPedestalCopy and MCerPhotCalc in tasklist:
1306 MMcPedestalCopy must be executed earlier!
1307
1308
1309
1310 2004/02/10: Raquel de los Reyes
1311
1312 * mhist/MHPixVsTime.[h,cc]:
1313 - Added a default draw function and replaced the TGraph object
1314 by a pointer to a TGraph object.
1315
1316 * mreport/MReportTrigger.h:
1317 - Now it dereives from a MCamEvent class and implemented the
1318 GetPixContent() and DrawPixelContent() functions.
1319
1320 * maccros/CCDataCheck.C:
1321 - An update of the previous macro. New plots: subsystems status and
1322 macrocells trigger.
1323
1324
1325
1326 2004/02/10: Markus Gaug
1327
1328 * mcalib/MCalibrationCam.cc:
1329 - fixed documentation
1330
1331 * mhbase/MH.[h,cc]:
1332 - new function ProjectArray
1333
1334 * mcalib/MHCalibrationPixel.[h,cc],
1335 mcalib/MHCalibrationBlindPixel.[h,cc]:
1336 - use ProjectArray from MH to plot the projection of the fourier
1337 spectrum
1338
1339 * mfilter/MFCosmics.[h,cc], mfilter/Makefile,
1340 mfilter/FilterLinkDef.h:
1341 - new filter removing cosmics, the same as in MCalibrationCalc
1342 where it was removed now.
1343 Call: MFCosmics cosmics;
1344 MContinue cont(&cosmics);
1345 tlist.AddToList(&cont);
1346
1347 * mcalib/MCalibrationCalc.[h,cc]:
1348 - removed cosmics rejection from there
1349
1350 * macros/calibration.C, mjobs/MJCalibration.cc:
1351 - changed cosmics rejection to the filter algorithm
1352
1353
1354
1355 2004/02/09: Markus Gaug
1356
1357 * mcalib/MCalibrationBlindPix.[h,cc]:
1358 - added histogram to display the average in FADC slices of all
1359 single and double phe events
1360
1361 * mcalib/MCalibrationCalc.cc:
1362 - fill histograms of single-phe events with higain and logain
1363 sampls
1364
1365 * mcalib/MCalibrationCam.[h,cc], mcalib/MCalibrationCalc.cc,
1366 mcalib/MCalibrationConfig.h:
1367 - take all pixel areas out of MGeomPix::GetA(), remove all previous
1368 areas
1369 - calculate photon fluxes from blind pixel and PIN diode, use
1370 area only to fill the conversion factors in MCalibrationPix
1371
1372
1373 * mcalib/MJCalibration.cc:
1374 - display of number of photons for Blindpixel and PIN Diode Method
1375 changed to display of photon flux which is the actually
1376 calculated quantity
1377
1378
1379
1380 2004/02/09: Thomas Bretz
1381
1382 * mbadpixels/*:
1383 - added
1384
1385 * Makefile:
1386 - added MBadPixels
1387
1388 * manalysis/MGeomApply.cc:
1389 - fixed class description
1390
1391 * mjobs/MJCalibration.[h,cc], mjobs/MJExtractSignal.[h,cc]:
1392 - added bad pixel treatment
1393
1394 * mjobs/MJPedestal.[h,cc]:
1395 - reorganized order of functions
1396 - removed a nonsense scrren output (some BLABABLA or so)
1397
1398 * mjobs/Makefile:
1399 - added include for mbadpixels
1400
1401 * mmain/MBrowser.cc:
1402 - do not call construtor of TGTReeLBEntry if pic0=0
1403
1404
1405
1406 2004/02/09: Raquel de los Reyes
1407
1408 * mcamera/MCameraLids.h, mreport/MReportCamera.h
1409 - Added the "Get" functions to access the private data
1410 members of the class.
1411
1412
1413
1414 2004/02/09: Markus Gaug
1415
1416 * MMcCalibrationUpdate.cc, MCalibrate.cc, MCalibrationPix.cc,
1417 MCalibrationPix.h:
1418 - replace MCalibrationPix->IsChargeFitValid() by IsChargeValid()
1419 because we can calibrate with the histogram mean and RMS even
1420 if the fit is not OK. Thus, there is a question: IsFitted() and
1421 IsChargeValid(), i.e. does the charge make any sense?
1422
1423 * MCalibrationCam.cc, MCalibrationConfig.h, MCalibrationCalc.cc:
1424 - found serious bug in calculation of conversion factors for the
1425 outer pixels:
1426 GetMeanConversionBlindPixelMethod and
1427 GetMeanConversionPINDiodeMethod
1428 did not correct for the area of the outer pixel, this did only
1429 MCalibrationCam::GetPixelContent which is not used by MCalibrate
1430
1431
1432
1433 2004/02/06: Markus Gaug
1434
1435 * mgeom/MGeomCam.h
1436 - replaced in Comment of fPixRatio:
1437 "ratio between size of pixel idx and pixel 0" by
1438 "ratio between size of pixel 0 and pixel idx"
1439
1440 * manalysis/MPedestalCam.cc
1441 - catch calls to MHPedestalPixel in case that they are not filled
1442 This led previous calls to segmentation violations
1443 - remove include of MHExtractedSignalPix
1444
1445 * manalysis/MHExtractedSignalPix.[h,cc]
1446 - is everything in MHPedestalPixel, so removed it again
1447
1448 * mjobs/MJPedestal.cc
1449 - put the projections into Display()
1450 - correct the input of Display (0: pedestal, 1: pedestalerror,
1451 2: pedRMS, 3: pedRMSerror)
1452
1453 * manalysis/MHPedestalPixel.cc
1454 - increased number of bins in for charges plot
1455
1456 * mtools/MFFT.[h,cc]
1457 - possibility to have PSD directly from TArray
1458
1459 * mjobs/MJCalibration.[h,cc]
1460 - fixed displays
1461 - replaced MExtractSignal by MExtractSignal2
1462
1463 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc],
1464 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationBlindPix.[h,cc],
1465 mcalib/MCalibrationPINDiode.[h,cc], mcalib/MHCalibrationPINDiode.[h,cc]:
1466 - remove histograms MHChargevsN..., now keep TArrays directly
1467 - check for oscillations for all pixels (and you will not trust
1468 your eyes when you look at the results :-((((
1469
1470 * mcalib/MCalibrationCalc.[h,cc]
1471 - remove ArrivalTime -> go to separate class
1472 - remove BlindPixel and PIN Diode overflow, now handled directly
1473 inside the corr. classes.
1474 - remove SkipTimeFits -> go the arrival time class
1475
1476 * mcalib/MCalibrationCam.h
1477 - new getters for number of photons
1478 - removed timeslicewidth -> go the corr. time containers
1479
1480 * mcalib/MCalibrationCam.cc
1481 - removed times of GetPixelContent
1482 - added OscillationChecks in GetPixelContent
1483
1484 * manalysis/MMcCalibrationUpdate.cc
1485 - remove calpix.SkipTimeFits which is now obsolet
1486
1487 * macros/calibration.C
1488 - all previous changes now in this macro.
1489 - (NB: Thomas, du brauchst in MJCalibration nicht mehr aendern,
1490 das ging diesmal in einem Aufwasch)
1491
1492
1493
1494 2004/02/06: Thomas Bretz
1495
1496 * mhist/MHPixVsTime.[h,cc]:
1497 - changed such that you can set the name of the time container now
1498
1499 * mraw/MRawRunHeader.[h,cc]:
1500 - added GetMaxPixId()
1501
1502 * mraw/MRawEvtData.cc:
1503 - fixed wrong size calculation for fABflags
1504
1505
1506
1507 2004/02/06: Oscar Blanch
1508
1509 * mmc/MFadcDefine.h && mmc/MMcFadcHeader.cxx
1510 - We cahnged the name (and values) of the global variable
1511 MFADC_RESPONSE_AMPLITUDE to MFADC_RESPONSE_INTEGRAL
1512
1513
1514
1515 2004/02/05: Markus Gaug
1516
1517 * mcalib/MHCalibrationPixel.[h,cc]
1518 - put an NDF limit for the fit
1519 - removed all TStrings and replace them by Form(..)
1520 - Check for nan's of all returned fit values
1521
1522 * mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationCam.cc:
1523 - reshuffled HiLoGainConversion, calculation of F-Factor method,
1524 - calculation of total F-Factor of the readout.
1525
1526 * mcalib/MCalibrationCam.cc
1527 - include relative times to display with GetPixelContent
1528
1529 * mcalib/MCalibrationCalc.[h,cc]
1530 - flag to skip Hi-Lo Calibration
1531 - Hi-LO Graph not filled any more after overflow of ChargevsN
1532 - fill the blind pixel differently from the rest of pixels
1533
1534 * mcalib/MCalibrate.cc:
1535 - call to const MCalibrationPix &pix replaced by MCalibrationPix &pix
1536
1537 * manalysis/MArrivalTimeCalc.cc
1538 - default step width 100 ps.
1539 - look for half maximum (at rising edge)
1540
1541 * manalysis/MExtractSignal.[h,cc]
1542 - removed uncommented code (arrival time)
1543 - set start byte back by one like it was before TB's changes
1544 (does not affect the calculation of number of FADC slices)
1545
1546 * manalysis/MExtractSignal2.[h,cc]
1547 - removed uncommented code (arrival time)
1548
1549 * manalysis/MHPedestalPixel.[h,cc]
1550 - is now filled with total pedestals (not per slice), but results are
1551 renormalized to values per slice (this is not to screw up with the
1552 pedestal RMS and the derived uncertainties)
1553 - new function Renorm(nslices)
1554
1555 * manalysis/MPedestalCam.[h,cc]
1556 - introduced function Clone() (like proposed by TB)
1557 - call to MHPedestalPixel operator() not const any more
1558 - take out lots of uncommented code
1559 - found bug in initialization of hists. SetupFill is called in
1560 PreProcess, therefore, TObjArray is not yet enlarged there.
1561 Now, InitUseHists is called in Fill
1562 - MHPedestalPixel is now filled with total pedestals (not per slice),
1563 but results are
1564 renormalized to values per slice (this is not to screw up with the
1565 pedestal RMS and the derived uncertainties)
1566
1567 * manalysis/MPedCalcPedRun.cc
1568 - added author
1569 - split calculation of RMS into two steps to make it more clear to
1570 the user
1571
1572 * macros/calibration.C
1573 - found bug introduced two days ago, namely calculating pedestlas with
1574 MExtractSignal2 which is now fixed
1575 - Skip HiLoConversionCalibration
1576
1577
1578
1579 2004/02/05: Abelardo Moralejo
1580
1581 * macros/starmc2.C
1582 - added 3rd argument, "kFALSE", to call of MWriteRootFile::Add
1583 for both MMcEvt and MMcRunHeader since these containers are
1584 not present in real data. Name of macro is no longer adequate if
1585 we will use it for calibrated real data (to be changed if so).
1586
1587
1588
1589 2004/02/05: Sebastian Raducci
1590
1591 * mtools/MCubicSpline.[h,cc]
1592 - added
1593 - this class will take the place of the TSpline class to
1594 calculate arrival times
1595
1596 * mtools/MCubicCoeff.[h,cc]
1597 - added
1598 - this class is used by MCubicSpline to store coefficients
1599
1600 * macros/spline.C
1601 - added
1602 - test macro. Shows how to use the MCubicSpline class
1603 - it could be used to test the methods of the Spline class
1604
1605
1606
1607 2004/02/05: Thomas Bretz
1608
1609 * mmain/MBrowser.cc:
1610 - fixed a double deletion of a TGLayoutHints
1611
1612
1613
1614 2004/02/04: Markus Gaug
1615
1616 * mmain/MBrowser.cc:
1617 - corrected TGTReeLBEntry for TGTreeLBEntry
1618
1619
1620
1621 2004/02/04: Thomas Bretz
1622
1623 * manalysis/MExtractSignal2.cc:
1624 - don't allow odd numbers for the window size
1625
1626 * mfilter/MFilterList.cc:
1627 - corrected a wrong logging message
1628
1629 * mmain/MBrowser.cc:
1630 - added '/data/MAGIC' as shortcut in the combo box
1631
1632 * mraw/MRawEvtPixelIter.cc:
1633 - optimized calculation of MaxIdx
1634
1635
1636
1637 2004/02/04: Abelardo Moralejo
1638
1639 * macros/starmc2.C
1640 - removed unnecessary variables BinsHigh, BinsLow
1641
1642
1643
1644 2004/02/04: Markus Gaug
1645
1646 * manalysis/MPedestalCam.[h,cc], manalysis/MPedestalPix.[h,cc],
1647 manalysis/MPedCalcPedRun.[h,cc], manalysis/MHPedestalPixel.[h,cc],
1648 macros/calibration.C:
1649 - histograms are now filled with MFillH as proposed and coded by
1650 Thomas Bretz. Some modifications had to be done, however.
1651 - Class to hold MHPedestalPixel is still MPedestalCam
1652 - MPedCalcPedRun does nothing any more (except from what is was
1653 doing before)
1654
1655 * manalysis/MExtractSignal.cc
1656 - remove uncommented code
1657
1658 * mcalib/MCalibrationCalc.[h,cc]
1659 - modified way to handle histogram overflow: Now flags are set and
1660 ChargevsN histogram is not tried to be filled subsequently
1661
1662
1663
1664 2004/02/03: Markus Gaug
1665
1666 * manalysis/MHExtractedSignalPix.[h,cc]
1667 - added Thomas B. modified version of MHPedestalPixel. Later will
1668 remove MHPedestalPixel
1669
1670 * manalysis/MCalibrationPix.[h,cc], manalysis/MHCalibrationPixel.[h,cc],
1671 manalysis/MCalibrationCam.cc, macros/calibration.C:
1672 - now split completely absolute and relative times. Absolute
1673 times are not fitted, but their histogram mean and rms are
1674 returned.
1675
1676
1677
1678 2004/02/03: Thomas Bretz
1679
1680 * mfileio/MReadTree.cc:
1681 - fixed handling of -1 entries in AddFile: root 3.10/02 crashed
1682
1683 * manalysis/MExtractSignal.[h,cc]:
1684 - moved code to extract the signal from Process to
1685 new member function FindSignal, I left the arrival time
1686 extraction as commented-out code in the code just as a
1687 demonstration to do this very fast.
1688
1689
1690
1691 2004/02/02: Markus Gaug
1692
1693 * manalysis/MPedCalcPedRun.cc
1694 - corrected formulae in Class description
1695
1696 * mcalib/MCalibration.[h,cc], mcalib/MHCalibration.[h,cc],
1697 manalysis/MMcCalibrationUpdate.cc:
1698 - calculate relative times and absolute times. Fit only
1699 the relative ones.
1700
1701
1702
1703 2004/02/02: Abelardo Moralejo
1704
1705 * manalysis/MMcCalibrationUpdate.cc, MMcPedestalCopy.cc
1706 - removed file type check (MC or data) from PreProcess since now
1707 run headers are not yet known at that point.
1708
1709 * mcalib/MMcCalibrationCalc.cc
1710 - same as above.
1711
1712 * NEWS
1713 - updated.
1714
1715
1716
1717 2004/02/02: Thomas Bretz
1718
1719 * manalysis/MExtractSignal2.[h,cc]:
1720 - added new task which takes a given number of slices with the
1721 highest integral content as signal.
1722
1723 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1724 - added MExtractSignal2
1725
1726
1727
1728 2004/01/30: Abelardo Moralejo
1729
1730 * macros/starmc.C
1731 - changed default FADC integration range (more adequate for coming
1732 camera version).
1733
1734 * macros/mccalibrate.C, starmc2.C
1735 - added. First macro transforms input files from camera simulation
1736 into files with pixel data already calibrated in photons. The
1737 second reads in an already calibrated data file and produces an
1738 output file with Hillas parameters. Both together do the same as
1739 starmc.C, but it is convenient to have files containing
1740 calibrated pixel information.
1741
1742
1743
1744 2004/01/30: Thomas Bretz
1745
1746 * mbase/MDirIter.h:
1747 - added GetNumEntries
1748
1749 * mhist/MHEvent.cc:
1750 - added a dynamic_cast from MParContainer to MCamEvent to get the
1751 correct pointer to the correct base-class.
1752
1753 * mbase/MStatusDisplay.cc:
1754 - In EventInfo check whether gPad==0
1755
1756 * mfileio/MReadMarsFile.cc:
1757 - removed reading RunHeaders from PreProcess, this resulted
1758 in strange behaviour of writing RunHeaders
1759 - fixed consistency check for RunType accordingly
1760
1761 * mfilter/MFilterList.cc:
1762 - do not skip adding filter if only a filter with the same name
1763 exists
1764
1765 * mraw/MRawFileRead.cc:
1766 - added an output message if run header is not accessible
1767
1768 * mraw/MRawRunHeader.[h,cc]:
1769 - initialize fRunType to new enum kRTNone
1770
1771 * mfilter/MFGeomag.cc:
1772 - set fResult to kFALSE at the beginning of Process
1773 - according to this removed setting fResult=kFALSE before return
1774 - replaced some float by Float_t
1775 - added some const-qualifiers
1776 - replaced (rig<0.5/pr*R*(r2-r1)+r1) by (rig-r1)*pr<rnd
1777 with rnd = R * (r2-r1)/2 to make sure that we cannot
1778 devide by 0
1779
1780 * manalysis/MPedCalcPedRun.cc:
1781 - added some comments
1782
1783 * Makefile:
1784 - added mjobs
1785
1786 * mjobs/*:
1787 - added
1788
1789 * mbase/Makefile, mbase/BaseLinkDef.h:
1790 - added MRunIter
1791
1792 * mbase/MRunIter.[h,cc]:
1793 - added
1794
1795
1796
1797 2004/01/30: Markus Gaug
1798
1799 * manalysis/MPedestalCam.h
1800 - added function IsUsedHists()
1801
1802 * manalysis/MPedestalCam.cc
1803 - modified GetPixelContent
1804
1805 * manalysis/MPedestalCam.cc, manalysis/MPedCalcPedRun.cc:
1806 - include storage of number of used FADC slices to compare later
1807 the pedestal per slice ( and sigma per slice)
1808 - return relative differences in GetPixelContent
1809
1810 * mcalib/MCalibrationCalc.[h,cc], mcalib/MHCalibrationBlindPixel.[h,cc]:
1811 - fBlindPixelId and fPINDiodeId now like in PedestalCam
1812 - fill Blind Pixel with information about its fitted pedestal if
1813 available
1814 - initialize charges histogram with a bigger range
1815 - use pedestal information to constrain the pedestal fit ranges
1816
1817 * manalysis/MHPedestalPixel.cc
1818 - initialize charges histogram with a bigger range
1819
1820 * macros/calibration.C
1821 - SetRange of MExtractSignal to 1,14 (see emails of yesterday)
1822 - apply new GetPixelContents of MPedestalCam (more calculations
1823 and displays of errors, correction for different FADC slice
1824 number)
1825
1826 * manalysis/MExtractSignal.cc
1827 - not access to MArrivalTime any more. The same information is
1828 stored in MRawEvt->GetPixelContent(...)
1829
1830 * manalysis/MCalibrationCalc.cc
1831 - retrieve default arrival time from MRawEvt
1832
1833 * manalysis/MCalibrationBlindPix.cc, manalysis/MCalibrationPix.cc
1834 - check for NaN's in fit results
1835
1836
1837
1838 2004/01/29: Abelardo Moralejo
1839
1840 * mfileio/MWriteFile.h
1841 - added missing declaration of ReInit
1842
1843 * manalysis/MMcCalibrationUpdate.cc
1844 - added call to MCalibrationCam::SetBlindPixelMethodValid(kTRUE)
1845 to adapt to recent changes in MCalibrate.
1846
1847
1848
1849 2004/01/29: Thomas Bretz
1850
1851 * manalysis/MArrivalTime.h, manalysis/MCameraData.h,
1852 manalysis/MCerPhotEvt.h, manalysis/MExtractSignalCam.h,
1853 manalysis/MPedPhotCam.h, manalysis/MPedestalCam.h,
1854 mcalib/MCalibrationCam.h, mcamera/MCameraDC.h,
1855 mraw/MRawEvtData.h, mreflector/MRflEvtData.h:
1856 - split derivement into MParContainer and MCamEvent
1857
1858 * manalysis/MExtractSignalCam.[h,cc]:
1859 - removed obsolete MExtractSignal::ReInit
1860 - added -> to fArray
1861
1862 * mbase/MParList.h:
1863 - added a new bit kIsProcessing
1864
1865 * mbase/MTaskList.cc:
1866 - fixed the handling of kDoNotReset and the bahaviour of
1867 SetReadyToSave, such that it is possible to write all
1868 headers
1869
1870 * mfileio/MWriteFile.cc:
1871 - added ReInit which also calls CheckAndWrite
1872
1873 * mgui/MCamEvent.h:
1874 - does not derive from MParContainer anymore
1875
1876
1877
1878 2004/01/29: Markus Gaug
1879
1880 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc],
1881 mcalib/MCalibrationConfig.h
1882 - put gkCalibrationBlindPixelId and gkCalibrationPINDiodeId
1883 directly into the corresponding classes.
1884
1885
1886
1887 2004/01/29: Nicola Galante
1888
1889 * mhistmc/MHMcTriggerLvl2.[h,cc]:
1890 - In method MHMcTriggerLvl2::GetHistByName(const TString name)
1891 added string checking to return also
1892 fHistCellPseudoSize, fHistCellPseudoSizeNorm
1893 and fHistCellPseudoSizeEnergy.
1894 - Added inline functions GetHistCellPseudoSize() and
1895 GetHistCellPseudoSizeNorm().
1896
1897
1898
1899 2004/01/28: Javier Rico
1900
1901 * mcalib/MCalibrate.[h.cc]
1902 - include possibility to select the calibration method to be used
1903
1904
1905
1906 2004/01/28: Markus Gaug
1907
1908 * mcalib/MCalibrate.[h.cc]
1909 - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
1910
1911 * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
1912 - included flags to indicate if Blind Pixel Method or PIn Diode
1913 method was OK. Up to now, program stopped, if one of the two
1914 methods was chosen but not able to being executed.
1915
1916 * manalysis/MArrivalTimeCalc.cc, manalysis/MExtractSignals.cc,
1917 manalysis/MGeomApply.cc:
1918 - put all missing InitSize(npixels) into MGeomApply
1919
1920 * manalysis/MPedCalcPedRun.[h,cc], manalysis/MPedestalCam.[h,cc],
1921 manalysis/MPedestalPix.[h,cc], manalysis/MHPedestalPixel.[h,cc],
1922 manalysis/Makefile, manalysis/AnalysisLinkDef.h:
1923 - include possibility to fit the pedestals with Gaussian.
1924 - old methods are not affected.
1925 - add new method with MPedCalcPedRun::SetUseHists()
1926
1927
1928
1929 2004/01/28: Abelardo Moralejo
1930
1931 * mcalib/MMcCalibration.cc
1932 - fixed wrong variable type in call to TH1F constructor (number of
1933 bins is now integer), which resulted in a compilation warning.
1934
1935
1936
1937 2004/01/28: Thomas Bretz
1938
1939 * manalysis/MPedestalCam.cc:
1940 - removed unwanted CheckBound from operators. CheckBounds is ONLY
1941 ment for really old MC files and will be removed in the future
1942 anyhow.
1943
1944 * mcalib/MHCalibrationPixel.h:
1945 - removed obsolete include of MFFT
1946
1947 * manalysis/MCerPhotAnal.cc, manalysis/MCerPhotCalc.cc,
1948 manalysis/MPedestalCam.[h,cc]:
1949 - removed use of obsolete MPedestalCam::CheckBounds. This was
1950 a workaround for a 'bug' in very old camera files, which is not
1951 necessary anymore.
1952
1953 * manalysis/MCerPhotAnal2.[h,cc]:
1954 - replaced MPedestalCam by MPedPhotCam
1955
1956 * manalysis/MExtractSignal.cc:
1957 - some small simplification to the signal extraction
1958 - removed some obsolete variables
1959 - replaced for by while
1960 - removed obsolete casts
1961
1962 * mmain/MEventDisplay.cc:
1963 - gave names to the filters
1964 - removed adding MHCamera to fList because it was deleted twice
1965
1966 * mhist/MHCamera.cc:
1967 - fixed usage of fPainter in Paint() - title was not updated
1968 correctly
1969
1970
1971
1972 2004/01/28: Sebastian Raducci
1973
1974 * manalysis/MArrivalTime.[h,cc]:
1975 - removed all the code relative to the cluster evaluation
1976
1977
1978
1979 2004/01/27: Markus Gaug
1980
1981 * manalysis/MPedestalPix.cc:
1982 - initialize default values to 0 instead of -1.
1983
1984 * manalysis/MPedestalCam.[h,cc]:
1985 - include CheckBounds, also in operator[]
1986
1987 * mcalib/MCalibrationCam.[h,cc]:
1988 - apparently, there was a reference to InitSize(UInt_t i) instead
1989 of InitSize(Int_t i), where compiler complained, now changed
1990
1991 * mcalib/MHCalibration*, mcalib/MCalibration*:
1992 - fixed all Clear()'s, Reset()'s, direct intializers
1993
1994
1995
1996 2004/01/27: Thomas Bretz
1997
1998 * mdata/MDataChain.cc:
1999 - added '%' to supported operators
2000
2001
2002
2003 2004/01/26: Nicola Galante
2004
2005 * manalysis/MMcTriggerLvl2.[cc,h]:
2006
2007 - Defined some static constants to avoid ugly "magic numbers"
2008 in arrays: gsNCells, gsNTrigPixels,
2009 gsNPixInCell, gsNLutInCell, gsNPixInLut, fNumPixCell.
2010 - Added method
2011 MMcTriggerLvl2::GetCellCompactPixel(int cell, MGeomCam *fCam)
2012 which computes compact pixels into a given L2T macrocell.
2013 - Added method
2014 MMcTriggerLvl2::CalcBiggerCellPseudoSize()
2015 which computes fCellPseudoSize, the maximum Pseudo Size into L2T
2016 macrocells
2017 - Added method
2018 MMcTriggerLvl2::GetCellPseudoSize() const
2019 which returns fCellPseudoSize
2020 - Added method
2021 MMcTriggerLvl2::IsPixelInCell(Int_t pixel, Int_t cell),
2022 which controls whether a pixel belongs to a given L2T cell.
2023 - Added method
2024 MMcTriggerLvl2::GetMaxCell() const
2025 which returns fMaxCell, the cell with the maximum
2026 fCellPseudoSize.
2027
2028
2029
2030 2004/01/26: Markus Gaug, Michele Doro
2031
2032 * manalysis/MArrivalTime.[h,cc], manalysis/MArrivalTimeCalc.[h,cc]:
2033 - moved calculation of arrival time from MArrivalTime to
2034 MArrivalTimeCalc. MArrivalTime does not do any Process-job
2035 anymore
2036 - TSpline5 now on stack.
2037 - function to set the stepsize
2038
2039 * mcalib/MHCalibrationBlindPixel.[h,cc]:
2040 - force mu_{0} in Blind Pixel Fit to be around 0 in fKPoisson4
2041 - implement combined Polya fit and Michele's back-scattered electron
2042 fit
2043
2044 * mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationPix.cc,
2045 mcalib/MCalibrationPINDiode.cc:
2046 - combine FitChargeHiGain and FitChargeLoGain into one function
2047
2048 * macros/calibration.C
2049 - improve double gauss fit a bit
2050
2051
2052
2053 2004/01/26: Thomas Bretz
2054
2055 * mraw/MRawEvtPixelIter.[h,cc]:
2056 - removed member function GetNumPixels. For more details see mantis.
2057
2058 * manalysis/MArrivalTime.[h,cc]:
2059 - reorganized includes
2060 - fixed InitSize and ClearArray (now Reset) to fit MParContainer
2061 definition
2062 - for the moment removed usage of fPixelChecked - THIS WILL CRASH YOUR
2063 PROGRAM
2064
2065 * manalysis/MArrivalTimeCalc.[h,cc]:
2066 - reorganized includes
2067 - removed many obsolete code, exspecially copy&paste relicts!
2068 - fixed usage of InitSize
2069 - removed CleanArray. Reset() is called automatically before Process()
2070
2071 * manalysis/MExtractedSignalCam.[h,cc]:
2072 - added SetLogStream
2073 - removed obsolete include MGeomCam
2074 - replaced PrintOut by Print
2075 - added const-qualifiers to all Getters
2076 - fixed documentation
2077
2078 * manalysis/MExtractedSignalPix.[h,cc]:
2079 - replaced PrintOut by Print
2080 - fixed documentation
2081
2082 * manalysis/MEventRateCalc.cc, manalysis/MPedCalcPedRun.cc:
2083 - replaced memset by Reset()
2084
2085
2086
2087 2004/01/24: Abelardo Moralejo
2088
2089 * macros/starmcstereo.C
2090 - Added. Example of how to run the analysis chain for MC files
2091 containing simulation of stereo systems of 2 telescopes.
2092
2093 * mcalib/MCalibrate.cc
2094 - Added check that value of signal from MExtractedSignalPix is not
2095 the default (error) value. In such a case, the signal in
2096 MCerPhotEvt is now set to 0. Before, all pixels got very high
2097 values in MCerPhotEvt in case the MRawEvtData object for the
2098 event was missing in the file. This happened in MC files, in
2099 which in some circumstances an event is written without the
2100 pixel information (for instance, when running stereo simulations
2101 the pixel data is missing for non-triggered telescopes, but the
2102 event headers are present).
2103
2104
2105
2106 2004/01/23: Markus Gaug
2107
2108 * manalysis/MExtractSignal.[h,cc], manalysis/MExtractedSignalPix.[h,cc],
2109 manalysis/MArrivalTime.[h,cc], mcalib/MCalibrationBlindPix.h,
2110 mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MCalibrationPINDiode.h,
2111 mcalib/MHCalibrationPINDiode.[h,cc], mcalib/MCalibrationPix.[h,cc],
2112 mcalib/MHCalibrationPixel.[h,cc], mcalib/MCalibrationCalc.[h,cc]:
2113 - use MArrivalTime for Storage (or calculation) of time
2114 in MExtractSignal
2115 - pass from TH1I histos to TH1F for times
2116
2117 * mcalib/MCalibrationBlindPix.h, mcalib/MHCalibrationBlindPixel.[h,cc],
2118 mcalib/MCalibrationPix.[h,cc], mcalib/MHCalibrationPixel.[h,cc],
2119 mcalib/MCalibrationCalc.[h,cc]:
2120 - clean up setters
2121 - pass to bit-fields for all flags
2122
2123 * mcalib/MCalibrationCam.cc
2124 - exclude Blind Pixel from Camera display
2125 - do not fill &val when return kFALSE
2126
2127 * macros/calibration.C
2128 - include functions to exclude the blind pixel,
2129 calculation of times and quality checks
2130
2131
2132
2133 2004/01/23: Abelardo Moralejo
2134
2135 * mcalib/MCalibrate.cc, manalysis/MExtractSignal.cc
2136 - Added support (using AddSerialNumber) for stereo MC files.
2137
2138
2139
2140 2004/01/23: Thomas Bretz
2141
2142 * mbase/MAstro.cc:
2143 - Fixed calculation of MJD. In Ymd2Mjd a plus should be a minus.
2144
2145 * mreport/MReport*.[h,cc]:
2146 - changed all classes to return Int_t instead of Bool_t in
2147 InterpreteBody
2148 - changed MReportFileRead such, that a wrong line results in
2149 skipping the line instead of abort reading.
2150
2151 * manalysis/MExtractSignal.cc:
2152 - do not print information for each pixel - it's too much.
2153
2154 * mbase/MStatusDisplay.cc:
2155 - when reading a status display do not display tabs with
2156 the same name than one which is already existing.
2157
2158 * mcalib/MCalibrate.cc:
2159 - directly store pointer to pixel when setting saturation flag
2160
2161 * mcamera/MCameraDC.cc:
2162 - fixed some comments
2163
2164 * mhist/MHCamEvent.cc:
2165 - fixed a crash when no geometry was available
2166
2167 * mhist/MHCamera.[h,cc]:
2168 - removed obsolete member function SetPix
2169
2170 * mbase/MStatusDisplay.[h,cc]:
2171 - added EventInfo member function
2172 - implemented preliminary redirection of GetObjectInfo to
2173 StatusLine2 -> An own status line for this is missing
2174
2175 * manalysis/MExtractSignal.[h,cc]:
2176 - implemented StreamPrimitive
2177 - changed deafults to be static const data members
2178
2179 * manalysis/MGeomApply.[h,cc]:
2180 - implemented StreamPrimitive
2181
2182
2183
2184 2004/01/23: Abelardo Moralejo
2185
2186 * manalysis/MMcCalibrationUpdate.[h,cc]
2187 - Added check to guarantee that the FADC simulation parameters of
2188 all read files (those used for calibration and those analyzed)
2189 are the same.
2190 - Added missing support for analysis of stereo files.
2191
2192 * mcalib/MMcCalibrationCalc.cc
2193 - Removed obsolete FIXME comment.
2194 - Added missing support for analysis of stereo files.
2195
2196
2197 2004/01/23: Raquel de los Reyes
2198
2199 * macros/CCDataCheck.C
2200 - Added the temperature distribution of the optical links
2201 and the plots of the LV power supplies.
2202 * mcamera/MCameraLV.h
2203 - Added the "Get" functions to access the private data
2204 members of the class.
2205
2206
2207 2004/01/22: Abelardo Moralejo
2208
2209 * manalysis/MMcCalibrationUpdate.[h,cc]
2210 - Now ratio of high to low gain is taken from MCalibrationCam if
2211 it existed previously in the parameter list, instead of being
2212 read again from the MMcFadcHeader. Removed Setter function for
2213 fADC2PhInner, no longer necessary. Fixed error regarding the
2214 pedestal conversion to photons (did not read conversion factor
2215 from preexisting MCalibrationCam object).
2216
2217 * mcalib/MMcCalibrationCalc.cc
2218 - Changed parameters of the histogram, and also the quantity being
2219 histogrammed. Check that input data come from a noiseless camera
2220 file before proceeding to do the calibration. Introduced lower
2221 size in cut for calibration. Now rhe calibration constant is not
2222 calculated from the mean of photons/ADC counts, but from the peak
2223 of the histogram.
2224
2225 * macros/starmc.C
2226 - Introduced new scheme. Now there are two loops over two different
2227 sets of files. First loop calculates the calibration constants,
2228 second one does the analysis. Introduced comments. Now the
2229 histogram used in the light calibration is written to the output
2230 file.
2231
2232
2233
2234 2004/01/22: Thomas Bretz
2235
2236 * mcalib/MCalibrate.[h,cc], mcalib/MCalibrationCam.[h,cc],
2237 mcalib/MCalibrationBlindPix.[h,cc], mcalib/MCalibrationCalc.[h,cc],
2238 mcalib/MCalibrationPix.[h,cc], mcalib/MCalibrationPINDiode.[h,cc],
2239 mcalib/MCalibrationBlindPixel.[h,cc],
2240 mcalib/MHCalibrationPixel.[h,cc], mcalib/MMcCalibrationCalc.[h,cc],
2241 mcalib/MHCalibrationBlindPixel.[h,cc],
2242 mcalib/MHCalibrationPINDiode.[h,cc]:
2243 - cleaned up includes
2244
2245
2246
2247 2004/01/22: Raquel de los Reyes
2248
2249 * macros/CCDataCheck.C
2250 - macro to check the data from the central control (.rep files).
2251
2252
2253
2254 2004/01/22: Markus Gaug
2255
2256 * macros/calibration.C
2257 - made MStatusDisplay 3 bit smaller
2258
2259 * manalysis/MExtractSignal.cc
2260 - put fSignals->SetUsedFADCSlices into PreProcess
2261
2262 * manalysis/MPedCalcPedRun.cc
2263 - calculate PedRMS as RMS of the sums, later renormalized to units
2264 of RMS/slice (eliminate the wrong effect of odd and even slices)
2265
2266 * mcalib/MCalibrationCalc.cc
2267 - if bit SkipBlindPixelFit is set, now number of photons outside
2268 plexiglass is not intended to be calculated any more (previous
2269 bug)
2270 - exclude excluded pixels in eventloop
2271
2272 * mcalib/MHCalibrationBlindPixel.[h,cc]
2273 - move functions to pointer again (otherwise, Clone will give
2274 strange results)
2275
2276
2277
2278 2004/01/21: Abelardo Moralejo
2279
2280 * mcalib/MMcCalibrationCalc.[h,cc]
2281 - Added. First version of the task intended to calculate the
2282 conversion factors from ADC counts to photons in the MC. It has
2283 a different aim than the recently renamed class
2284 "MMcCalibrationUpdate" (which takes care that the correct
2285 pedestals and conversion factors are supplied to each event, but
2286 does not really calculate anything).
2287
2288 * mcalib/Makefile, CalibLinkDef.h
2289 - Added new class MMcCalibrationCalc
2290
2291 * manalysis/MMcCalibrationUpdate.[h,cc]
2292 - Now the container MCalibrationCam is not created or modified if
2293 it is found that one such container already exists in the
2294 Parameter list (from a previous calibration).
2295
2296
2297
2298 2004/01/21: Thomas Bretz
2299
2300 * mraw/MRawRead.cc:
2301 - restore the fake time for all runs (current time stamp in
2302 the data seems to be toally nonsense)
2303
2304 * mraw/MRawEvtHeader.cc:
2305 - removed decoding of real time (current time stamp in the data
2306 seems to be toally nonsense)
2307
2308
2309
2310 2004/01/21: Abelardo Moralejo
2311
2312 * mmc/MMcEvt.hxx
2313 - Uncommented 6 Getter functions (those regarding the number of
2314 photons surviving the different stages of simulation).
2315
2316 * manalysis/MMcCalibrationUpdate.[h,cc]
2317 - Added (see below).
2318
2319 * manalysis/MMcCalibrationCalc.[h,cc]
2320 - Removed: changed name of this class to MMcCalibrationUpdate,
2321 which is more representative of what it really does. Moved
2322 the filling of the MCalibrationCam container from Process to
2323 ReInit, since it does not change on an event by event basis.
2324 Simplified PreProcess (MCalibrationCam was searched for twice).
2325 Updated class description and comments.
2326
2327 * manalysis/Makefile, AnalysisLinkDef.h
2328 - Adapted to change above
2329
2330 * macros/starmc.C
2331 - Adapted to change above. Changed also task instance name from
2332 mccalibcalc to mccalibupdate.
2333
2334
2335
2336 2004/01/21: Raquel de los Reyes
2337
2338 * mreport/MReportCC.h, mreport/MReportTrigger.h, mcamera/MCameraHV.h
2339 and mcamera/MCameraCalibration.h
2340 - Added the "Get" functions (e.g GetStatus() for fStatus) to access
2341 the private data members of the class.
2342
2343
2344
2345 2004/01/20: Thomas Hengstebeck
2346
2347 * mranforest/MRanForestCalc.[h,cc]
2348 - Added member functions Grow (training of RF) and Fill (reading in
2349 trained forest from file) which simplify macros.
2350 One just needs to call them instead of using MRanForestGrow and
2351 MRanForestFill (and the related training and fill loops) in a
2352 macro.
2353
2354
2355
2356 2004/01/20: Abelardo moralejo
2357
2358 * manalysis/MMcCalibrationCalc.cc
2359 - removed call to MCalibrationPix::SetPedestal, which was not
2360 needed.
2361
2362
2363
2364 2004/01/20: Thomas Bretz
2365
2366 * Makefile:
2367 - replaced 'make' by '$(MAKE)'
2368
2369 * Makefile.rules:
2370 - added Makefile itself to dependencies
2371
2372 * mbase/MTask.cc:
2373 - added comment about ReInit
2374
2375 * mhbase/MH.cc:
2376 - do not clear pad in DrawClone if 'same' option given
2377
2378 * mhist/MHVsTime.cc:
2379 - evaluate 'same' option
2380
2381 * mfileio/MReadCurrents.[h,cc]:
2382 - obsolete, removed
2383
2384 * manalysis/MCerPhotEvt.cc, manalysis/MCerPhotPix.cc:
2385 - added some comments
2386
2387
2388
2389 2004/01/20: Abelardo moralejo
2390
2391 * mcalib/MHCalibrationPINDiode.cc
2392 - Added call to SetDirecory(0) for histograms fHErrCharge,
2393 fHPCharge, fHPTime.
2394
2395 * manalysis/MCerPhotPix.h:
2396 - Changed position of declaration of fIsSaturated to be the last
2397 private variable. Otherwise, since in the constructor it is
2398 initialized in the last place, a warning is displayed upon
2399 compilation in some systems.
2400
2401
2402
2403 2004/01/20: Markus Gaug
2404 * mcalib/Makefile, manalysis/Makefile:
2405 - include directory ../mtools
2406
2407 * mtools/MFFT.[h,cc]
2408 - class inherits from TObject now
2409
2410
2411
2412 2004/01/19: Markus Gaug
2413
2414 * mcalib/MHCalibrationBlindPixel.[h,cc]
2415 - fixed a bug in fFitLegend due to which program crashed by calls
2416 to DrawClone
2417 - Modified way to change the fit function
2418
2419 * mcalib/MHCalibrationPixel.[h,cc]
2420 - reordered function calls
2421 - removed SetupFill
2422
2423 * mcalib/MHCalibrationPINDiode.h
2424 - reordered function calls
2425
2426 * mcalib/MCalibrationPix.[h,cc]
2427 - limits to define fFitValid now as variables in class
2428
2429 * mcalib/MCalibrationCam.[h,cc]
2430 - reordered function calls
2431 - incorporate option to exclude pixels
2432
2433 * mcalib/MCalibrationBlindPix.h
2434 - Modified way to change the fit function
2435
2436 * mcalib/MCalibrationCalc.[h,cc]
2437 - Modified way to change the fit function
2438 - incorporate option to exclude pixels from configuration file
2439
2440 * macros/calibration.C
2441 - Modified way to change the fit function
2442 - incorporate option to exclude pixels from configuration file
2443
2444
2445
2446 2004/01/19: Javier Rico
2447
2448 * manalysis/MPedCalcPedRun.cc, manalysis/MPedPhotCalc.cc
2449 - Added documentation of member functions
2450
2451
2452
2453 2004/01/19: Abelardo Moralejo
2454
2455 * manalysis/MCerPhotPix.[h,cc]
2456 - Added fIsSaturated to flag whether low gain of the pixel is
2457 saturated. Added corresponding getter and setter functions.
2458 Updated ClassDef to version 2.
2459
2460 * mcalib/MCalibrate.cc
2461 - Set the new saturation flag of MCerPhotPix to kTRUE if at least
2462 one low gain FADC slice is saturated.
2463
2464 * mimage/MNewImagePar.[h,cc]
2465 - Added new member variable fNumSaturatedPixels to count how many
2466 pixels were saturated. Updated ClassDef to version 2.
2467
2468
2469
2470 2004/01/19: Thomas Bretz
2471
2472 * manalysis/MPedPhotCalc.[cc,h]:
2473 - fixed order of includes
2474 - removed obsolete forward declarations
2475 - removed obsolete data member fNumPixels (stored already twice in
2476 the two TArrayF)
2477 - fixed some small bugs in the documentation
2478
2479 * manalysis/MPedCalcPedRun.cc:
2480 - updated my eMail address
2481
2482
2483
2484 2004/01/19: Javier Rico
2485
2486 * macros/dohtml.C, NEWS
2487 - include some missing info
2488
2489
2490
2491 2004/01/19: Abelardo Moralejo
2492
2493 * manalysis/MExtractedSignalPix.h
2494 - added GetNumLoGainSaturated()
2495
2496
2497
2498 2004/01/19: Markus Gaug
2499
2500 * macros/dohtml.C
2501 - include calibration.C
2502
2503 * manalysis/MExtractSignal.cc
2504 - warning of logain saturation now only once per event (out of loop)
2505
2506 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.[h,cc]
2507 - new Flag fExcluded to indicate if pixel has been excluded from
2508 further analysis
2509
2510
2511
2512 2004/01/16: Javier Rico & Pepe Flix
2513
2514 * manalysis/MPedPhotCalc.[cc,h]
2515 - added
2516 - new class for the evaluation of pedestals in units of photons
2517 using the extracted signal from pedestal runs and calibration
2518 constants defined in MCalibrate
2519
2520 * manalysis/AnalysisLinkDef.h, manalysis/Makefile
2521 - added entries for MPedPhotCalc
2522
2523 * macros/pedphotcalc.C
2524 - added
2525 - example on how to use MPedPhotCalc task
2526
2527
2528
2529 2004/01/16: Markus Gaug
2530
2531 * mcalib/MCalibrationFits.h
2532 - removed and incorporated in MHCalibrationBlindPixel.h
2533
2534 * mcalib/MHCalibrationBlindPixel.[h,cc], mcalib/MHCalibrationConfig.h,
2535 mcalib/MCalibrationBlindPix.h:
2536 - incorporate Fit functions
2537 - fixed a bug due to which DrawClone crashed when class was used
2538 in a compiled macro
2539
2540 * mcalib/MCalibrationCalc.cc, mcalib/MCalibrationPix.cc,
2541 mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationPINDiode.cc,
2542 mcalib/MCalibrationCam.cc, mcalib/MHCalibrationBlindPixel.cc,
2543 mcalib/MHCalibrationPixel.cc:
2544 - fixed the warns and errs in fLog's
2545
2546
2547
2548 2004/01/16: Abelardo Moralejo
2549
2550 * manalysis/MMcCalibrationCalc.cc
2551 - TMath::Max() is no longer used because it did not compile in some
2552 systems for unkown reasons. I replaced it by a safer (and may be
2553 slower) code.
2554 - Added calpix.SetFitValid();
2555
2556 * mhist/MHEvent.cc
2557 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
2558 be 1 in case of RMS:
2559 case kEvtPedestalRMS:
2560 fHist->SetCamContent(*(MCamEvent*)par, 1);
2561
2562
2563
2564 2004/01/15: Abelardo Moralejo
2565
2566 * macros/starmc.C
2567 - Added. Version of star showing new chain to get Hillas
2568 parameters (with Size calibrated in photons) from MC files.
2569
2570
2571
2572 2004/01/15: Javier Rico
2573
2574 * manalysis/MPedCalcPedRun.[h,cc]
2575 - optimize the running time
2576 - add (some) documentation
2577 - correct treatment for the case of several input files
2578
2579 * macros/pedvsevent.C
2580 - added
2581 - draw pedestal mean and rms vs event# for input pixel# and run
2582 file, and compares them to the global pedestal mean and rms
2583
2584
2585
2586 2004/01/15: Raquel de los Reyes
2587
2588 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
2589 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
2590 functions to compute the estimation of the error of the
2591 mean. It can be done calling to the function
2592 MCamEvent::SetBit(MHCamera::kVariance) in the macro
2593
2594
2595
2596 2004/01/15: Markus Gaug
2597
2598 * mhist/MHCamera.[h,cc]
2599 - incorporate Thomas's changes
2600 - replace void CreateProjection() by TH1D *Projection(const char*)
2601
2602 * macros/calibration.C
2603 - replace MHCamera->Draw("proj") by MHCamera->Projection()
2604 - produce better fits to the projection
2605
2606 * manalysis/MSimulatedAnnealing.[h,cc],
2607 mhist/MHSimulatedAnnealing.[h,cc]:
2608 - moved to directory mtools
2609 - MSimulatedAnnealing now inherits from TObject
2610
2611 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
2612 mhist/Makefile, mhist/HistLinkDef.h:
2613 - removed MSimulatedAnnealing
2614 - removed MHSimulatedAnnealing
2615
2616 * mtools/Makefile, mtools/AnalysisLinkDef.h:
2617 - added MSimulatedAnnealing
2618 - added MHSimulatedAnnealing
2619
2620
2621
2622 2004/01/15: Thomas Bretz
2623
2624 * manalysis/AnalysisLinkDef.h:
2625 - removed MCurrents
2626
2627 * mhist/MHCamera.[h,cc]:
2628 - added member function Projection
2629 - removed fYproj
2630
2631 * mreport/MReport*.*:
2632 - added more comments
2633
2634
2635
2636 2004/01/14: Markus Gaug
2637
2638 * mtools/MFFT.[h,cc]
2639 - new class to perform Fast Fourier Transforms
2640
2641 * mtools/Makefile
2642 * mtools/ToolsLinkDef.h
2643 - include MFFT
2644
2645 * manalysis/MExtractedSignalCam.h
2646 - removed variables fNumHiGainSamples and fNumLoGainSamples
2647 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
2648
2649 * manalysis/MExtractSignal.cc
2650 - updated call to SetUsedFADCSlices
2651
2652
2653
2654 2004/01/14: Abelardo Moralejo
2655
2656 * manalysis/MMcCalibrationCalc.cc:
2657 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
2658 This can happen (depending on camera simulation parameters), and
2659 rms = 0 later resulted in the pixel being eliminated in the
2660 image cleaning.
2661
2662
2663
2664 2004/01/14: Thomas Bretz
2665
2666 * Makefile:
2667 - replaced old style Makefile.depend by directory specific
2668 dependancy files
2669
2670 * Makefile.rules:
2671 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
2672 - added rule to make dependency files
2673 - added rule to remove dependancy files.
2674 - added rmdep as prerequisite to clean
2675 - include dependency file
2676
2677 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
2678 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
2679 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
2680 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
2681 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
2682 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
2683 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
2684 mtools/Makefile:
2685 - removed clean-rule, use the one in Makefile.rules instead
2686
2687 * mreport/Makefile, mreport/ReportLinkDef.h:
2688 - added MReportHelp
2689
2690 * mreport/MReportFileRead.cc:
2691 - moved code from MReportHelp to new file
2692 - removed usage of MReport class completely
2693
2694 * mfilter/MFGeomag.[h,cc]:
2695 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
2696 - changed the second loop from 0->1151 to 1152->2304
2697 - removed dummy arrays used for reading
2698 - output filename in case of 'file not found'
2699 - removed obsolete data members
2700 - removed obsolete Init function
2701 - removed forbidden underscore from member variable
2702 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
2703
2704 * mbase/MStatusDisplay.[h,cc]:
2705 - added new member function Open
2706 - added new menu entry kFileOpen
2707 - changed UpdatePSheader algorithm (the old one was much too slow)
2708
2709 * manalysis/MCurrents.[h,cc]:
2710 - removed (old outdated)
2711
2712 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2713 - removed MCurrents
2714
2715
2716
2717 2004/01/14: Wolfgang Wittek
2718
2719 * macros/ONOFFAnalysis.C:
2720 - current version
2721
2722 * mhist/MHSigmaTheta.[h,cc]:
2723 - replace MPedestalCam by MPedPhotCam
2724
2725 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
2726 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
2727 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
2728 - replace MPedestalCam by MPedPhotCam
2729
2730 * manalysis/MPedPhotPix.[h,cc]
2731 - uncomment SetRms()
2732
2733
2734
2735 2004/01/13: Markus Gaug
2736
2737 * manalysis/MExtractSignal.h
2738 - seems that the reduced light intensity of the CT1 Pulser
2739 results in broader pulses -> Set Default time slices to [3,10]
2740
2741 * mhist/MHCamera.cc
2742 - make Stat Window in option 'proj' bigger
2743 - add comment line at beginning of Draw()
2744
2745 * mcalib/MHCalibrationBlindPixel.[h.cc]
2746 - add Function DrawClone()
2747 - fix bug in calculation of integral (GetIntegral("width"))
2748 - restrict parameters tighter
2749 - declare fit as not valid, if less than 100 events
2750 in single photo-electron peak
2751
2752 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
2753 - fit now with fixed normalization
2754
2755 * mcalib/MHCalibrationPixel.[h.cc]
2756 - new function IsEmpty()
2757 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
2758
2759 * mcalib/MCalibrationPix.[h.cc]
2760 - F-Factor corrected and added error
2761 - Histograms not fitted if they are empty
2762 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
2763
2764 * mcalib/MCalibrationCam.cc
2765 - Square Root of Reduced Sigmas not taken, if they are < 0.
2766 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
2767
2768 * mcalib/MCalibrationCalc.cc
2769 - Blind Pixel is not additionally treated as normal pixel any more
2770 - Blind Pixel Draw replaced by DrawClone
2771
2772 * macros/calibration.C
2773 - took out some unused code
2774 - some default axis labelling corrected
2775
2776
2777
2778 2004/01/13: Abelardo Moralejo
2779
2780 * manalysis/MMcPedestalCopy.cc
2781 - added check of whether input file is a MC file before executing
2782 the PreProcess.
2783
2784
2785
2786 2004/01/13: Wolfgang Wittek
2787
2788 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
2789 - change macro to handle also MC events with finite sigmabar
2790
2791 * manalysis/MPadOn.[h,cc]:
2792 - deleted, is replaced by MPad
2793
2794 * manalysis/MPadOnOFF.[h,cc]:
2795 - deleted, is replaced by MPad
2796
2797 * manalysis/MPad.[h,cc]:
2798 - new class, replacing MPadON and MPadONOFF
2799 - handle also MC events with finite sigmabar
2800
2801 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
2802 - replace MPadON and MPadONOFF by MPad
2803
2804
2805
2806 2004/01/13: Thomas Bretz
2807
2808 * mraw/MRawRunHeader.[h,cc]:
2809 - implemented new member function GetRunTypeStr
2810
2811 * Changelog.03:
2812 - added (contains entries of 2003)
2813
2814 * Changelog:
2815 - removed entries of 2003
2816
2817 * mfilter/MFGeomag.cc:
2818 - simplified open/close of input files
2819
2820 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
2821 - added some comments
2822 - added new member function GetError
2823
2824 * Makefile:
2825 - updated 'make dox' output for convinience
2826
2827 * macros/dohtml.C:
2828 - do not print Info's
2829 - added mcamera
2830 - added mpointing
2831 - added mreport
2832
2833 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
2834 - removed some obsolete comments (these comments confused THtml)
2835
2836 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
2837 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
2838 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
2839 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
2840 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
2841 - replaced MPedestalCam by MPedPhotCam
2842 - removed some obsolete includes
2843
2844 * mbase/BaseLinkDef.h, mbase/Makefile:
2845 - added MLogPlugin
2846 - added MLogHtml
2847
2848 * mbase/MLog.[h,cc]:
2849 - added use of plugins
2850
2851 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
2852 - added
2853
2854 * mbase/MStatusDisplay.[h,cc]:
2855 - added a Save-As dialog
2856
2857
2858
2859 2004/01/12: Thomas Bretz
2860
2861 * macros/rootlogon.C:
2862 - added mcamera to include path
2863 - added mpointing to include path
2864 - added mreport to include path
2865
2866 * mbase/MLog.cc:
2867 - updated my eMail address
2868
2869 * mbase/MParContainer.h:
2870 - added Read member function
2871
2872 * mbase/MStatusDisplay.[h,cc]:
2873 - changed size of ps-paper
2874 - added a user defined bottom line to the ps-files
2875 - added name (currently unused)
2876 - added title (used as possible bottom line in ps-file)
2877
2878 * mraw/MRawRunHeader.cc:
2879 - added some comments
2880
2881 * status.cc:
2882 - set name of input as bottom line of status display
2883
2884
2885
2886 2004/01/12: Abelardo Moralejo
2887
2888 * mimage/MStereoPar.cc
2889 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
2890 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
2891 Bug had no effect unless scale1 != scale2 (-> telescopes of
2892 different size).
2893
2894
2895
2896 2004/01/12: Markus Gaug
2897
2898 * manalysis/MExtractSignal.[h,cc]
2899 - take out some uncommented code
2900 - replace logainshift by two independent variables:
2901 logainfirst, logainlast
2902 - because in most data, maximum occurs in slice 4, shift default
2903 from slices 4-9 to slices 3-8.
2904
2905 * manalysis/MExtractedSignalPix.[h,cc]
2906 - took out some uncommented code
2907 - new initializers: instead of -1. now 99999.9
2908
2909
2910
2911 2004/01/09: Markus Gaug
2912
2913 * mcalib/MCalibrationCam.[h,cc]
2914 - take out 1-dim histos because we can use
2915 the projections in MHCamera (s.b.)
2916
2917 * mcalib/MHCalibrationBlindPixel.h
2918 - make the fit by default quiet
2919
2920 * mcalib/MHCalibrationPixel.[h,cc]
2921 * mcalib/MCalibrationPix.[h,cc]
2922 - Ranges of time slices stored independently for HiGain and LoGain
2923 in order to allow consecutive checks
2924
2925 * mhist/MHCamera.[h.cc]
2926 - add the possibility to call a Draw("proj") which will
2927 draw a Y-Projection of the histogram
2928
2929 * macros/calibration.C
2930 - apply the drawing of the projections and fit them
2931
2932 * mcalib/MCalibrationCalc.cc
2933 - catch the possibility of a calibration file,
2934 unintendedly being a pedestal or cosmic file.
2935 Program now exits with an error before doing the fits
2936
2937 * mcalib/MCalibrationPix.[h,cc]
2938 - fixed a bug in calculation of fFitValid.
2939 before, a call to IsFitValid() always returned false
2940
2941
2942
2943 2004/01/09: Javier L¢pez
2944
2945 * macros/bootcampstandardanalysis.C
2946 - added new macro that holds the main scheleton discussed in the
2947 december bootcamp in Wuerzburg. It runs first over a pedestal
2948 run, then over a calibration run, again over the pedestal run
2949 to compute de pedestal in number of photons and finally over a
2950 data run to calibrate the data.
2951
2952
2953
2954 2004/01/06: Sebastian Raducci
2955
2956 * manalysis/MArrivalTime.[h,cc]
2957 - added new method to calculate photon arrival times. It uses the
2958 TSpline5 Root Class to interpolate the Fadc Slices. The time is
2959 the abscissa value of the absolute maximum of the interpolation
2960 - added new method to find clusters with similar arrival times.
2961 For now it's a preliminary version. It simply search for adiacent
2962 pixels having the same arrival time (color).
2963
2964 * manalysis/MArrivalTimeCalc.[h,cc]
2965 - modified the Process() method according to the changes in the
2966 Arrival Time Cointainer
2967
2968 * mmain/MEventDisplay.cc
2969 - added new tab in the camera event display to show the arrival
2970 time. This arrival time is calculated with the spline method
2971 - the old Arrival Time pad now it's called Max Slice Idx, because
2972 it's only the index of the slice with the max content.
2973
2974 * mhist/MHEvent.[h,cc]
2975 - added new fType in te enumeration to handle the arrival time
2976 histos
Note: See TracBrowser for help on using the repository browser.