IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 30, 2013, 5:41:48 AM (13 years ago)
Author:
eugene
Message:

getting psphotFullForce to run (not quite there)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20130904/psphot/src/psphotMergeSources.c

    r36156 r36161  
    188188    psFree (detections);
    189189
    190     if (!extCMF && !extSourcesTXT) {
     190    if (!(extCMF || extCFF || extSourcesTXT)) {
    191191        psLogMsg ("psphot", 3, "no external sources for this readout");
    192192        return true;
     
    194194
    195195    int nCMF = extCMF        ? extCMF->allSources->n        : 0;
    196     int nTXT = extSourcesTXT ? extSourcesTXT->n : 0;
    197 
    198     psLogMsg ("psphot", 3, "%d external sources (%d cmf, %d text) merged to yield %ld total sources",
    199               nCMF + nTXT, nCMF, nTXT, sources->n);
     196    int nCFF = extCFF        ? extCFF->allSources->n        : 0;
     197    int nTXT = extSourcesTXT ? extSourcesTXT->n             : 0;
     198
     199    psLogMsg ("psphot", 3, "%d external sources (%d cmf, %d cff, %d text) merged to yield %ld total sources",
     200              nCMF + nCFF + nTXT, nCMF, nCFF, nTXT, sources->n);
    200201    return true;
    201202}
Note: See TracChangeset for help on using the changeset viewer.