source: trunk/MagicSoft/Mars/Changelog@ 3390

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