Changeset 5574 for trunk


Ignore:
Timestamp:
12/09/04 12:22:47 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5573 r5574  
    2525 * mbadpixels/MBadPixelsTreat.cc:
    2626   - set default in constructor to UseInterpolation, ProcessPedestalEvt
    27      and ProcessTimes
     27     and ProcessTimes which is the callisto default
    2828   - enhanced comments in output
    2929
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.cc

    r4770 r5574  
    106106    fTitle = title ? title : gsDefTitle.Data();
    107107
    108     SetProcessPedestalRun();
     108    SetUseInterpolation();
     109    SetProcessPedestal();
     110    SetProcessTimes();
    109111}
    110112
     
    152154    {
    153155        *fLog << err << AddSerialNumber("MGeomCam") << " not found - can't use interpolation... abort." << endl;
     156        *fLog << " Use MBadPixelsTreat::SetUseInterpolation(kFALSE) to switch interpolation" << endl;
     157        *fLog << " off and use unmapping instead." << endl;
    154158        return kFALSE;
    155159    }
     
    162166        {
    163167            *fLog << err << AddSerialNumber("MPedPhotCam") << " not found... aborting." << endl;
     168            *fLog << " Use  MBadPixelsTreat::SetProcessPedestalRun(kFALSE)  and" << endl;
     169            *fLog << " MBadPixelsTreat::SetProcessPedestalEvt(kFALSE) to switch" << endl;
     170            *fLog << " Pedestal treatment off." << endl;
    164171            return kFALSE;
    165172        }
     
    173180        {
    174181            *fLog << err << AddSerialNumber("MArrivalTime") << " not found... aborting." << endl;
     182            *fLog << " Use MBadPixelsTreat::SetProcessTimes(kFALSE) to switch time interpolation off." << endl;
    175183            return kFALSE;
    176184        }
Note: See TracChangeset for help on using the changeset viewer.