IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 24, 2006, 1:28:48 PM (20 years ago)
Author:
jhoblitt
Message:

rename -*[master]* options to -*[normalized]*

File:
1 edited

Legend:

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

    r7195 r7196  
    1616static psArray *validDetInputClassIds(pxConfig *config, const char *det_id);
    1717static bool stacframeMode(pxConfig *config);
    18 static bool addmasterMode(pxConfig *config);
    19 static bool masterMode(pxConfig *config);
    20 static bool masterframeMode(pxConfig *config);
     18static bool addnormalizedMode(pxConfig *config);
     19static bool normalizedMode(pxConfig *config);
     20static bool normalizedframeMode(pxConfig *config);
    2121
    2222static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    6363            }
    6464            break;
    65         case DETTOOL_MODE_ADDMASTER:
    66             if (!addmasterMode(config)) {
     65        case DETTOOL_MODE_ADDNORMALIZED:
     66            if (!addnormalizedMode(config)) {
    6767                goto FAIL;
    6868            }
    6969            break;
    70         case DETTOOL_MODE_MASTER:
    71             if (masterMode(config)) {
     70        case DETTOOL_MODE_NORMALIZED:
     71            if (normalizedMode(config)) {
    7272                goto FAIL;
    7373            }
    7474            break;
    75         case DETTOOL_MODE_MASTERFRAME:
    76             if (masterframeMode(config)) {
     75        case DETTOOL_MODE_NORMALIZEDFRAME:
     76            if (normalizedframeMode(config)) {
    7777                goto FAIL;
    7878            }
     
    728728}
    729729
    730 static bool addmasterMode(pxConfig *config)
     730static bool addnormalizedMode(pxConfig *config)
    731731{
    732732    PS_ASSERT_PTR_NON_NULL(config, false);
     
    813813}
    814814
    815 static bool masterMode(pxConfig *config)
     815static bool normalizedMode(pxConfig *config)
    816816{
    817817    PS_ASSERT_PTR_NON_NULL(config, false);
     
    845845}
    846846
    847 static bool masterframeMode(pxConfig *config)
     847static bool normalizedframeMode(pxConfig *config)
    848848{
    849849    PS_ASSERT_PTR_NON_NULL(config, false);
Note: See TracChangeset for help on using the changeset viewer.