Changeset 23688 for trunk/psModules
- Timestamp:
- Apr 2, 2009, 2:51:37 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
. (modified) (1 prop)
-
psModules (modified) (1 prop)
-
psModules/src/config/pmConfigRecipes.c (modified) (7 diffs)
-
psModules/src/config/pmErrorCodes.dat (modified) (1 diff)
-
psModules/src/imcombine/pmSubtractionMatch.c (modified) (2 diffs)
-
psModules/src/imcombine/pmSubtractionStamps.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/pap (added) merged: 23511,23520-23521,23532,23578-23581,23596-23599,23603-23604,23606-23608,23619-23621,23638-23639,23641,23646-23648,23651-23653,23656,23672-23674,23677-23684
- Property svn:mergeinfo changed
-
trunk/psModules
- Property svn:mergeinfo changed
/branches/pap/psModules (added) merged: 23578-23579,23620,23656
- Property svn:mergeinfo changed
-
trunk/psModules/src/config/pmConfigRecipes.c
r23286 r23688 81 81 psTrace ("psModules.config", 3, "read recipes from camera config"); 82 82 } else { 83 ps LogMsg("psModules.config", PS_LOG_DETAIL, "no recipe supplied by camera config");83 psTrace ("psModules.config", PS_LOG_DETAIL, "no recipe supplied by camera config"); 84 84 } 85 85 } … … 97 97 psTrace ("psModules.config", 3, "read recipes from symbolic references"); 98 98 } else { 99 ps LogMsg("psModules.config", PS_LOG_DETAIL, "no recipe supplied by symbolic reference");99 psTrace ("psModules.config", PS_LOG_DETAIL, "no recipe supplied by symbolic reference"); 100 100 } 101 101 … … 105 105 return false; 106 106 } 107 ps LogMsg("psModules.config", PS_LOG_DETAIL, "merged camera recipes with system recipes");107 psTrace ("psModules.config", PS_LOG_DETAIL, "merged camera recipes with system recipes"); 108 108 109 109 // load recipe-files specified on the command line … … 115 115 psTrace ("psModules.config", 3, "read recipes from command-line arguments"); 116 116 } else { 117 ps LogMsg("psModules.config", PS_LOG_DETAIL, "no recipe supplied on command-line arguments");117 psTrace ("psModules.config", PS_LOG_DETAIL, "no recipe supplied on command-line arguments"); 118 118 } 119 119 … … 126 126 psTrace ("psModules.config", 3, "read recipes from symbolic references"); 127 127 } else { 128 ps LogMsg("psModules.config", PS_LOG_DETAIL, "no recipe supplied by symbolic reference");128 psTrace ("psModules.config", PS_LOG_DETAIL, "no recipe supplied by symbolic reference"); 129 129 } 130 130 … … 137 137 psTrace ("psModules.config", 3, "read recipes from command-line arguments"); 138 138 } else { 139 ps LogMsg("psModules.config", PS_LOG_DETAIL, "no recipe supplied on command-line arguments");139 psTrace ("psModules.config", PS_LOG_DETAIL, "no recipe supplied on command-line arguments"); 140 140 } 141 141 } … … 348 348 psFree(recipesIter); 349 349 return false; 350 }350 } 351 351 } 352 352 psFree(recipesIter); -
trunk/psModules/src/config/pmErrorCodes.dat
r13654 r23688 11 11 OBJECTS Problem in objects 12 12 SKY Problem in sky 13 STAMPS Unable to select stamps for PSF-matching 13 14 # these errors correspond to standard exit conditions 14 15 ARGUMENTS Incorrect arguments -
trunk/psModules/src/imcombine/pmSubtractionMatch.c
r23308 r23688 18 18 #include "pmSubtractionMask.h" 19 19 #include "pmSubtractionThreads.h" 20 #include "pmSubtractionVisual.h" 21 #include "pmErrorCodes.h" 22 20 23 #include "pmSubtractionMatch.h" 21 #include "pmSubtractionVisual.h"22 24 23 25 #define BG_STAT PS_STAT_ROBUST_MEDIAN // Statistic to use for background … … 73 75 stampSpacing, mode); 74 76 if (!*stamps) { 75 psError( PS_ERR_UNKNOWN, false, "Unable to find stamps.");77 psError(psErrorCodeLast(), false, "Unable to find stamps."); 76 78 return false; 77 79 } -
trunk/psModules/src/imcombine/pmSubtractionStamps.c
r21363 r23688 20 20 #include "pmModel.h" 21 21 #include "pmSource.h" 22 22 #include "pmErrorCodes.h" 23 23 24 24 #include "pmSubtraction.h" … … 355 355 if (numGood == 0 && numFound == 0) { 356 356 // No good stamps 357 psError(PM_ERR_STAMPS, true, "Unable to find suitable stamps"); 357 358 psFree(stamps); 358 359 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
