source: trunk/MagicSoft/Mars/Changelog@ 5802

Last change on this file since 5802 was 5802, checked in by gaug, 20 years ago
*** empty log message ***
File size: 14.3 KB
Line 
1
2Please do not write behind the end of line tag so that it is possible
3to send a Changelog file to a line printer directly. Thanks.
4
5For your entries please follow EXACTLY this style:
6
7_yyyy/mm/dd:_[Your Name]
8_
9___*_filename:
10_____-_description
11_
12___*_filename2, filename3:
13_____-_description
14_
15_
16_
17
18While an underscore is a placeholder for a white-space or an empty line.
19
20
21 -*-*- END OF LINE -*-*-
22 2005/01/11 Markus Gaug
23
24 * mbadpixels/MBadPixelsPix.cc
25 - updated documentation
26
27 * mcalib/MCalibrationChargeCalc.cc
28 - make pixels with deviating number of phes unreliable instead of
29 unsuitable (this was already thought so, but missed to modify
30 at one place).
31
32 * mhcalib/MHCalibrationCam.[h,cc]
33 - add possible flag 'kInterlaced': default: kFALSE (like before)
34 - added pointer to MRawEvtHeader to deny cosmics events in case
35 of 'interlaced' flag is set. No changes for 'normal' calibration
36
37
38 2005/01/10 Benjamin Riegel
39
40 * mreport/MReportStarguider.cc, mreport/MReportStarguider.h
41 - added two classes for implementing starguider-data
42
43 * mreport/ReportLinkDef.h
44 - added class MReportStarguider to be linked:
45 #pragma link C++ class MReportStarguider+;
46
47 * mreport/Makefile
48 - added file MReportStarguider.cc
49
50 * merpp.cc
51 - added two containers ( MReportStarguider, MTimeStarguider ) and
52 added MReportStarguider to the list:
53 w->AddContainer("MReportStarguider", "Starguider");
54 w->AddContainer("MTimeStarguider", "Starguider");
55 r->AddToList("MReportStarguider");
56
57
58
59 2005/01/10 Markus Gaug
60
61 * mcalib/MCalibColorSet.cc
62 - return kFALSE for CL-run instead of kTRUE
63
64 * mcalib/MCalibrationChargeCalc.cc
65 - stop program in case that multiple colours are found in same file
66 without intensity calibration
67
68 * mbadpixels/MBadPixelsPix.h
69 - added two new possible UnCalibrated_t flags for the hi-lo
70 calibration
71
72 * macros/calibration.C
73 - add the calls to:
74 MArray::Class()->IgnoreTObjectStreamer();
75 MParContainer::Class()->IgnoreTObjectStreamer();
76 in main.
77
78 * msignal/MExtractor.h
79 - added Getter for fOffsetLoGain (was still missing)
80
81 * mhcalib/MHCalibrationChargeCam.[h,cc]
82 - remove pixels with histogram overflow only if their percentage
83 passes a certain limit (default: 0.5%). Before, every overflow
84 lead to an unsuitable pixel.
85
86 * msignal/MExtractTimeAndChargeDigitalFilter.[h,cc]
87 - implemented changes suggested by T.B. to speed up calculations
88 - take fNameWeightsFile into the streamer, otherwise the Clone()
89 will always create an extractor with cosmic's weights.
90 - set fOffsetLoGain to a slighly higher value. The DF seems to
91 have a different offset since it uses different pulse shapes
92 and thus sightly different time definitions.
93
94
95 2005/01/10 Thomas Bretz
96
97 * mhvstime/MHVsTime.cc:
98 - fixed a compiler error for gcc 2.95.3, see Mantis bug # 157
99
100 * callisto.cc:
101 - changed such, that the calculated pedestal is not random
102 anymore
103 - added code to calculate the pedestal also with randomization,
104 but this code is for the moment commented out.
105
106 * callisto.rc:
107 - fixed naming of pedestal calculation
108
109 * mbadpixels/MBadPixelsCalc.cc:
110 - added a second check which compares the pedestal rms with
111 the variance of the pedestal rms in the same sector
112
113 * mjobs/MJCalibrateSignal.[h,cc]:
114 - changed to calculate the pedestal from extractor without
115 randomization
116 - added code to calculate the pedestal also with randomization,
117 but this code is for the moment commented out.
118
119 * mjobs/MJCalibration.cc:
120 - made sure that pedcam always has the correct name
121 (FIXME? Print a warning if it has the wrong name)
122
123 * mjobs/MJPedestal.[h,cc]:
124 - changed such, that it allows the calculation of pedestals
125 in three different ways (fundamental, fromextractor,
126 fromextractorrndm)
127 - therefor removed SetExtractorResolution and added
128 + void SetExtractionFundamental()
129 + void SetExtractionWithExtractorRndm()
130 + void SetExtractionWithExtractor()
131
132 * mjobs/MJStar.cc:
133 - changed/fixed the input name of the MPedPhotCam used in the
134 image cleaning
135
136 * mraw/MRawFileRead.[h,cc]:
137 - changed return type of OpenNextFile
138 - in some cases return kERROR in OpenNextFile to abort the Processing
139 with an error
140
141 * mraw/MRawRunHeader.cc:
142 - call a wrong file format version ERROR now
143
144 * mhflux/MAlphaFitter.[h,cc]:
145 - make sure that resetted values are returned if fit failed
146 - set default scaling too kOffRegion
147
148 * mhflux/MHAlpha.cc:
149 - some small fixes to handling of MHAlphaOff
150
151 * mhflux/MHFalseSource.[h,cc]:
152 - implemented possible usage of MHFalsSourceOff for On-Off-Analysis
153 - updated display accordingly
154 - updated fit accordingly
155 - removed catalog temporarily from plots until I found the
156 reason for the strange crashes
157
158 * mbadpixels/MBadPixelCalc.[h,cc]:
159 - implemented the possibility to check the pedestal rms against the
160 variance of the pedstal rms, too. The option is curretly switched
161 off.
162 - enahanced informal output in PreProcess
163
164 * mbase/MTaskList.cc:
165 - a little change to some output
166
167
168
169 2005/01/10 Wolfgang Wittek
170
171 * mfbase/MFEventSelector2.cc
172 - check whether filter exists before calling
173 filter->CallPreProcess(parlist)
174
175
176
177 2005/01/08 Markus Gaug
178
179 * mhcalib/MHCalibrationHiLoCam.[h,cc]
180 * mcalib/MCalibrationHiLoCam.[h,cc]
181 * mcalib/MCalibrationHiLoPix.[h,cc]
182 * mcalib/MIntensityCalibrationHiLoCam.[h,cc]
183 * mhcalib/Makefile, mcalib/Makefile, mhcalib/HCalibLinkDef.h,
184 mcalib/CalibLinkDef.h
185 - new classes for calibration of conversion high-gain vs. low-gain
186
187 * msignal/MExtractedSignalPix.[h,cc]
188 - added data member fChisquare, set to -1. by Clear() and Reset()
189 - raised version number by 1
190
191 * msignal/MExtractedSignalCam.[h,cc]
192 - added data member fNdf, set to -1 by default
193 - new function: GetProb(const Int_t pixidx) to be called to
194 calculate the joint probability of Chisquare of pixel "pixidx"
195 and fNdf
196 - added documentation of data members
197 - raised version number by 1
198
199 * mhcalib/MHCalibrationChargeCam.cc
200 - strengthened default histogram limits a bit, should accelerate
201 the calibration by 20%.
202
203 * mjobs/MJCalibrateSignalFromOutside.cc
204 - fixed two lines to compile MCalibrateData with the recent changes
205 by TB
206
207 * msignal/MExtractTimeAndChargeDigitalFilter.cc
208 - fixed two bugs introduced yesterday by TB.
209
210 * msignal/MExtractTimeAndChargeSpline.cc
211 * msignal/MExtractTimeAndChargeSlidingWindow.cc
212 - adopt part of TB's speed accelerations into these classes
213
214 * msignal/MExtractTimeAndCharge.cc
215 - fix the low-gain extraction window for the case that the high-gain
216 is saturated. Was skipped so far.
217
218
219
220 2005/01/07 Markus Gaug
221
222 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
223 - catch the case that more than 90% of the pixels have saturated
224 signals and fix the extraction window from the occurrance of
225 saturation, then. Important for high-intensity calibration events.
226
227
228 * msignal/MExtractor.cc
229 * msignal/MExtractTime.cc
230 * msignal/MExtractTimeAndCharge.cc
231 - added some documentation
232
233 * msignal/MExtractTime.[h,cc]
234 - moved the empty function FindTimeHiGain() and FindTimeLoGain() to
235 the header-file.
236
237
238
239
240 2005/01/07 Abelardo Moralejo
241
242 * mbase/MLog.h
243 - Added #include "TSystem.h", otherwise gSystem is not recognized
244 in Mac OSX.
245
246 * manalysis/MMakePadHistograms.cc
247 - Changed badcalc.SetNamePedPhotContainer to
248 badcalc.SetNamePedPhotCam
249
250
251
252 2005/01/07 Thomas Bretz
253
254 * mbadpixels/MBadPixelsCalc.[h,cc], macros/ONOFFAnalaysis.C:
255 - replaced PedPhotContainer by PedPhotCam for consistency
256
257 * mbase/MLog.[h,cc]:
258 - return *this in Seperator()
259
260 * mbase/MPrint.[h,cc]:
261 - use new separator manipulator in PreProcess
262 - fixed a type: separator instead of seperator
263
264 * mfileio/MReadTree.[h,cc]:
265 - added a check for branch->IsAutoDelete() in Notify()
266
267 * mpedestal/MExtractPedestal.[h,cc]:
268 - added new option 'fRandomCalculation' be used to switch on-/off-
269 randomization in extractors, the default should be like before
270 - added Process() calling Calc()
271
272 * mpedestal/MPedCalcFromLoGain.[h,cc], mpedestal/MPedCalcPedRun.[h,cc]:
273 - renamed Process() to Calc()
274
275 * Makefile:
276 - removed macros/calibration.C, which seems to have been
277 unintantionally introduced.
278
279 * manalysis/Makefile:
280 - removed unintantionally introduced wrong include
281
282 * msignal/MExtractTimeAndChargeDigitalFilter.cc:
283 - a small acceleration discussed with Hendrik by replacing a
284 counter in a loop by pointer arithmetics
285
286 * mraw/MRawEvtPixelIter.cc:
287 - fixed a bug in GetMaxIdxHiLoGain which caused the loop to
288 read one byte behind the end of the array
289 - fixed HasLoGain() which really did weired things, means accessing
290 sometimes memory somewhere. This could theoretically result
291 in assigning the wrong lo-gains to the wrong pixels.
292
293 * mtrigger/MTriggerPattern.[h,cc], mtrigger/MTriggerPatternDecode.[h,cc],
294 mtrigger/MFTriggerPattern.[h,cc]:
295 - added
296
297 * mtrigger/Makefile, mtrigger/TriggerLinkDef.h:
298 - added MTriggerPattern, MTriggerPatternDecode and MFTriggerPattern
299
300 * manalysis/MEnergyEstParam.h:
301 - added a new function SetVariables calling SetCoeff
302
303 * mcalib/MCalibrateData.[h,cc]:
304 - removed data members for container names
305 - added new lists for container names
306 - allow to calibrate more than one pedestal container at the same
307 time
308
309 * mjobs/MJCalibrateSignal.cc:
310 - changed accordingly
311
312
313
314 2005/01/05 Thomas Bretz
315
316 * mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationChargeCalc.cc,
317 mhcalib/MHCalibrationRelTimeCam.cc:
318 - made some output lines fit into convinience window of 80 col
319
320 * mhist/MHCamEvent.cc:
321 - make sure that x-axis has correct title
322
323 * msignal/MArrivalTimePix.cc:
324 - init error to -1 which is a obviously non valid value
325 - fixed IsValid() which gave wrong results
326
327 * msignal/MExtractTimeAndCharge.cc, msignal/MExtractedSignalPix.cc:
328 - made sure that LoGain is flagged non-valid if no lo-gain exists
329 - push time back at the edge of the allowed limits if outside
330
331 * mbase/MGList.[h,cc]:
332 - introduced new functions Delete and DeletePictures
333 - SetBit(kMustCleanup) in constructor. Otherwise it is not
334 correctly removed from ListOfCleanups
335
336 * mbase/MLog.cc:
337 - SetBit(kMustCleanup) if adding a plugin to make sure it is cleaned
338 from the list
339
340 * mbase/MParContainer.[h,cc]:
341 - replaced return type of GetDescriptor by TString. The old version
342 was terribly wrong! The returned memory wasn't removed as soon
343 as the function returned.
344
345 * mbase/MStatusDisplay.[h,cc]:
346 - for security (thread safty) replaced all Form() by MString::Form()
347 - implemented a more secure scheme of Closing (Clone()) this was
348 a hint given by valgrind
349 - set kMustCleanup for all new object in ClonePad not only kCanDelete
350 - fixed some lines in pulldown-menus
351 - add TPads to ListOfCleanups in ClonePad (workaround!)
352
353 * mbase/MString.[h,cc]:
354 - implemented a new static Form() function returning a copy of
355 the result
356
357 * mbase/MTask.[h,cc]:
358 - replaced return type of GetDescriptor by TString. The old version
359 was terribly wrong! The returned memory wasn't removed as soon
360 as the function returned.
361 - Made GetDescriptor thread safe using MString::Form
362
363 * mfileio/MWriteRootFile.cc:
364 - Use GetDescriptor().Data() when using any kind of printf function
365
366 * mhbase/MFillH.cc:
367 - replaced string concatenation in all constructors by a Form
368 (also suggested by valgrind)
369
370 * mhcalib/MHCalibrationRelTimeCam.cc:
371 - made some output fit into 80col boundary
372
373
374
375
376 2005/01/03 Thomas Bretz (HAPPY NEW YEAR)
377
378 * mfht:
379 - added new directory for hexagonal fourier transformation
380
381 * mfht/HftIncl.h, mhft/HftLinkDef.h, mhft/MGeomCamMagicXT.[h,cc],
382 mhft/MGeomCamMagicEnhance.[h,cc], mhft/MHexgaonalFT.[h,cc],
383 mhft/MHexagonalFreqSpace.[h,cc], mhft/MHexagonalFTCalc.[h,cc],
384 mhft/Makefile:
385 - added
386
387 * macros/extendcam.C:
388 - added: tutorial for MGeomCamExtend
389
390 * macros/hft.C:
391 - added: tutorial for MHexgonalFTCalc
392
393 * macros/dohtml.C:
394 - updated
395
396 * macros/rootlogon.C:
397 - updated
398
399 * Makefile:
400 - mhft added
401
402 * mbase/MParContainer.cc, mbase/MLog.cc:
403 - added a pre-compiler option for destructor debugging
404
405 * mbase/MTaskList.[h,cc]:
406 - added new function Replace
407
408 * mdata/MDataChain.cc, mfbase/MF.cc:
409 - shortened some output
410
411 * mdata/MDataArray.[h,cc]:
412 - added new function FindRule
413
414 * mfileio/MReadTree.[h,cc]:
415 - enhanced functionality to be able to read a TTree stored in memory
416 instead of a file. Therefor introduced fTree which is now the pointer
417 used and replaced fChain where TTree and TChain have common behaviour.
418 Where they behave uncommon new code for the new case has been added.
419
420 * mfileio/MWriteRootFile.[h,cc]:
421 - enhanced functionality to be able to write a TTree into memory
422 instead of a file. This were maily bugfixes for the case fOut==0, which
423 must be handled correctly. Becarefull a tree filles without a file
424 is not deleted automatically!
425
426 * mhbase/MBinning.h:
427 - added copy constructor
428 - fixed buggy SetEdges(MBinning&) which didn't work
429
430 * mhbase/MHMatrix.cc:
431 - when adding a new rule check first if the same rule already exists
432
433 * mhflux/MAlphaFitter.[h,cc]:
434 - added new functionality to support on-off analysis
435 - didn't touch existing code
436
437 * mhflux/MHAlpha.[h,cc]:
438 - added new functionality to support on-off analysis
439 - replaced Fit() calls by newer function calls
440 - added DrawAll - PRELIMINARY
441 - fixed a bug when projecting - may be the reson for some strange
442 crashes
443
444 * mcalib/MCalibColorSet.cc:
445 - fixed a stupid bug introduced last year, which caused MCalibColorSet
446 in some circumstances to stop the eventloop when it shouldn't
447
448 * mjobs/MSequence.cc:
449 - expand path names
450
Note: See TracBrowser for help on using the repository browser.