Changeset 27004 for trunk/ppStack/src/ppStackPSF.c
- Timestamp:
- Feb 18, 2010, 6:42:01 PM (16 years ago)
- Location:
- trunk/ppStack/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppStackPSF.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStack/src
- Property svn:ignore
-
old new 10 10 stamp-h1 11 11 ppStackVersionDefinitions.h 12 ppStackErrorCodes.c 13 ppStackErrorCodes.h
-
- Property svn:ignore
-
trunk/ppStack/src/ppStackPSF.c
r26898 r27004 28 28 psString maskValStr = psMetadataLookupStr(&mdok, recipe, "MASK.VAL"); // Name of bits to mask going in 29 29 if (!mdok || !maskValStr) { 30 psError(P S_ERR_UNKNOWN, false, "Unable to find MASK.VAL in recipe");30 psError(PPSTACK_ERR_CONFIG, false, "Unable to find MASK.VAL in recipe"); 31 31 return false; 32 32 } … … 43 43 pmPSF *psf = pmPSFEnvelope(numCols, numRows, psfs, psfInstances, psfRadius, psfModel, psfOrder, psfOrder, maskVal); 44 44 if (!psf) { 45 psError(P S_ERR_UNKNOWN, false, "Unable to determine output PSF.");45 psError(PPSTACK_ERR_PSF, false, "Unable to determine output PSF."); 46 46 return NULL; 47 47 } … … 50 50 pmPSF *psf = pmPSFBuildSimple("PS_MODEL_PS1_V1", 4.0, 4.0, 0.0, 1.0); 51 51 if (!psf) { 52 psError(P S_ERR_UNKNOWN, false, "Unable to build dummy PSF.");52 psError(PPSTACK_ERR_PSF, false, "Unable to build dummy PSF."); 53 53 return NULL; 54 54 }
Note:
See TracChangeset
for help on using the changeset viewer.
