source: trunk/MagicSoft/Mars/Changelog@ 3392

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