IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 6, 2006, 10:53:44 AM (20 years ago)
Author:
jhoblitt
Message:

stub out -addresidexp
minor options cleanup

File:
1 edited

Legend:

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

    r7353 r7363  
    2525static bool addresidMode(pxConfig *config);
    2626static bool residMode(pxConfig *config);
     27static bool addresidexpMode(pxConfig *config);
    2728
    2829static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    101102        case DETTOOL_MODE_RESID:
    102103            if (residMode(config)) {
     104                goto FAIL;
     105            }
     106            break;
     107        case DETTOOL_MODE_ADDRESIDEXP:
     108            if (addresidexpMode(config)) {
    103109                goto FAIL;
    104110            }
     
    14951501    return true;
    14961502}
     1503
     1504static bool addresidexpMode(pxConfig *config)
     1505{
     1506    PS_ASSERT_PTR_NON_NULL(config, false);
     1507    return true;
     1508}
Note: See TracChangeset for help on using the changeset viewer.