IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9123


Ignore:
Timestamp:
Oct 2, 2006, 4:44:19 PM (20 years ago)
Author:
jhoblitt
Message:

rename addnormstat -> addnormalizedstat
rename tonormstat -> tonormalizedstat

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ipptools/dettool.txt

    r9122 r9123  
    140140Pan-Tasks regularly runs:
    141141
    142         dettool -tonormstat
     142        dettool -tonormalizedstat
    143143
    144144This returns a list of detrend id and iteration for which the entire
     
    165165into the database:
    166166
    167         dettool -addnormstat -det_id <det_id> -iter <iter> -class_id <class_id> -norm <normalisation>
     167        dettool -addnormalizedstat -det_id <det_id> -iter <iter> -class_id <class_id> -norm <normalisation>
    168168
    169169In practise, the above three commands ("dettool -processedimfile",
    170 "ppNormCalc" and "dettool -addnormstat") will be performed by a Perl
     170"ppNormCalc" and "dettool -addnormalizedstat") will be performed by a Perl
    171171script, "detrend_norm_calc.pl".
    172172
     
    175175matrix with ppNormCalc.
    176176
    177 *** To do: possible upgrade path is to have "dettool -addnormstat"
     177*** To do: possible upgrade path is to have "dettool -addnormalizedstat"
    178178           parse a metadata config file from ppNorm to get the
    179179           multiple normalisations, instead of running it several
  • trunk/ippTools/src/dettool.c

    r9119 r9123  
    3030static bool stacframeMode(pxConfig *config); // needed?
    3131static bool tonormalizeMode(pxConfig *config);
    32 static bool addnormstatMode(pxConfig *config);
    33 static bool tonormstatMode(pxConfig *config);
     32static bool addnormalizedstatMode(pxConfig *config);
     33static bool tonormalizedstatMode(pxConfig *config);
    3434static bool addnormalizedimfileMode(pxConfig *config);
    3535static bool tonormalizedexpMode(pxConfig *config);
     
    9898        MODECASE(DETTOOL_MODE_STACKEDFRAME,     stacframeMode); // needed?
    9999        MODECASE(DETTOOL_MODE_TONORMALIZE,      tonormalizeMode);
    100         MODECASE(DETTOOL_MODE_ADDNORMSTAT,      addnormstatMode);
    101         MODECASE(DETTOOL_MODE_TONORMSTAT,       tonormstatMode);
     100        MODECASE(DETTOOL_MODE_ADDNORMALIZEDSTAT,addnormalizedstatMode);
     101        MODECASE(DETTOOL_MODE_TONORMALIZEDSTAT, tonormalizedstatMode);
    102102        MODECASE(DETTOOL_MODE_ADDNORMALIZEDIMFILE,addnormalizedimfileMode);
    103103        MODECASE(DETTOOL_MODE_NORMALIZEDIMFILE, normalizedimfileMode);
     
    21032103}
    21042104
    2105 static bool tonormalizeMode(pxConfig *config)
     2105static bool tonormalizedstatMode(pxConfig *config)
    21062106{
    21072107    PS_ASSERT_PTR_NON_NULL(config, false);
     
    21832183}
    21842184
    2185 static bool addnormstatMode(pxConfig *config)
     2185static bool addnormalizedstatMode(pxConfig *config)
    21862186{
    21872187    PS_ASSERT_PTR_NON_NULL(config, NULL);
     
    22902290}
    22912291
    2292 static bool tonormstatMode(pxConfig *config)
     2292static bool tonormalizeMode(pxConfig *config)
    22932293{
    22942294    PS_ASSERT_PTR_NON_NULL(config, false);
  • trunk/ippTools/src/dettool.h

    r9115 r9123  
    2525    DETTOOL_MODE_STACKEDFRAME,
    2626    DETTOOL_MODE_TONORMALIZE,
    27     DETTOOL_MODE_ADDNORMSTAT,
    28     DETTOOL_MODE_TONORMSTAT,
     27    DETTOOL_MODE_ADDNORMALIZEDSTAT,
     28    DETTOOL_MODE_TONORMALIZEDSTAT,
    2929    DETTOOL_MODE_ADDNORMALIZEDIMFILE,
    3030    DETTOOL_MODE_NORMALIZEDIMFILE,
  • trunk/ippTools/src/dettoolConfig.c

    r9115 r9123  
    550550    PXTOOL_MODE("-addstacked",      DETTOOL_MODE_ADDSTACKED,    addstacArgs);
    551551    PXTOOL_MODE("-tonormalize",     DETTOOL_MODE_TONORMALIZE,   tonormalizeArgs);
    552     PXTOOL_MODE("-addnormstat",     DETTOOL_MODE_ADDNORMSTAT,   addnormstatArgs);
    553     PXTOOL_MODE("-tonormstat",      DETTOOL_MODE_TONORMSTAT,    tonormstatArgs);
     552    PXTOOL_MODE("-addnormalizedstat",     DETTOOL_MODE_ADDNORMALIZEDSTAT,   addnormstatArgs);
     553    PXTOOL_MODE("-tonormalizedstat",      DETTOOL_MODE_TONORMALIZEDSTAT,    tonormstatArgs);
    554554    PXTOOL_MODE("-stacked",         DETTOOL_MODE_STACKED,       stacArgs);
    555555//    PXTOOL_MODE("-stackedframe",    DETTOOL_MODE_STACKEDFRAME,  stacframeArgs);
Note: See TracChangeset for help on using the changeset viewer.