source: trunk/MagicSoft/Mars/Changelog@ 3382

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