Changeset 16660
- Timestamp:
- Feb 26, 2008, 1:09:19 PM (18 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 3 edited
-
flatcorr.c (modified) (3 diffs)
-
flatcorr.h (modified) (1 diff)
-
flatcorrConfig.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/flatcorr.c
r16621 r16660 34 34 35 35 static bool newrunMode(pxConfig *config); 36 static bool addexpMode(pxConfig *config); 36 37 static bool pendingMode(pxConfig *config); 37 38 static bool flatcorrimfileMode(pxConfig *config); … … 59 60 switch (config->mode) { 60 61 MODECASE(FLATCORR_MODE_NEWRUN, newrunMode); 62 MODECASE(FLATCORR_MODE_ADDEXP, addexpMode); 61 63 MODECASE(FLATCORR_MODE_PENDING, pendingMode); 62 64 MODECASE(FLATCORR_MODE_FLATCORRIMFILE, flatcorrimfileMode); … … 292 294 } 293 295 296 297 static bool addexpMode(pxConfig *config) 298 { 299 PS_ASSERT_PTR_NON_NULL(config, false); 300 301 return true; 302 } 303 304 294 305 static bool pendingMode(pxConfig *config) 295 306 { -
trunk/ippTools/src/flatcorr.h
r15758 r16660 26 26 FLATCORR_MODE_NONE = PXTOOL_MODE_NONE, 27 27 FLATCORR_MODE_NEWRUN, 28 FLATCORR_MODE_ADDEXP, 28 29 FLATCORR_MODE_PENDING, 29 30 FLATCORR_MODE_FLATCORRIMFILE, -
trunk/ippTools/src/flatcorrConfig.c
r16621 r16660 146 146 "use the simple output format", false); 147 147 148 // -addexp 149 psMetadata *addexpArgs = psMetadataAlloc(); 150 148 151 // -pending 149 152 psMetadata *pendingArgs = psMetadataAlloc(); … … 176 179 PXOPT_ADD_MODE("-newrun", "start a new flat correction run", 177 180 FLATCORR_MODE_NEWRUN, newrunArgs); 181 PXOPT_ADD_MODE("-addexp", "add an exp to a flat correction run", 182 FLATCORR_MODE_ADDEXP, addexpArgs); 178 183 PXOPT_ADD_MODE("-pending", "show flat correction runs needing to be processed", 179 184 FLATCORR_MODE_PENDING, pendingArgs);
Note:
See TracChangeset
for help on using the changeset viewer.
