source: trunk/MagicSoft/Mars/Changelog@ 3414

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