Changeset 9123
- Timestamp:
- Oct 2, 2006, 4:44:19 PM (20 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
doc/ipptools/dettool.txt (modified) (3 diffs)
-
ippTools/src/dettool.c (modified) (5 diffs)
-
ippTools/src/dettool.h (modified) (1 diff)
-
ippTools/src/dettoolConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/ipptools/dettool.txt
r9122 r9123 140 140 Pan-Tasks regularly runs: 141 141 142 dettool -tonorm stat142 dettool -tonormalizedstat 143 143 144 144 This returns a list of detrend id and iteration for which the entire … … 165 165 into the database: 166 166 167 dettool -addnorm stat -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> 168 168 169 169 In practise, the above three commands ("dettool -processedimfile", 170 "ppNormCalc" and "dettool -addnorm stat") will be performed by a Perl170 "ppNormCalc" and "dettool -addnormalizedstat") will be performed by a Perl 171 171 script, "detrend_norm_calc.pl". 172 172 … … 175 175 matrix with ppNormCalc. 176 176 177 *** To do: possible upgrade path is to have "dettool -addnorm stat"177 *** To do: possible upgrade path is to have "dettool -addnormalizedstat" 178 178 parse a metadata config file from ppNorm to get the 179 179 multiple normalisations, instead of running it several -
trunk/ippTools/src/dettool.c
r9119 r9123 30 30 static bool stacframeMode(pxConfig *config); // needed? 31 31 static bool tonormalizeMode(pxConfig *config); 32 static bool addnorm statMode(pxConfig *config);33 static bool tonorm statMode(pxConfig *config);32 static bool addnormalizedstatMode(pxConfig *config); 33 static bool tonormalizedstatMode(pxConfig *config); 34 34 static bool addnormalizedimfileMode(pxConfig *config); 35 35 static bool tonormalizedexpMode(pxConfig *config); … … 98 98 MODECASE(DETTOOL_MODE_STACKEDFRAME, stacframeMode); // needed? 99 99 MODECASE(DETTOOL_MODE_TONORMALIZE, tonormalizeMode); 100 MODECASE(DETTOOL_MODE_ADDNORM STAT, addnormstatMode);101 MODECASE(DETTOOL_MODE_TONORM STAT, tonormstatMode);100 MODECASE(DETTOOL_MODE_ADDNORMALIZEDSTAT,addnormalizedstatMode); 101 MODECASE(DETTOOL_MODE_TONORMALIZEDSTAT, tonormalizedstatMode); 102 102 MODECASE(DETTOOL_MODE_ADDNORMALIZEDIMFILE,addnormalizedimfileMode); 103 103 MODECASE(DETTOOL_MODE_NORMALIZEDIMFILE, normalizedimfileMode); … … 2103 2103 } 2104 2104 2105 static bool tonormalize Mode(pxConfig *config)2105 static bool tonormalizedstatMode(pxConfig *config) 2106 2106 { 2107 2107 PS_ASSERT_PTR_NON_NULL(config, false); … … 2183 2183 } 2184 2184 2185 static bool addnorm statMode(pxConfig *config)2185 static bool addnormalizedstatMode(pxConfig *config) 2186 2186 { 2187 2187 PS_ASSERT_PTR_NON_NULL(config, NULL); … … 2290 2290 } 2291 2291 2292 static bool tonorm statMode(pxConfig *config)2292 static bool tonormalizeMode(pxConfig *config) 2293 2293 { 2294 2294 PS_ASSERT_PTR_NON_NULL(config, false); -
trunk/ippTools/src/dettool.h
r9115 r9123 25 25 DETTOOL_MODE_STACKEDFRAME, 26 26 DETTOOL_MODE_TONORMALIZE, 27 DETTOOL_MODE_ADDNORM STAT,28 DETTOOL_MODE_TONORM STAT,27 DETTOOL_MODE_ADDNORMALIZEDSTAT, 28 DETTOOL_MODE_TONORMALIZEDSTAT, 29 29 DETTOOL_MODE_ADDNORMALIZEDIMFILE, 30 30 DETTOOL_MODE_NORMALIZEDIMFILE, -
trunk/ippTools/src/dettoolConfig.c
r9115 r9123 550 550 PXTOOL_MODE("-addstacked", DETTOOL_MODE_ADDSTACKED, addstacArgs); 551 551 PXTOOL_MODE("-tonormalize", DETTOOL_MODE_TONORMALIZE, tonormalizeArgs); 552 PXTOOL_MODE("-addnorm stat", DETTOOL_MODE_ADDNORMSTAT, addnormstatArgs);553 PXTOOL_MODE("-tonorm stat", DETTOOL_MODE_TONORMSTAT, tonormstatArgs);552 PXTOOL_MODE("-addnormalizedstat", DETTOOL_MODE_ADDNORMALIZEDSTAT, addnormstatArgs); 553 PXTOOL_MODE("-tonormalizedstat", DETTOOL_MODE_TONORMALIZEDSTAT, tonormstatArgs); 554 554 PXTOOL_MODE("-stacked", DETTOOL_MODE_STACKED, stacArgs); 555 555 // PXTOOL_MODE("-stackedframe", DETTOOL_MODE_STACKEDFRAME, stacframeArgs);
Note:
See TracChangeset
for help on using the changeset viewer.
