source: trunk/MagicSoft/Mars/Changelog@ 5745

Last change on this file since 5745 was 5744, checked in by gaug, 20 years ago
*** empty log message ***
File size: 8.7 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/08 Markus Gaug
23
24 * msignal/MExtractedSignalPix.[h,cc]
25 - added data member fChisquare, set to -1. by Clear() and Reset()
26 - raised version number by 1
27
28 * msignal/MExtractedSignalCam.[h,cc]
29 - added data member fNdf, set to -1 by default
30 - new function: GetProb(const Int_t pixidx) to be called to
31 calculate the joint probability of Chisquare of pixel "pixidx"
32 and fNdf
33 - added documentation of data members
34 - raised version number by 1
35
36 * mhcalib/MHCalibrationChargeCam.cc
37 - strengthened default histogram limits a bit, should accelerate
38 the calibration by 20%.
39
40 * mjobs/MJCalibrateSignalFromOutside.cc
41 - fixed two lines to compile MCalibrateData with the recent changes
42 by TB
43
44 * msignal/MExtractTimeAndChargeDigitalFilter.cc
45 - fixed two bugs introduced yesterday by TB.
46
47
48 2005/01/07 Markus Gaug
49
50 * msignal/MExtractFixedWindowPeakSearch.[h,cc]
51 - catch the case that more than 90% of the pixels have saturated
52 signals and fix the extraction window from the occurrance of
53 saturation, then. Important for high-intensity calibration events.
54
55
56 * msignal/MExtractor.cc
57 * msignal/MExtractTime.cc
58 * msignal/MExtractTimeAndCharge.cc
59 - added some documentation
60
61 * msignal/MExtractTime.[h,cc]
62 - moved the empty function FindTimeHiGain() and FindTimeLoGain() to
63 the header-file.
64
65
66 2005/01/07 Abelardo Moralejo
67
68 * mbase/MLog.h
69 - Added #include "TSystem.h", otherwise gSystem is not recognized
70 in Mac OSX.
71
72 * manalysis/MMakePadHistograms.cc
73 - Changed badcalc.SetNamePedPhotContainer to
74 badcalc.SetNamePedPhotCam
75
76
77
78 2005/01/07 Thomas Bretz
79
80 * mbadpixels/MBadPixelsCalc.[h,cc], macros/ONOFFAnalaysis.C:
81 - replaced PedPhotContainer by PedPhotCam for consistency
82
83 * mbase/MLog.[h,cc]:
84 - return *this in Seperator()
85
86 * mbase/MPrint.[h,cc]:
87 - use new separator manipulator in PreProcess
88 - fixed a type: separator instead of seperator
89
90 * mfileio/MReadTree.[h,cc]:
91 - added a check for branch->IsAutoDelete() in Notify()
92
93 * mpedestal/MExtractPedestal.[h,cc]:
94 - added new option 'fRandomCalculation' be used to switch on-/off-
95 randomization in extractors, the default should be like before
96 - added Process() calling Calc()
97
98 * mpedestal/MPedCalcFromLoGain.[h,cc], mpedestal/MPedCalcPedRun.[h,cc]:
99 - renamed Process() to Calc()
100
101 * Makefile:
102 - removed macros/calibration.C, which seems to have been
103 unintantionally introduced.
104
105 * manalysis/Makefile:
106 - removed unintantionally introduced wrong include
107
108 * msignal/MExtractTimeAndChargeDigitalFilter.cc:
109 - a small acceleration discussed with Hendrik by replacing a
110 counter in a loop by pointer arithmetics
111
112 * mraw/MRawEvtPixelIter.cc:
113 - fixed a bug in GetMaxIdxHiLoGain which caused the loop to
114 read one byte behind the end of the array
115 - fixed HasLoGain() which really did weired things, means accessing
116 sometimes memory somewhere. This could theoretically result
117 in assigning the wrong lo-gains to the wrong pixels.
118
119 * mtrigger/MTriggerPattern.[h,cc], mtrigger/MTriggerPatternDecode.[h,cc],
120 mtrigger/MFTriggerPattern.[h,cc]:
121 - added
122
123 * mtrigger/Makefile, mtrigger/TriggerLinkDef.h:
124 - added MTriggerPattern, MTriggerPatternDecode and MFTriggerPattern
125
126 * manalysis/MEnergyEstParam.h:
127 - added a new function SetVariables calling SetCoeff
128
129 * mcalib/MCalibrateData.[h,cc]:
130 - removed data members for container names
131 - added new lists for container names
132 - allow to calibrate more than one pedestal container at the same
133 time
134
135 * mjobs/MJCalibrateSignal.cc:
136 - changed accordingly
137
138
139
140 2005/01/05 Thomas Bretz
141
142 * mcalib/MCalibrationBlindPix.cc, mcalib/MCalibrationChargeCalc.cc,
143 mhcalib/MHCalibrationRelTimeCam.cc:
144 - made some output lines fit into convinience window of 80 col
145
146 * mhist/MHCamEvent.cc:
147 - make sure that x-axis has correct title
148
149 * msignal/MArrivalTimePix.cc:
150 - init error to -1 which is a obviously non valid value
151 - fixed IsValid() which gave wrong results
152
153 * msignal/MExtractTimeAndCharge.cc, msignal/MExtractedSignalPix.cc:
154 - made sure that LoGain is flagged non-valid if no lo-gain exists
155 - push time back at the edge of the allowed limits if outside
156
157 * mbase/MGList.[h,cc]:
158 - introduced new functions Delete and DeletePictures
159 - SetBit(kMustCleanup) in constructor. Otherwise it is not
160 correctly removed from ListOfCleanups
161
162 * mbase/MLog.cc:
163 - SetBit(kMustCleanup) if adding a plugin to make sure it is cleaned
164 from the list
165
166 * mbase/MParContainer.[h,cc]:
167 - replaced return type of GetDescriptor by TString. The old version
168 was terribly wrong! The returned memory wasn't removed as soon
169 as the function returned.
170
171 * mbase/MStatusDisplay.[h,cc]:
172 - for security (thread safty) replaced all Form() by MString::Form()
173 - implemented a more secure scheme of Closing (Clone()) this was
174 a hint given by valgrind
175 - set kMustCleanup for all new object in ClonePad not only kCanDelete
176 - fixed some lines in pulldown-menus
177 - add TPads to ListOfCleanups in ClonePad (workaround!)
178
179 * mbase/MString.[h,cc]:
180 - implemented a new static Form() function returning a copy of
181 the result
182
183 * mbase/MTask.[h,cc]:
184 - replaced return type of GetDescriptor by TString. The old version
185 was terribly wrong! The returned memory wasn't removed as soon
186 as the function returned.
187 - Made GetDescriptor thread safe using MString::Form
188
189 * mfileio/MWriteRootFile.cc:
190 - Use GetDescriptor().Data() when using any kind of printf function
191
192 * mhbase/MFillH.cc:
193 - replaced string concatenation in all constructors by a Form
194 (also suggested by valgrind)
195
196 * mhcalib/MHCalibrationRelTimeCam.cc:
197 - made some output fit into 80col boundary
198
199
200
201
202 2005/01/03 Thomas Bretz (HAPPY NEW YEAR)
203
204 * mfht:
205 - added new directory for hexagonal fourier transformation
206
207 * mfht/HftIncl.h, mhft/HftLinkDef.h, mhft/MGeomCamMagicXT.[h,cc],
208 mhft/MGeomCamMagicEnhance.[h,cc], mhft/MHexgaonalFT.[h,cc],
209 mhft/MHexagonalFreqSpace.[h,cc], mhft/MHexagonalFTCalc.[h,cc],
210 mhft/Makefile:
211 - added
212
213 * macros/extendcam.C:
214 - added: tutorial for MGeomCamExtend
215
216 * macros/hft.C:
217 - added: tutorial for MHexgonalFTCalc
218
219 * macros/dohtml.C:
220 - updated
221
222 * macros/rootlogon.C:
223 - updated
224
225 * Makefile:
226 - mhft added
227
228 * mbase/MParContainer.cc, mbase/MLog.cc:
229 - added a pre-compiler option for destructor debugging
230
231 * mbase/MTaskList.[h,cc]:
232 - added new function Replace
233
234 * mdata/MDataChain.cc, mfbase/MF.cc:
235 - shortened some output
236
237 * mdata/MDataArray.[h,cc]:
238 - added new function FindRule
239
240 * mfileio/MReadTree.[h,cc]:
241 - enhanced functionality to be able to read a TTree stored in memory
242 instead of a file. Therefor introduced fTree which is now the pointer
243 used and replaced fChain where TTree and TChain have common behaviour.
244 Where they behave uncommon new code for the new case has been added.
245
246 * mfileio/MWriteRootFile.[h,cc]:
247 - enhanced functionality to be able to write a TTree into memory
248 instead of a file. This were maily bugfixes for the case fOut==0, which
249 must be handled correctly. Becarefull a tree filles without a file
250 is not deleted automatically!
251
252 * mhbase/MBinning.h:
253 - added copy constructor
254 - fixed buggy SetEdges(MBinning&) which didn't work
255
256 * mhbase/MHMatrix.cc:
257 - when adding a new rule check first if the same rule already exists
258
259 * mhflux/MAlphaFitter.[h,cc]:
260 - added new functionality to support on-off analysis
261 - didn't touch existing code
262
263 * mhflux/MHAlpha.[h,cc]:
264 - added new functionality to support on-off analysis
265 - replaced Fit() calls by newer function calls
266 - added DrawAll - PRELIMINARY
267 - fixed a bug when projecting - may be the reson for some strange
268 crashes
269
270 * mcalib/MCalibColorSet.cc:
271 - fixed a stupid bug introduced last year, which caused MCalibColorSet
272 in some circumstances to stop the eventloop when it shouldn't
273
274 * mjobs/MSequence.cc:
275 - expand path names
276
Note: See TracBrowser for help on using the repository browser.