Changeset 4077 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
05/15/04 17:32:02 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4067 r4077  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
     21 2004/05/15: Markus Gaug
     22
     23   * msignal/MArrivalTimePix.h
     24   * msignal/MArrivalTimeCam.cc
     25     - introduced functin GetHiGainSaturation() in MArrivalTimePix.h
     26     - added type in GetPixelContent() whihc asks for Hi-Gain saturation
     27       and return the hi-gain time or the low-gain time, correspondingly.
     28
    2129 2004/05/12: Markus Gaug
    2230
     
    2735   * mjobs/MJExtractCalibTest.cc
    2836     - fixed some errors in the storage of the rel. times.
     37
     38   * mjobs/MJExtractCalibTest.cc
     39     - put the cosmics filter which was forgotten
    2940
    3041   * mcalib/MCalibrate.h
  • trunk/MagicSoft/Mars/msignal/MArrivalTimeCam.cc

    r3213 r4077  
    152152        val = (*this)[idx].GetArrivalTimeLoGainError();
    153153        break;
     154    case 4:
     155        if ((*this)[idx].GetNumHiGainSaturated() > 0)
     156            val = (*this)[idx].GetArrivalTimeLoGain();
     157        else
     158            val = (*this)[idx].GetArrivalTimeHiGain();
     159        break;
    154160    default:
    155161        return kFALSE;
  • trunk/MagicSoft/Mars/msignal/MArrivalTimePix.h

    r3899 r4077  
    3535    Float_t GetArrivalTimeLoGainError() const { return fArrivalTimeLoGainError; }
    3636
    37     Byte_t GetNumLoGainSaturated()          const { return fNumLoGainSaturated; }
     37    Byte_t GetNumHiGainSaturated()      const { return fNumHiGainSaturated; }
     38    Byte_t GetNumLoGainSaturated()      const { return fNumLoGainSaturated; }
    3839
    3940    Bool_t IsLoGainUsed() const { return fNumHiGainSaturated > 0; }
Note: See TracChangeset for help on using the changeset viewer.