IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9111


Ignore:
Timestamp:
Oct 2, 2006, 2:18:32 PM (20 years ago)
Author:
jhoblitt
Message:

rename -normstat -> tonormstat

Location:
trunk/ippTools/src
Files:
3 edited

Legend:

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

    r9109 r9111  
    3030static bool tonormalizeMode(pxConfig *config);
    3131static bool addnormstatMode(pxConfig *config);
    32 static bool normstatMode(pxConfig *config);
     32static bool tonormstatMode(pxConfig *config);
    3333static bool addnormalizedimfileMode(pxConfig *config);
    3434static bool tonormalizedexpMode(pxConfig *config);
     
    9797        MODECASE(DETTOOL_MODE_TONORMALIZE,      tonormalizeMode);
    9898        MODECASE(DETTOOL_MODE_ADDNORMSTAT,      addnormstatMode);
    99         MODECASE(DETTOOL_MODE_NORMSTAT,         normstatMode);
     99        MODECASE(DETTOOL_MODE_TONORMSTAT,       tonormstatMode);
    100100        MODECASE(DETTOOL_MODE_ADDNORMALIZEDIMFILE,addnormalizedimfileMode);
    101101        MODECASE(DETTOOL_MODE_NORMALIZEDIMFILE, normalizedimfileMode);
     
    22732273}
    22742274
    2275 static bool normstatMode(pxConfig *config)
     2275static bool tonormstatMode(pxConfig *config)
    22762276{
    22772277    PS_ASSERT_PTR_NON_NULL(config, false);
  • trunk/ippTools/src/dettool.h

    r9073 r9111  
    2525    DETTOOL_MODE_TONORMALIZE,
    2626    DETTOOL_MODE_ADDNORMSTAT,
    27     DETTOOL_MODE_NORMSTAT,
     27    DETTOOL_MODE_TONORMSTAT,
    2828    DETTOOL_MODE_ADDNORMALIZEDIMFILE,
    2929    DETTOOL_MODE_NORMALIZEDIMFILE,
  • trunk/ippTools/src/dettoolConfig.c

    r9109 r9111  
    229229        "define normal value (required)", NAN);
    230230 
    231     // -normstat
    232     psMetadata *normstatArgs = psMetadataAlloc();
    233     psMetadataAddBool(normstatArgs, PS_LIST_TAIL, "-simple",  0,
     231    // -tonormstat
     232    psMetadata *tonormstatArgs = psMetadataAlloc();
     233    psMetadataAddBool(tonormstatArgs, PS_LIST_TAIL, "-simple",  0,
    234234        "use the simple output format", false);
    235235   
     
    547547    PXTOOL_MODE("-tonormalize",     DETTOOL_MODE_TONORMALIZE,   tonormalizeArgs);
    548548    PXTOOL_MODE("-addnormstat",     DETTOOL_MODE_ADDNORMSTAT,   addnormstatArgs);
    549     PXTOOL_MODE("-normstat",        DETTOOL_MODE_NORMSTAT,      normstatArgs);
     549    PXTOOL_MODE("-tonormstat",      DETTOOL_MODE_TONORMSTAT,    tonormstatArgs);
    550550    PXTOOL_MODE("-stacked",         DETTOOL_MODE_STACKED,       stacArgs);
    551551//    PXTOOL_MODE("-stackedframe",    DETTOOL_MODE_STACKEDFRAME,  stacframeArgs);
Note: See TracChangeset for help on using the changeset viewer.