Changeset 42890 for trunk/ppImage/src/ppImageDetrendPattern.c
- Timestamp:
- Jun 5, 2025, 3:34:33 PM (14 months ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageDetrendPattern.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageDetrendPattern.c
r42382 r42890 11 11 } 12 12 13 static bool doPatternForView(bool *doit, const pmConfig *config, const pmChip *chip, const pmFPAview *view, const char *recipename, const char *recipevalue);13 bool ppImageDoPatternForView(bool *doit, const pmConfig *config, const pmChip *chip, const pmFPAview *view, const char *recipename, const char *recipevalue); 14 14 15 15 bool ppImageDetrendPatternRowApply(pmConfig *config, pmChip *chip, const pmFPAview *inputView, ppImageOptions *options); … … 131 131 132 132 bool doPattern = false; 133 if (! doPatternForView(&doPattern, config, chip, view, RECIPE_NAME, "PATTERN.ROW.SUBSET")) {133 if (!ppImageDoPatternForView(&doPattern, config, chip, view, RECIPE_NAME, "PATTERN.ROW.SUBSET")) { 134 134 ESCAPE(false, "Unable to determine whether row pattern matching should be applied."); 135 135 } … … 213 213 214 214 bool doPattern = false; 215 if (! doPatternForView(&doPattern, config, chip, view, RECIPE_NAME, "PATTERN.CONTINUITY.SUBSET")) {215 if (!ppImageDoPatternForView(&doPattern, config, chip, view, RECIPE_NAME, "PATTERN.CONTINUITY.SUBSET")) { 216 216 ESCAPE(false, "Unable to determine whether row pattern matching should be applied."); 217 217 } … … 271 271 272 272 bool doPattern = false; 273 if (! doPatternForView(&doPattern, config, chip, view, RECIPE_NAME, "PATTERN.CELL.SUBSET")) {273 if (!ppImageDoPatternForView(&doPattern, config, chip, view, RECIPE_NAME, "PATTERN.CELL.SUBSET")) { 274 274 ESCAPE(false, "Unable to determine whether row pattern matching should be applied."); 275 275 } … … 449 449 } 450 450 451 static bool doPatternForView (bool *doit, const pmConfig *config, const pmChip *chip, const pmFPAview *view, const char *recipeName, const char *recipeValue) {451 bool ppImageDoPatternForView (bool *doit, const pmConfig *config, const pmChip *chip, const pmFPAview *view, const char *recipeName, const char *recipeValue) { 452 452 453 453 *doit = false;
Note:
See TracChangeset
for help on using the changeset viewer.
