source: trunk/MagicSoft/Mars/Changelog@ 3413

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