IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6669


Ignore:
Timestamp:
Mar 21, 2006, 2:30:44 PM (20 years ago)
Author:
jhoblitt
Message:

add -pending mode

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pxframes.c

    r6668 r6669  
    116116}
    117117
     118PX_FRAME_SEARCH(pzPendingFrame, pzPendingExp, pzPendingImfile);
    118119PX_FRAME_SEARCH(newFrame, newExp, newImfile);
    119120PX_FRAME_SEARCH(rawDetrendFrame, rawDetrendExp, rawImfile);
  • trunk/ippTools/src/pztool.c

    r6662 r6669  
    8888{
    8989    PS_ASSERT_PTR_NON_NULL(config, false);
     90
     91    psArray *new = pzPendingFrameSearch(config);
     92    if (!new) {
     93        psError(PS_ERR_UNKNOWN, false, "no pzPendingFrames found");
     94        return false;
     95    }
     96
     97    bool status = pzPendingFramePrint(stdout, config, new);
     98    if (!status) {
     99        psError(PS_ERR_UNKNOWN, false, "pzPendingFramePrint() failed");
     100        return false;
     101    }
     102
     103    return true;
    90104}
    91105
Note: See TracChangeset for help on using the changeset viewer.