Changeset 30636 for trunk/psModules/src/camera/pmFPAfileDefine.c
- Timestamp:
- Feb 14, 2011, 2:58:01 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psModules/src/camera/pmFPAfileDefine.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/czw_branch/20101203 merged: 30118-30119,30255,30331,30419,30586-30587,30631
- Property svn:mergeinfo changed
-
trunk/psModules/src/camera/pmFPAfileDefine.c
r27657 r30636 282 282 case PS_FITS_SCALE_NONE: 283 283 case PS_FITS_SCALE_RANGE: 284 case PS_FITS_SCALE_LOG_RANGE: 284 285 // No options required 285 286 break; 286 287 case PS_FITS_SCALE_STDEV_POSITIVE: 287 288 case PS_FITS_SCALE_STDEV_NEGATIVE: 289 case PS_FITS_SCALE_LOG_STDEV_POSITIVE: 290 case PS_FITS_SCALE_LOG_STDEV_NEGATIVE: 288 291 options->stdevNum = parseOptionFloat(scheme, "STDEV.NUM", source); // Padding to edge 289 292 if (!isfinite(options->stdevNum)) { … … 295 298 // Flow through 296 299 case PS_FITS_SCALE_STDEV_BOTH: 300 case PS_FITS_SCALE_LOG_STDEV_BOTH: 297 301 options->stdevBits = parseOptionInt(scheme, "STDEV.BITS", source, 0); // Bits for stdev 298 302 if (options->stdevBits <= 0) { … … 308 312 options->bzero = parseOptionDouble(scheme, "BZERO", source); // Zero point 309 313 break; 314 case PS_FITS_SCALE_LOG_MANUAL: 315 options->bscale = parseOptionDouble(scheme, "BSCALE", source); // Scaling 316 options->bzero = parseOptionDouble(scheme, "BZERO", source); // Zero point 317 options->boffset = parseOptionDouble(scheme, "BOFFSET", source); // Log offset 318 break; 310 319 default: 311 320 psAbort("Should never get here.");
Note:
See TracChangeset
for help on using the changeset viewer.
