- Timestamp:
- Mar 5, 2012, 5:19:48 PM (14 years ago)
- Location:
- branches/meh_branches/ppstack_test
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppSub/src/ppSubMatchPSFs.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/meh_branches/ppstack_test
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/ppSub/src/ppSubMatchPSFs.c
r31672 r33415 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.
