source: trunk/MagicSoft/Mars/Changelog@ 3396

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