IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 14076


Ignore:
Timestamp:
Jul 9, 2007, 10:06:15 AM (19 years ago)
Author:
jhoblitt
Message:

rename -residdetrun -> -todetrunsummary

Location:
trunk/ippTools/src
Files:
3 edited

Legend:

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

    r14075 r14076  
    6464static bool addresidexpMode(pxConfig *config);
    6565static bool residexpMode(pxConfig *config);
    66 static bool residdetrunMode(pxConfig *config);
     66static bool todetrunsummaryMode(pxConfig *config);
    6767static bool updateresidexpMode(pxConfig *config);
    6868static bool adddetrunsummaryMode(pxConfig *config);
     
    135135        MODECASE(DETTOOL_MODE_ADDRESIDEXP,      addresidexpMode);
    136136        MODECASE(DETTOOL_MODE_RESIDEXP,         residexpMode);
    137         MODECASE(DETTOOL_MODE_RESIDDETRUN,      residdetrunMode);
     137        MODECASE(DETTOOL_MODE_TODETRUNSUMMARY,  todetrunsummaryMode);
    138138        MODECASE(DETTOOL_MODE_UPDATERESIDEXP,   updateresidexpMode);
    139139        MODECASE(DETTOOL_MODE_ADDDETRUNSUMMARY, adddetrunsummaryMode);
     
    52575257}
    52585258
    5259 static bool residdetrunMode(pxConfig *config)
     5259static bool todetrunsummaryMode(pxConfig *config)
    52605260{
    52615261    PS_ASSERT_PTR_NON_NULL(config, false);
     
    53145314        "   HAVING\n"
    53155315        "       COUNT(detResidExp.exp_id) = COUNT(detInputExp.exp_id)\n"
    5316         " ) AS residdetrun\n"
     5316        " ) AS Foo\n"
    53175317        );
    53185318
  • trunk/ippTools/src/dettool.h

    r13575 r14076  
    5656    DETTOOL_MODE_RESIDEXP,
    5757    DETTOOL_MODE_ADDRESIDEXP,
    58     DETTOOL_MODE_RESIDDETRUN,
     58    DETTOOL_MODE_TODETRUNSUMMARY,
    5959    DETTOOL_MODE_UPDATERESIDEXP,
    6060    DETTOOL_MODE_ADDDETRUNSUMMARY,
  • trunk/ippTools/src/dettoolConfig.c

    r14074 r14076  
    765765            "use the simple output format", false);
    766766
    767     // -residdetrun
    768     psMetadata *residdetrunArgs = psMetadataAlloc();
    769     psMetadataAddBool(residdetrunArgs, PS_LIST_TAIL, "-simple",  0,
    770             "use the simple output format", false);
    771     psMetadataAddU64(residdetrunArgs, PS_LIST_TAIL, "-limit",  0,
     767    // -todetrunsummary
     768    psMetadata *todetrunsummaryArgs = psMetadataAlloc();
     769    psMetadataAddBool(todetrunsummaryArgs, PS_LIST_TAIL, "-simple",  0,
     770            "use the simple output format", false);
     771    psMetadataAddU64(todetrunsummaryArgs, PS_LIST_TAIL, "-limit",  0,
    772772            "limit result set to N items", 0);
    773773
     
    953953    PXTOOL_ADD_MODE("-addresidexp",     "", DETTOOL_MODE_ADDRESIDEXP,  addresidexpArgs);
    954954    PXTOOL_ADD_MODE("-residexp",        "", DETTOOL_MODE_RESIDEXP,     residexpArgs);
    955     PXTOOL_ADD_MODE("-residdetrun",     "", DETTOOL_MODE_RESIDDETRUN,  residdetrunArgs);
     955    PXTOOL_ADD_MODE("-todetrunsummary",  "", DETTOOL_MODE_TODETRUNSUMMARY,  todetrunsummaryArgs);
    956956    PXTOOL_ADD_MODE("-updateresidexp", "", DETTOOL_MODE_UPDATERESIDEXP,updateresidexpArgs);
    957957    PXTOOL_ADD_MODE("-adddetrunsummary", "", DETTOOL_MODE_ADDDETRUNSUMMARY,adddetrunsummaryArgs);
Note: See TracChangeset for help on using the changeset viewer.