Changeset 7845


Ignore:
Timestamp:
08/04/06 10:40:48 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7844 r7845  
    6868     - adapted handling of sat in hi-gain extraction to changes
    6969       above
     70
     71   * mjobs/MJCalibrateSignal.cc:
     72     - replaced the hi-/lo-gain pulse plots by plots showing the
     73       hi-/lo-gain intercalibration and the hi-/lo-gain offset
    7074
    7175
  • trunk/MagicSoft/Mars/NEWS

    r7841 r7845  
    2626   - callisto: Updated absolute calibration constants (muon calibration)
    2727
     28   - callisto: fixed a bug which caused the hi-gain saturation not
     29     to be handled properly
     30
     31   - callisto fixed a bug which gave weird results if hi- and lo-gain
     32     could not be extracted properly
     33
    2834   - callisto: Fixed a bug regarding the use of the QE which doesn't
    2935     effect the result because the default is used anyhow.
    3036     (The bug was there since 14/07/2005)
     37
     38   - callisto: Changed the default for fgLoGainStartShift
    3139
    3240   - callisto: Fixed a bug which caused all hi-/lo-gain calibration
     
    3846     mainly for timing studies, not for the automatic standard analysis.
    3947
    40    - callisto: Implemented two new tabs, the pulse position of pulses
    41      not saturating the hi-gain (and above 50phe) and the pulse-position
    42      saturating the hi-gain (means the pulse position of signal extracted
    43      from the lo-gain and above 320phe) This can be used to check (and/or
    44      correct) the hi-/lo-gain offset.
     48   - callisto: Now tab "HiLoCal" which shows the ratio between hi- and
     49     lo-gain pulse for data pulses if hi- and lo-gain have saturated
     50     and both were extracted because the hi-gain was above the
     51     LoGainSwitch.
     52
     53   - callisto: Now tab "HiLoOff" which shows the offset between hi- and
     54     lo-gain pulse position (after application of LoGainOffset, which
     55     means in the ideal case it is 0) for data pulses if hi- and lo-gain
     56     have saturated and both were extracted because the hi-gain was above
     57     the LoGainSwitch.
    4558
    4659   - callisto: After extensive tests a new threshold level for determination
     
    5063     range and starts sticking to non-floating point numbers (5, 6, 7, ...)
    5164
    52    - star: changed the fit for the ffective on time such that initial
     65   - star: changed the fit for the effective on time such that initial
    5366     values are calculated automatically now instead of using build
    5467     in values. This makes the fit more indepedant of the underlaying
  • trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc

    r7829 r7845  
    581581    MHCamEvent evt7(  6, "Times",      "Calibrated Arrival Time;;T [fadc sl]");
    582582    MHCamEvent evt8(  0, "Conv",       "Calibration Conv. Factors;;[phe/fadc cnts]");
    583     MHCamEvent evt9(  7, "PulsePos",   "Pulse Position of cosmics (>15phe);;T");
    584     MHCamEvent evtH( 11, "PulseHi",    "Pulse Position of Hi-Gain;;T");
    585     MHCamEvent evtL( 10, "PulseLo",    "Pulse Position of Lo-Gain;;T");
     583    MHCamEvent evt9(  7, "PulsePos",   "Pulse Position of cosmics (>20phe);;T");
     584    //MHCamEvent evtH( 11, "PulseHi",    "Pulse Position of Hi-Gain;;T");
     585    //MHCamEvent evtL( 10, "PulseLo",    "Pulse Position of Lo-Gain;;T");
     586    MHCamEvent evtR(  4, "HiLoCal",    "Hi-Lo Gain ratio;;");
     587    MHCamEvent evtO(  7, "HiLoOff",    "Hi-Lo Offset;;");
    586588    evt6.SetThreshold();
    587589
     
    596598    MFillH fill8(&evt8, "MCalibrationIntensityConstCam", "FillConv");
    597599    MFillH fill9(&evt9, "MSignalCam",                    "FillPulse");
    598     MFillH fillH(&evtH, "MSignalCam",                    "FillPulseHi");
    599     MFillH fillL(&evtL, "MSignalCam",                    "FillPulseLo");
     600    //MFillH fillH(&evtH, "MSignalCam",                    "FillPulseHi");
     601    //MFillH fillL(&evtL, "MSignalCam",                    "FillPulseLo");
     602    MFillH fillR(&evtR, "MExtractedSignalCam",           "FillHiLoCal");
     603    MFillH fillO(&evtO, "MArrivalTimeCam",               "FillHiLoOff");
    600604
    601605    MTaskEnv fillflorian("FinalFantasy");
     
    726730    tlist2.AddToList(&fill9);
    727731    tlist2.AddToList(&fillH);
    728     tlist2.AddToList(&fillL);
     732    //tlist2.AddToList(&fillL);
     733    //tlist2.AddToList(&fillR);
     734    tlist2.AddToList(&fillO);
    729735
    730736    tlist2.AddToList(&fillflorian);
Note: See TracChangeset for help on using the changeset viewer.