Changeset 26982 for trunk/ppSub/src/ppSubVarianceRescale.c
- Timestamp:
- Feb 17, 2010, 5:36:13 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/ppSub/src/ppSubVarianceRescale.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppSub/src/ppSubVarianceRescale.c
r25374 r26982 35 35 int num = psMetadataLookupS32(&mdok, recipe, "RENORM.NUM"); 36 36 if (!mdok) { 37 psError(P S_ERR_BAD_PARAMETER_VALUE, true, "RENORM.NUM is not set in the recipe");37 psError(PPSUB_ERR_ARGUMENTS, true, "RENORM.NUM is not set in the recipe"); 38 38 return false; 39 39 } 40 40 float minValid = psMetadataLookupF32(&mdok, recipe, "RENORM.MIN"); 41 41 if (!mdok) { 42 psError(P S_ERR_BAD_PARAMETER_VALUE, true, "RENORM.MIN is not set in the recipe");42 psError(PPSUB_ERR_ARGUMENTS, true, "RENORM.MIN is not set in the recipe"); 43 43 return false; 44 44 } 45 45 float maxValid = psMetadataLookupF32(&mdok, recipe, "RENORM.MAX"); 46 46 if (!mdok) { 47 psError(P S_ERR_BAD_PARAMETER_VALUE, true, "RENORM.MAX is not set in the recipe");47 psError(PPSUB_ERR_ARGUMENTS, true, "RENORM.MAX is not set in the recipe"); 48 48 return false; 49 49 }
Note:
See TracChangeset
for help on using the changeset viewer.
