source: trunk/MagicSoft/Mars/Changelog@ 5739

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