IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 27, 2006, 6:20:39 PM (19 years ago)
Author:
Paul Price
Message:

Cleaning up code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageDetrendBias.c

    r9825 r10211  
    88{
    99    psTrace("ppImage", 1, "Commencing bias processing....\n");
    10 //    psMetadataPrint(inputReadout->parent->concepts, 7);
    1110
    1211    if (!pmSubtractBias(inputReadout, options->overscan, bias, dark)) {
    13         return false;
     12        psError(PS_ERR_UNKNOWN, false, "Unable to subtract bias.\n");
     13        return false;
    1414    }
    1515
    1616    // Output overscan fit results, if required
    1717    if (! options->doOverscan || ! options->overscan) {
    18         return true;
     18        return true;                    // No overscan fit to report
    1919    }
    2020
     
    3333                psStringAppend(&coeffs, "%e ", poly->coeff[i]);
    3434            }
    35             psLogMsg("phase2", PS_LOG_INFO, "Overscan polynomial coefficients:\n%s\n", coeffs);
     35            psLogMsg("ppImage", PS_LOG_INFO, "Overscan polynomial coefficients:\n%s\n", coeffs);
    3636            psFree(coeffs);
    3737            break;
     
    4949                psStringAppend(&coeffs, "\n");
    5050            }
    51             psLogMsg("phase2", PS_LOG_INFO, "Overscan spline coefficients:\n%s\n", coeffs);
     51            psLogMsg("ppImage", PS_LOG_INFO, "Overscan spline coefficients:\n%s\n", coeffs);
    5252            psFree(coeffs);
    5353            break;
Note: See TracChangeset for help on using the changeset viewer.