IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 26, 2006, 4:43:36 PM (20 years ago)
Author:
jhoblitt
Message:

rename:

ppRawFrame -> rawScienceFrame
ppRawFrameFree() -> rawScienceFrameFree()
ppRawFrameAlloc() -> rawScienceFrameAlloc()

File:
1 edited

Legend:

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

    r6220 r6221  
    5353    psArray *rawFrames = p2searchRawFrames(config);
    5454    if (!rawFrames) {
    55         psError(PS_ERR_UNKNOWN, false, "no ppRawFrames found");
     55        psError(PS_ERR_UNKNOWN, false, "no rawScienceFrames found");
    5656        return false;
    5757    }
     
    7474    psArray *rawFrames = p2searchRawFrames(config);
    7575    if (!rawFrames) {
    76         psError(PS_ERR_UNKNOWN, false, "no ppRawFrames found");
     76        psError(PS_ERR_UNKNOWN, false, "no rawScienceFrames found");
    7777        return false;
    7878    }
     
    8484    if (pendingFrames) {
    8585        for (int i = 0; i < rawFrames->n; i++) {
    86             ppRawFrame *rawFrame = rawFrames->data[i];
     86            rawScienceFrame *rawFrame = rawFrames->data[i];
    8787            for (int j = 0; j < pendingFrames->n; j++) {
    8888                p2PendingFrame *pendingFrame = pendingFrames->data[j];
     
    104104    if (doneFrames && (rawFrames->n > 0)) {
    105105        for (int i = 0; i < rawFrames->n; i++) {
    106             ppRawFrame *rawFrame = rawFrames->data[i];
     106            rawScienceFrame *rawFrame = rawFrames->data[i];
    107107            for (int j = 0; j < pendingFrames->n; j++) {
    108108                p2DoneFrame *doneFrame = pendingFrames->data[j];
     
    122122
    123123    if (!rawFrames->n > 0) {
    124         psError(PS_ERR_UNKNOWN, false, "no unprocessed ppRawFrames found");
     124        psError(PS_ERR_UNKNOWN, false, "no unprocessed rawScienceFrames found");
    125125        psFree(rawFrames);
    126126        return false;
Note: See TracChangeset for help on using the changeset viewer.