IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 6, 2006, 1:45:35 PM (20 years ago)
Author:
jhoblitt
Message:

stub out -residexp

File:
1 edited

Legend:

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

    r7367 r7369  
    2626static bool residMode(pxConfig *config);
    2727static bool addresidexpMode(pxConfig *config);
     28static bool residexpMode(pxConfig *config);
    2829
    2930static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    107108        case DETTOOL_MODE_ADDRESIDEXP:
    108109            if (addresidexpMode(config)) {
     110                goto FAIL;
     111            }
     112            break;
     113        case DETTOOL_MODE_RESIDEXP:
     114            if (residexpMode(config)) {
    109115                goto FAIL;
    110116            }
     
    15981604    return true;
    15991605}
     1606
     1607static bool residexpMode(pxConfig *config)
     1608{
     1609    PS_ASSERT_PTR_NON_NULL(config, false);
     1610    return true;
     1611}
Note: See TracChangeset for help on using the changeset viewer.