IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 14, 2013, 6:09:47 AM (13 years ago)
Author:
eugene
Message:

if target FWHM < current FWHM, print a message and skip the convolution, but do not raise an error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphotStackMatchPSFsNext.c

    r34317 r36118  
    102102
    103103    if (targetFWHM <= currentFWHM) {
    104         psError (PSPHOT_ERR_CONFIG, true, "target FWHM cannot be smaller than current FWHM");
     104        // psError (PSPHOT_ERR_CONFIG, true, "target FWHM cannot be smaller than current FWHM");
     105        psLogMsg ("psphot", PS_LOG_INFO, "target FWHM (%f) is smaller than current FWHM (%f), not smoothing\n", targetFWHM, currentFWHM);
    105106        return false;
    106107    }
Note: See TracChangeset for help on using the changeset viewer.