Changeset 8003


Ignore:
Timestamp:
10/02/06 20:56:28 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8002 r8003  
    3232
    3333   * mreport/MReport.cc:
    34      - allow the milliseconds to be 1000 (this is a bug which affects the
    35        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)
    3636     - improved output
     37
     38   * mjobs/MJCalibration.cc:
     39     - added two plots the extracted signal and the extracted arrival
     40     time
    3741
    3842
  • trunk/MagicSoft/Mars/NEWS

    r7997 r8003  
    113113     behaviour dramatically. It tends to the average of the extraction
    114114     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)
    115120
    116121   - star: changed the fit for the effective on time such that initial
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r7898 r8003  
    147147#include "MHCalibrationRelTimeCam.h"
    148148#include "MHCalibrationPix.h"
     149
     150#include "MHCamEvent.h"
    149151
    150152#include "MReadMarsFile.h"
     
    19651967    tlist.AddToList(&calcalc);
    19661968
     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
    19671980    // Create and setup the eventloop
    19681981    MEvtLoop evtloop(fName);
Note: See TracChangeset for help on using the changeset viewer.