source: trunk/MagicSoft/Mars/Changelog@ 5738

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