Changeset 32698
- Timestamp:
- Nov 17, 2011, 2:23:38 PM (15 years ago)
- Location:
- tags/ipp-20111110/ppSub/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
ppSubReadoutInverse.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20111110/ppSub/src
- Property svn:mergeinfo set to
-
tags/ipp-20111110/ppSub/src/ppSubReadoutInverse.c
r30619 r32698 11 11 { 12 12 psAssert(config, "Require configuration"); 13 13 // Check configuration for convolve option 14 psMetadata *recipe = psMetadataLookupPtr(NULL, config->recipes, PPSUB_RECIPE); 15 bool noConvolve = psMetadataLookupBool(NULL, recipe, "NOCONVOLVE"); // Do not use convolved images. 16 14 17 pmFPAview *view = ppSubViewReadout(); // View to readout 15 18 pmReadout *outRO = pmFPAfileThisReadout(config->files, view, "PPSUB.OUTPUT"); … … 25 28 26 29 // Get concepts from reference 27 pmFPAfile *refFile = psMetadataLookupPtr(NULL, config->files, "PPSUB.REF.CONV"); // File with concepts 30 pmFPAfile *refFile; 31 if (noConvolve) { 32 refFile = psMetadataLookupPtr(NULL, config->files, "PPSUB.REF"); // File with concepts 33 } 34 else { 35 refFile = psMetadataLookupPtr(NULL, config->files, "PPSUB.REF.CONV"); // File with concepts 36 } 28 37 pmFPA *invFPA = invRO->parent->parent->parent; // Inverse FPA 29 38 pmConceptsCopyFPA(invFPA, refFile->fpa, true, true);
Note:
See TracChangeset
for help on using the changeset viewer.
