source: trunk/MagicSoft/Mars/Changelog@ 2828

Last change on this file since 2828 was 2828, checked in by gaug, 21 years ago
*** empty log message ***
File size: 12.9 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
4
5 -*-*- END OF LINE -*-*-
6
7 2004/01/16: Markus Gaug
8
9 * mcalib/MCalibrationFits.h
10 - removed and incorporated in MHCalibrationBlindPixel.h
11
12 * mcalib/MHCalibrationBlindPixel.[h,cc]
13 - incorporate Fit functions
14 - fixed a bug due to which DrawClone crashed when class was used
15 in a compiled macro
16
17 2004/01/16: Abelardo Moralejo
18
19 * manalysis/MMcCalibrationCalc.cc
20 - TMath::Max() is no longer used because it did not compile in some
21 systems for unkown reasons. I replaced it by a safer (and may be
22 slower) code.
23 - Added calpix.SetFitValid();
24
25 * mhist/MHEvent.cc
26 - In MHEvent::Fill, fixed: second parameter of SetCamContent must
27 be 1 in case of RMS:
28 case kEvtPedestalRMS:
29 fHist->SetCamContent(*(MCamEvent*)par, 1);
30
31 2004/01/15: Abelardo Moralejo
32
33 * macros/starmc.C
34 - Added. Version of star showing new chain to get Hillas
35 parameters (with Size calibrated in photons) from MC files.
36
37 2004/01/15: Javier Rico
38
39 * manalysis/MPedCalcPedRun.[h,cc]
40 - optimize the running time
41 - add (some) documentation
42 - correct treatment for the case of several input files
43
44 * macros/pedvsevent.C
45 - added
46 - draw pedestal mean and rms vs event# for input pixel# and run
47 file, and compares them to the global pedestal mean and rms
48
49
50 2004/01/15: Raquel de los Reyes
51
52 * mhist/MHCamEvent.cc, mhist/MHCamera.cc
53 - changed the MHCamEvent::SetupFill and MHCamera::GetBinError
54 functions to compute the estimation of the error of the
55 mean. It can be done calling to the function
56 MCamEvent::SetBit(MHCamera::kVariance) in the macro
57
58
59 2004/01/15: Markus Gaug
60
61 * mhist/MHCamera.[h,cc]
62 - incorporate Thomas's changes
63 - replace void CreateProjection() by TH1D *Projection(const char*)
64
65 * macros/calibration.C
66 - replace MHCamera->Draw("proj") by MHCamera->Projection()
67 - produce better fits to the projection
68
69 * manalysis/MSimulatedAnnealing.[h,cc],
70 mhist/MHSimulatedAnnealing.[h,cc]:
71 - moved to directory mtools
72 - MSimulatedAnnealing now inherits from TObject
73
74 * manalysis/Makefile, manalysis/AnalysisLinkDef.h,
75 mhist/Makefile, mhist/HistLinkDef.h:
76 - removed MSimulatedAnnealing
77 - removed MHSimulatedAnnealing
78
79 * mtools/Makefile, mtools/AnalysisLinkDef.h:
80 - added MSimulatedAnnealing
81 - added MHSimulatedAnnealing
82
83
84
85 2004/01/15: Thomas Bretz
86
87 * manalysis/AnalysisLinkDef.h:
88 - removed MCurrents
89
90 * mhist/MHCamera.[h,cc]:
91 - added member function Projection
92 - removed fYproj
93
94 * mreport/MReport*.*:
95 - added more comments
96
97
98
99 2004/01/14: Markus Gaug
100
101 * mtools/MFFT.[h,cc]
102 - new class to perform Fast Fourier Transforms
103
104 * mtools/Makefile
105 * mtools/ToolsLinkDef.h
106 - include MFFT
107
108 * manalysis/MExtractedSignalCam.h
109 - removed variables fNumHiGainSamples and fNumLoGainSamples
110 - function SetNumUsedFADCSlices replaced by SetUsedFADCSlices
111
112 * manalysis/MExtractSignal.cc
113 - updated call to SetUsedFADCSlices
114
115
116
117 2004/01/14: Abelardo Moralejo
118
119 * manalysis/MMcCalibrationCalc.cc:
120 - set pedestal rms per FADC slice to 0.01 counts in case it is 0.
121 This can happen (depending on camera simulation parameters), and
122 rms = 0 later resulted in the pixel being eliminated in the
123 image cleaning.
124
125
126
127 2004/01/14: Thomas Bretz
128
129 * Makefile:
130 - replaced old style Makefile.depend by directory specific
131 dependancy files
132
133 * Makefile.rules:
134 - changed obsolete '.cc.o' style to newer style '%.o: %.c'
135 - added rule to make dependency files
136 - added rule to remove dependancy files.
137 - added rmdep as prerequisite to clean
138 - include dependency file
139
140 * mbase/Makefile, mcalib/Makefile, mcamera/Makefile,
141 mdata/Makefile, mfileio/Makefile, mfilter/Makefile,
142 mgeom/Makefile, mgui/Makefile, mhbase/Makefile,
143 mhist/Makefile, mhistmc/Makefile, mimage/Makefile,
144 mmain/Makefile, mmc/Makefile, mmontecarlo/Makefile,
145 mpointing/Makefile, mranforest/Makefile, mraw/Makefile,
146 mreflector/Makefile, mreport/Makefile, mtemp/Makefile,
147 mtools/Makefile:
148 - removed clean-rule, use the one in Makefile.rules instead
149
150 * mreport/Makefile, mreport/ReportLinkDef.h:
151 - added MReportHelp
152
153 * mreport/MReportFileRead.cc:
154 - moved code from MReportHelp to new file
155 - removed usage of MReport class completely
156
157 * mfilter/MFGeomag.[h,cc]:
158 - fixed a bug which causes MFGeomag to fail if MARSSYS is not set
159 - changed the second loop from 0->1151 to 1152->2304
160 - removed dummy arrays used for reading
161 - output filename in case of 'file not found'
162 - removed obsolete data members
163 - removed obsolete Init function
164 - removed forbidden underscore from member variable
165 - changed wrong 0/1 in allocation of fResult into kFALSE/TRUE
166
167 * mbase/MStatusDisplay.[h,cc]:
168 - added new member function Open
169 - added new menu entry kFileOpen
170 - changed UpdatePSheader algorithm (the old one was much too slow)
171
172 * manalysis/MCurrents.[h,cc]:
173 - removed (old outdated)
174
175 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
176 - removed MCurrents
177
178
179
180 2004/01/14: Wolfgang Wittek
181
182 * macros/ONOFFAnalysis.C:
183 - current version
184
185 * mhist/MHSigmaTheta.[h,cc]:
186 - replace MPedestalCam by MPedPhotCam
187
188 * manalysis/MPad.[h,cc], manalysus/MSigmabar.[h,cc],
189 manalysus/MSigmabarCalc.[h,cc], manalysus/MCT1PadONOFF.[h,cc],
190 manalysus/MCT1PadSchweizer.[h,cc], manalysus/MPadding.[h,cc]:
191 - replace MPedestalCam by MPedPhotCam
192
193 * manalysis/MPedPhotPix.[h,cc]
194 - uncomment SetRms()
195
196
197
198 2004/01/13: Markus Gaug
199
200 * manalysis/MExtractSignal.h
201 - seems that the reduced light intensity of the CT1 Pulser
202 results in broader pulses -> Set Default time slices to [3,10]
203
204 * mhist/MHCamera.cc
205 - make Stat Window in option 'proj' bigger
206 - add comment line at beginning of Draw()
207
208 * mcalib/MHCalibrationBlindPixel.[h.cc]
209 - add Function DrawClone()
210 - fix bug in calculation of integral (GetIntegral("width"))
211 - restrict parameters tighter
212 - declare fit as not valid, if less than 100 events
213 in single photo-electron peak
214
215 * mcalib/MCalibrationFits.h, mcalib/MHCalibrationBlindPixel.[h.cc]
216 - fit now with fixed normalization
217
218 * mcalib/MHCalibrationPixel.[h.cc]
219 - new function IsEmpty()
220 - Time fit accepted if ChiSquare less than 30. (instead of 20.)
221
222 * mcalib/MCalibrationPix.[h.cc]
223 - F-Factor corrected and added error
224 - Histograms not fitted if they are empty
225 - rejection criteria of fitted charges now > 5 PedRMS (instead 3)
226
227 * mcalib/MCalibrationCam.cc
228 - Square Root of Reduced Sigmas not taken, if they are < 0.
229 - Reduced Sigma / Charge squared replaced by reduced sigma / charge
230
231 * mcalib/MCalibrationCalc.cc
232 - Blind Pixel is not additionally treated as normal pixel any more
233 - Blind Pixel Draw replaced by DrawClone
234
235 * macros/calibration.C
236 - took out some unused code
237 - some default axis labelling corrected
238
239
240
241 2004/01/13: Abelardo Moralejo
242
243 * manalysis/MMcPedestalCopy.cc
244 - added check of whether input file is a MC file before executing
245 the PreProcess.
246
247
248
249 2004/01/13: Wolfgang Wittek
250
251 * macros/ONOFFAnalysis.C, macros/ONAnalysis.C:
252 - change macro to handle also MC events with finite sigmabar
253
254 * manalysis/MPadOn.[h,cc]:
255 - deleted, is replaced by MPad
256
257 * manalysis/MPadOnOFF.[h,cc]:
258 - deleted, is replaced by MPad
259
260 * manalysis/MPad.[h,cc]:
261 - new class, replacing MPadON and MPadONOFF
262 - handle also MC events with finite sigmabar
263
264 * manalysis/Makefile, manalysis/AnalysisLinkDef.h:
265 - replace MPadON and MPadONOFF by MPad
266
267
268
269 2004/01/13: Thomas Bretz
270
271 * mraw/MRawRunHeader.[h,cc]:
272 - implemented new member function GetRunTypeStr
273
274 * Changelog.03:
275 - added (contains entries of 2003)
276
277 * Changelog:
278 - removed entries of 2003
279
280 * mfilter/MFGeomag.cc:
281 - simplified open/close of input files
282
283 * manalysis/MEventRate.[h,cc], manalysis/MEventRateCalc.cc:
284 - added some comments
285 - added new member function GetError
286
287 * Makefile:
288 - updated 'make dox' output for convinience
289
290 * macros/dohtml.C:
291 - do not print Info's
292 - added mcamera
293 - added mpointing
294 - added mreport
295
296 * mreport/MReportCurrents.cc, mreport/MReportDAQ.cc:
297 - removed some obsolete comments (these comments confused THtml)
298
299 * manalysis/MCameraData.[h,cc], mfileio/MCT1ReadAscii.[h,cc],
300 mfileio/MCT1ReadPreProc.[h,cc], mfilter/MFCT1SelBasic.cc,
301 mfilter/MFSelBasic.cc, mhist/MHCamera.cc, mhist/MHEvent.[h,cc],
302 mimage/MImgCleanStd.[h,cc], mimage/MImgCleanTGB.[h,cc],
303 mmain/MAnalysis.cc, mmain/MEventDisplay.cc:
304 - replaced MPedestalCam by MPedPhotCam
305 - removed some obsolete includes
306
307 * mbase/BaseLinkDef.h, mbase/Makefile:
308 - added MLogPlugin
309 - added MLogHtml
310
311 * mbase/MLog.[h,cc]:
312 - added use of plugins
313
314 * mbase/MLogPlugin.[h,cc], mbase/MLogHtml.[h,cc]:
315 - added
316
317 * mbase/MStatusDisplay.[h,cc]:
318 - added a Save-As dialog
319
320
321
322 2004/01/12: Thomas Bretz
323
324 * macros/rootlogon.C:
325 - added mcamera to include path
326 - added mpointing to include path
327 - added mreport to include path
328
329 * mbase/MLog.cc:
330 - updated my eMail address
331
332 * mbase/MParContainer.h:
333 - added Read member function
334
335 * mbase/MStatusDisplay.[h,cc]:
336 - changed size of ps-paper
337 - added a user defined bottom line to the ps-files
338 - added name (currently unused)
339 - added title (used as possible bottom line in ps-file)
340
341 * mraw/MRawRunHeader.cc:
342 - added some comments
343
344 * status.cc:
345 - set name of input as bottom line of status display
346
347
348
349 2004/01/12: Abelardo Moralejo
350
351 * mimage/MStereoPar.cc
352 - fixed mistake: now fSourceY = scale1*hillas1.GetMeanY() + ...
353 instead of fSourceY = scale2*hillas1.GetMeanY() + ...
354 Bug had no effect unless scale1 != scale2 (-> telescopes of
355 different size).
356
357
358
359 2004/01/12: Markus Gaug
360
361 * manalysis/MExtractSignal.[h,cc]
362 - take out some uncommented code
363 - replace logainshift by two independent variables:
364 logainfirst, logainlast
365 - because in most data, maximum occurs in slice 4, shift default
366 from slices 4-9 to slices 3-8.
367
368 * manalysis/MExtractedSignalPix.[h,cc]
369 - took out some uncommented code
370 - new initializers: instead of -1. now 99999.9
371
372
373
374 2004/01/09: Markus Gaug
375
376 * mcalib/MCalibrationCam.[h,cc]
377 - take out 1-dim histos because we can use
378 the projections in MHCamera (s.b.)
379
380 * mcalib/MHCalibrationBlindPixel.h
381 - make the fit by default quiet
382
383 * mcalib/MHCalibrationPixel.[h,cc]
384 * mcalib/MCalibrationPix.[h,cc]
385 - Ranges of time slices stored independently for HiGain and LoGain
386 in order to allow consecutive checks
387
388 * mhist/MHCamera.[h.cc]
389 - add the possibility to call a Draw("proj") which will
390 draw a Y-Projection of the histogram
391
392 * macros/calibration.C
393 - apply the drawing of the projections and fit them
394
395 * mcalib/MCalibrationCalc.cc
396 - catch the possibility of a calibration file,
397 unintendedly being a pedestal or cosmic file.
398 Program now exits with an error before doing the fits
399
400 * mcalib/MCalibrationPix.[h,cc]
401 - fixed a bug in calculation of fFitValid.
402 before, a call to IsFitValid() always returned false
403
404
405
406 2004/01/09: Javier L¢pez
407
408 * macros/bootcampstandardanalysis.C
409 - added new macro that holds the main scheleton discussed in the
410 december bootcamp in Wuerzburg. It runs first over a pedestal
411 run, then over a calibration run, again over the pedestal run
412 to compute de pedestal in number of photons and finally over a
413 data run to calibrate the data.
414
415
416
417 2004/01/06: Sebastian Raducci
418
419 * manalysis/MArrivalTime.[h,cc]
420 - added new method to calculate photon arrival times. It uses the
421 TSpline5 Root Class to interpolate the Fadc Slices. The time is
422 the abscissa value of the absolute maximum of the interpolation
423 - added new method to find clusters with similar arrival times.
424 For now it's a preliminary version. It simply search for adiacent
425 pixels having the same arrival time (color).
426
427 * manalysis/MArrivalTimeCalc.[h,cc]
428 - modified the Process() method according to the changes in the
429 Arrival Time Cointainer
430
431 * mmain/MEventDisplay.cc
432 - added new tab in the camera event display to show the arrival
433 time. This arrival time is calculated with the spline method
434 - the old Arrival Time pad now it's called Max Slice Idx, because
435 it's only the index of the slice with the max content.
436
437 * mhist/MHEvent.[h,cc]
438 - added new fType in te enumeration to handle the arrival time
439 histos
Note: See TracBrowser for help on using the repository browser.