source: trunk/Mars/Changelog@ 11711

Last change on this file since 11711 was 11711, checked in by tbretz, 13 years ago
Fixed a bug when the END tag was the first in a block
File size: 10.0 KB
Line 
1Please do not write behind the end of line tag so that it is possible
2to send a Changelog file to a line printer directly. Thanks.
3
4For your entries please follow EXACTLY this style:
5
6_yyyy/mm/dd_[Your Name]
7_
8___*_filename:
9_____-_description
10_
11___*_filename2, filename3:
12_____-_description
13_
14_
15_
16
17While an underscore is a placeholder for a white-space or an empty line.
18
19 -*-*- END OF LINE -*-*-
20
21 2011/07/29 Thomas Bretz
22
23 * mbase/fits.h:
24 - fixed the case in which the END tag is the first in a block
25 - use seekg instead of seekpos
26
27
28
29 2011/07/24 Thomas Bretz
30
31 * mbase/MFits.h:
32 - renamed to fits.h
33
34 * mbase/MZlib.h:
35 - renamed to izstream.h
36
37 * mbase/MZlib.cc:
38 - removed, moved all the code to izstream.h
39 - set the fail and bad bit more properly
40
41 * mastro/MAstroCatalog.h, mraw/MRawFileRead.cc,
42 mfileio/MReadFiles.[h,cc]:
43 - replaced MZlib with izstream
44
45 * mraw/MRawRunHeader.[h,cc]:
46 - Added fIsSigned data memeber
47 - increased version number
48
49 * mraw/MrawEvtData.[h,cc]:
50 - added fIsSigned
51 - adapted GetSample
52 - added GetMin
53 - changed code in GetMax
54
55 * mraw/MRawFitsRead.cc:
56 - replaced MZlib by izsream
57 - check for TELESCOP key
58
59 * mbase/fits.h:
60 - added exceptions if supported
61 - removed check for TELESCOP keyword
62
63 * mhist/MHCamera.cc:
64 - fixed ifdef in GetObjectInfo
65 - do not propagate non finite numbers
66
67 * mbase/Makefile, mbase/BaseLinkDef.h:
68 - removed MZlib
69 - removed MFits
70 - added izstream
71 - added fits
72
73 * msignal/MExtractTimeAndCharge.[h,cc],
74 msignal/MExtractTimeAndChargeSpline.[h,cc],
75
76 * msignal/MExtractor.[h,cc], msignal/MExtractBlindPixel.[h,cc],
77 msignal/MExtractPINDiode.[h,cc],
78 msignal/MExtractTimeAndChargeSpline.[h,cc]:
79 - changed fHiGainFirst/fHiGainLast from Byte_t to UShort_t
80 to support the DRS with 1024 samples
81
82 * mhist/MHCamEvent.cc:
83 - removed some obsolete calls to Format()
84 - correctly display the relative and absolute error
85
86
87 2011/07/21 Thomas Bretz
88
89 * mgeom/MGeomCamFACT.cc:
90 - added special pixels 1438/1439
91
92
93
94 2011/07/20 Thomas Bretz
95
96 * readdaq.cc:
97 - added support for FITS files
98
99 * mbase/MFits.h:
100 - optmized reverse copy procedure
101 - added HasKey
102
103 * mbase/MRawEvtPixelIter.[h,cc]:
104 - Added iterator to start cell
105
106 * mbase/MRawEvtData.[h,cc]:
107 - added fStartCells
108 - increased version number
109
110 * mbase/MrawEvtData.[h,cc]:
111 - replaced fPCTime with an array as a buffer
112 - init start cells
113 - added "StartCell" to reading process
114
115
116
117 2011/07/19 Thomas Bretz
118
119 * mbase/MFits.h:
120 - made struct Entry public (needed by newer root versions)
121
122
123
124 2011/07/18 Thomas Bretz
125
126 * mastro/MAstroCatalog.cc:
127 - added include of fstream
128
129 * macros/rootlogon.C:
130 - added define of __MARS__ to AcLiC
131
132 * mraw/MRawRead.h:
133 - made ReadEvent and SkipEvent virtual
134
135 * mraw/MRawFileRead.[h,cc]:
136 - outsourced OpenFile and ReadRunHeader to their own functions
137
138 * mbase/MParContainer.[h,cc]:
139 - Added function DataMember which will return a pointer to a data
140 member from the dictionary.
141
142 * mbase/MZlib.h:
143 - There is no need to make the derivative from istream virtual.
144 - removed the need of a fill_buffer function
145 - do only relative seeks and never start from the beginning of the
146 file
147
148 * mbase/MFits.[h,cc]:
149 - added Fits support
150
151 * mbase/Makefile, mbase/BaseLinkDef.h:
152 - added MFits
153
154 * mpedestal/MPedestalSubtract.cc:
155 - improved some error output
156
157 * mgeom/MGeomApply.cc:
158 - automatically use MGeomCamFACT if the run header says that it is
159 a fact camera.
160
161 * mraw/MRawRunHeader.[h,cc]:
162 - added setter for format versions
163 - added InitFact
164 - added GetCameraVersion
165
166 * mjobs/MJMerpp.cc:
167 - use FITS reader instead of raw-reader if it is a FITS raw file.
168
169 * merpp.cc:
170 - added fits asa valid extension
171 - fixed replacing of extensions
172
173 * mfileio/MReadMarsFile.cc:
174 - read first header of first file, so that at PreProcessing time
175 at least some header is available.
176
177 * mraw/Makefile, mraw/MRawFitsRead.cc:
178 - added MRawFitsRead
179
180 * mraw/MRawFitsRead.[h,cc]:
181 - added
182
183
184
185 2011/07/15 Thomas Bretz
186
187 * mbase/MZlib.[h,cc]:
188 - fixed seeking in gzipped files
189 - increased buffer size
190
191 * mbase/MMath.[h,c]:
192 - added GaussProb2D
193
194 * msignal/MSignalCalc.cc:
195 - the upper bound of searching the maximum was wrong
196
197
198
199 2011/07/14 Thomas Bretz
200
201 * mbase/MStatusDisplay.cc:
202 - some minor code changed to get rid of some compiler warnings
203 - fixed a problem with a possible infinite loop
204
205 * mbase/MThread.h:
206 - propagate argument to Run()
207
208 * mbase/MLut.cc:
209 - some variable name change to get rid of some compiler warnings
210
211 * mjobs/MSequence.cc:
212 - fixed a check which was always true
213
214
215
216 2011/07/07 Thomas Bretz
217
218 * mhflux/MHFalseSource.cc:
219 - fixed a bug in SetupFill - must be CopyBinning instead of
220 SetBinning
221
222
223
224 2011/04/04 Thomas Bretz
225
226 * mreport/MReportFileRead.cc:
227 - added a missing delete
228
229 * mhflux/MHEnergyEst.cc, mhist/MHCamera.cc:
230 - fixed some crashes with newer root versiony in which
231 GetFunction("gaus") after an unsuccessfull fit might return
232 NULL
233
234 * mastro/MAstroCatalog.cc:
235 - added the missing marker color for the dot
236
237 * mpointing/MPointingDevCalc.cc:
238 - added some comments
239
240 * mmain/MEventDisplay.cc:
241 - renamed some local variables to avoid using the same name twice
242
243 * mgeom/MGeomCam.cc:
244 - for convenience a margin of 0 in HitFrame is allowed to
245 switch off the detection also with 0
246
247 * mbase/MThread.h:
248 - added missing argument to call of fThread.Run()
249
250 * mhbase/MH3.cc:
251 - fixed a problem with a wrong cast
252 - added assignment of conversion function for TProfile3D
253
254
255
256 2011/03/10 Thomas Bretz
257
258 * mhbase/MH3.[h,cc]:
259 - increased forgotten class version number from 6 to 7
260
261
262
263 2011/03/03 Reiner Rohlfs
264
265 * mcorsika/MCorsikaFormat.[h,cc]:
266 - accept an "EVTH" only after an "EVTE" and after a "RUNH"
267
268 * mcorsika/MCorsikaRead.cc:
269 - parameter change in function MCorsikaFormat::NextBlock()
270 from "Bool_t subBlock" to "Int_t readState".
271
272
273
274 2011/02/21 Reiner Rohlfs
275
276 * mcorsika/MCorsikaRead.[h,cc]:
277 - Remove debug output and not used code
278
279
280
281 2011/02/21 Thomas Bretz
282
283 * mcalib/MCalibrateData.cc mcalib/MCalibrationBlindPix.cc
284 mcalib/MCalibrationChargeCam.cc mcalib/MCalibrationChargeCalc.cc
285 mcalib/MCalibrationIntensityChargeCam.cc mimage/MNewImagePar2.cc
286 mhcalib/MHCalibrationPulseTimeCam.cc mhcalib/MHCalibrationChargeCam.cc
287 mhcalib/MHCalibrationHiLoCam.cc manalysis/MMcTriggerLvl2.cc
288 mfilter/MFCosmics.cc mhflux/MHFalseSource.cc mhflux/MHThetaSqN.cc
289 mastro/MAstroCamera.cc mmuon/MHSingleMuon.cc
290 mpedestal/MPedestalSubtractedEvt.cc mpedestal/MPedCalcFromLoGain.cc
291 mpedestal/MPedCalcPedRun.cc mpedestal/MExtractPedestal.cc
292 mpedestal/MPedestalSubtract.cc mpedestal/MHPedestalCor.cc
293 mhist/MHCamera.cc msignal/MExtractTimeAndCharge.cc
294 msignal/MExtractTime.cc msignal/MExtractTimeAndChargeDigitalFilter.cc
295 msignal/MArrivalTimeCam.cc msignal/MExtractTimeAndChargeSpline.cc
296 mranforest/MHRanForestGini.cc mranforest/MRanForestCalc.cc
297 mranforest/MRanForest.cc mbase/MLog.cc mbase/MMath.cc
298 mbadpixels/MBadPixelsCam.cc mbadpixels/MBadPixelsTreat.cc
299 mhvstime/MHSectorVsTime.cc mfbase/MFEventSelector2.cc
300 mhbase/MBinning.cc mhbase/MH.cc mgui/MHexagon.cc msql/MSQLServer.cc:
301 - removed the old obsolete cvs header line
302
303 * msimcamera/MSimCamera.cc, msimcamera/MSimSignalCam.cc,
304 msim/MHPhotonEvent.cc msim/MPhotonEvent.cc:
305 - treat kArtificial in addition to kNightSky
306
307
308
309 2011/02/10 Daniela Dorner
310
311 * resmc/:
312 - uncommented line of 950nm to take into account the changes of the
313 range of the transmission curve
314
315
316
317 2011/02/09 Reiner Rohlfs
318
319 * mcorsika/MCorsikaFormat.cc:
320 - replace the selection of the blockType from a string comparison
321 to a switch - statement.
322
323 * mcorsika/MCorsikaRead.[h,cc]:
324 - Redesign of the Process() - method: Read after the processing of
325 one block the header of the next block to be able do decide to
326 process the next block in the same the same call or to return
327 from the method.
328
329
330
331 2011/01/24 Thomas Bretz
332
333 * melectronics/MAvalanchePhotoDiode.h:
334 - shifted the Afterpulse class behind the APD class to make it
335 compile
336
337
338
339 2011/01/07 Thomas Bretz
340 2011/01/07 Thomas Bretz
341
342 * msimcamera/MSimAPD.[h,cc]:
343 - added setting of the afterpulse probabilities
344 - handle afterpulses in processing
345
346 * melectronics/MAvalanchePhotoDiode.[h,cc]:
347 - restructured header file
348 - added treatment of afterpulses in HitCellImp
349 - added time constants and afterpulse probability
350 data memebers
351 - added TSortedList to hold the afterpulses
352 - added afterpulses to calculation of relaxation time
353 - added call to Relax to Init
354 - added treatment of afterpulses to FillEmpty, FillRandom and
355 Evolve
356 - added member functions to process the afterpulses
357
358
359
360 2011/01/06 Thomas Bretz
361
362 * mimage/MNewImagePar2.cc:
363 - use GetL() instead of GetT() for fBorderLinePixel
364
365 * mgeom/MGeomRectangle.h:
366 - added GetL member-function
367
368 * mgeom/MGeomPix.h:
369 - fixed the comment of GetT
370
371 * mgeom/MGeom.h:
372 - added abstract function GetL
373
374 * mgeom/MGeomRectangle.cc:
375 - fixed the comment for GetT
376 - added GetL
377
378 * mgeom/MGeomCamDwarf.cc:
379 - use the HitFrame from the base class with a slightly
380 increased radius (no change in behaviour)
381
382 * mgeom/MGeomCam.[h,cc]:
383 - added HitFrame
384
385 * msimreflector/MSimReflector.[h,cc]:
386 - implemented the possibility to overwrite the absorbing
387 size of the detector
388 - added fDetectorFrame
389
390 * mpointing/MPointingDevCalc.cc:
391 - updated comments
392
393 * msimcamera/MSimRandomPhotons.cc:
394 - fixed a mistake in the log-output
Note: See TracBrowser for help on using the repository browser.