source: trunk/MagicSoft/Mars/Changelog@ 3416

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