source: trunk/MagicSoft/Mars/Changelog@ 2837

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