Changeset 18271 for trunk/Mars/msignal


Ignore:
Timestamp:
07/26/15 16:42:59 (9 years ago)
Author:
Daniela Dorner
Message:
implemented case kEvtTimeSlopeCleaned
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/msignal/MSignalCam.cc

    r18243 r18271  
    594594
    595595    // Used inlcudes status unampped
    596     if (!pix.IsPixelUsed() && (type<6 || type==8))
     596    if (!pix.IsPixelUsed() && (type<6 || type==8 || type==14))
    597597        return kFALSE;
    598598
     
    669669        return pix.GetNumPhotons()>0;
    670670
    671     case 12: // time slope
     671    case 13: // time slope
     672        val = pix.GetTimeSlope();
     673        break;
     674
     675    case 14: // time slope
     676        if (pix.IsPixelUnmapped())
     677            return kFALSE;
    672678        val = pix.GetTimeSlope();
    673679        break;
Note: See TracChangeset for help on using the changeset viewer.