Changeset 32676 for trunk/ppSub/src/ppSubMatchPSFs.c
- Timestamp:
- Nov 16, 2011, 10:48:28 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/ppSub/src/ppSubMatchPSFs.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppSub/src/ppSubMatchPSFs.c
r31672 r32676 201 201 bool ppSubMatchPSFs(ppSubData *data) 202 202 { 203 bool mdok = false; 204 203 205 psAssert(data, "Require processing data"); 204 206 pmConfig *config = data->config; // Configuration … … 208 210 psMetadata *recipe = psMetadataLookupMetadata(NULL, config->recipes, PPSUB_RECIPE); // Recipe for ppSim 209 211 psAssert(recipe, "We checked this earlier, so it should be here."); 212 213 bool noConvolve = psMetadataLookupBool(&mdok, recipe, "NOCONVOLVE"); // Do not use convolved images. 214 if (noConvolve) { 215 psWarning("not matching PSFs because NOCONVOLVE is TRUE\n"); 216 return true; 217 } 210 218 211 219 pmFPAview *view = ppSubViewReadout(); // View to readout … … 228 236 psFree(refConv); 229 237 } 230 231 bool mdok; // Status of MD lookup232 238 233 239 // Load pre-calculated kernel, if available
Note:
See TracChangeset
for help on using the changeset viewer.
