Changeset 8003
- Timestamp:
- 10/02/06 20:56:28 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8002 r8003 32 32 33 33 * mreport/MReport.cc: 34 - allow the milliseconds to be 1000 (this is a bug which affects the35 reports invery rare cases)34 - allow the milliseconds to be 1000 (this is a bug which affects 35 the camera reports in very rare cases) 36 36 - improved output 37 38 * mjobs/MJCalibration.cc: 39 - added two plots the extracted signal and the extracted arrival 40 time 37 41 38 42 -
trunk/MagicSoft/Mars/NEWS
r7997 r8003 113 113 behaviour dramatically. It tends to the average of the extraction 114 114 range and starts sticking to non-floating point numbers (5, 6, 7, ...) 115 116 - callisto: Added two more plots to the calibration part. The average 117 extracted signal and the average extracted arrival time as 118 extracted by the signal extractor (This can help debugging problems 119 because it doesn't involve a fit) 115 120 116 121 - star: changed the fit for the effective on time such that initial -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r7898 r8003 147 147 #include "MHCalibrationRelTimeCam.h" 148 148 #include "MHCalibrationPix.h" 149 150 #include "MHCamEvent.h" 149 151 150 152 #include "MReadMarsFile.h" … … 1965 1967 tlist.AddToList(&calcalc); 1966 1968 1969 1970 MHCamEvent evt2(0, "Extra'd", "Extracted Calibration Signal;;S [cnts/sl]"); 1971 MHCamEvent evt9(4, "ArrTm", "Extracted ArrivalTime;;T"); 1972 1973 MFillH fill2(&evt2, "MExtractedSignalCam", "FillExtractedSignal"); 1974 MFillH fill9(&evt9, "MArrivalTimeCam", "FillArrivalTime"); 1975 1976 tlist.AddToList(&fill2); 1977 tlist.AddToList(&fill9); 1978 1979 1967 1980 // Create and setup the eventloop 1968 1981 MEvtLoop evtloop(fName);
Note:
See TracChangeset
for help on using the changeset viewer.