source: trunk/MagicSoft/Mars/Changelog@ 3402

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