Changeset 33690 for trunk/psphot/src/psphotStackParseCamera.c
- Timestamp:
- Apr 3, 2012, 5:46:39 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/psphot/src/psphotStackParseCamera.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotStackParseCamera.c
r31154 r33690 59 59 } 60 60 } 61 psString expnum = psMetadataLookupStr(&status, input, "RAW:EXPNUM"); // Name of expnum image 62 if (expnum && strlen(expnum) > 0) { 63 if (!defineFile(config, rawInputFile, "PSPHOT.STACK.EXPNUM.RAW", expnum, PM_FPA_FILE_EXPNUM)) { 64 psError(PS_ERR_UNKNOWN, false, "Unable to define file from expnum %d (%s)", i, expnum); 65 return false; 66 } 67 } 61 68 nRaw ++; 62 69 } … … 81 88 if (!defineFile(config, cnvInputFile, "PSPHOT.STACK.VARIANCE.CNV", variance, PM_FPA_FILE_VARIANCE)) { 82 89 psError(PS_ERR_UNKNOWN, false, "Unable to define file from variance %d (%s)", i, variance); 90 return false; 91 } 92 } 93 psString expnum = psMetadataLookupStr(&status, input, "CNV:EXPNUM"); // Name of EXPNUM image 94 if (expnum && strlen(expnum) > 0) { 95 if (!defineFile(config, cnvInputFile, "PSPHOT.STACK.EXPNUM.CNV", expnum, PM_FPA_FILE_EXPNUM)) { 96 psError(PS_ERR_UNKNOWN, false, "Unable to define file from expnum %d (%s)", i, expnum); 83 97 return false; 84 98 }
Note:
See TracChangeset
for help on using the changeset viewer.
