source: trunk/MagicSoft/Mars/Changelog@ 5741

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