Changeset 5414 for trunk


Ignore:
Timestamp:
11/17/04 09:36:27 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5413 r5414  
    2626     - make pixels with deviating time resolution unreliable instead of
    2727       unsuitable. This should take out 1 or 2 more unsuitable pixels.
     28
     29   * mcalib/MCalibColorSet.cc
     30     - introduce treatment of the case that one file in between the
     31       sequence of calibration runs is a pedestal file (run type == 1)
     32       and return kCONTINUE in the process. As this task is at the
     33       beginning of the tasklist, the calibration tasks will be skipped
     34       for these events. This treats now an interlaced pedestal run.
     35       Next will follow an interleaved pedestal event and finally an
     36       interleaved data event.
    2837
    2938
  • trunk/MagicSoft/Mars/mcalib/MCalibrationPix.cc

    r4986 r5414  
    398398// --------------------------------------------------------------------------
    399399//
     400// Get the High Gain Mean Rel Variance
     401//
     402Float_t MCalibrationPix::GetHiGainMeanRelVar()  const
     403{
     404  if (fHiGainMeanVar < 0.)
     405    return -1.;
     406  if (fHiGainMean   == 0.)
     407    return -1.;
     408
     409  return fHiGainMeanVar / ( fHiGainMean * fHiGainMean);
     410}
     411
     412// --------------------------------------------------------------------------
     413//
    400414// Get the Low Gain Sigma Error: Takes square root of fHiGainSigmaVar
    401415//
  • trunk/MagicSoft/Mars/mcalib/MCalibrationPix.h

    r4986 r5414  
    7070  Float_t GetHiGainMean       () const { return fHiGainMean   ;     }
    7171  Float_t GetHiGainMeanErr    () const;
     72  Float_t GetHiGainMeanRelVar () const;
    7273  Float_t GetHiGainProb       () const { return fHiGainProb   ;     }
    7374  Float_t GetHiGainSigma      () const { return fHiGainSigma  ;     }
Note: See TracChangeset for help on using the changeset viewer.