source: trunk/MagicSoft/Mars/Changelog@ 3394

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