Changeset 16689
- Timestamp:
- Feb 27, 2008, 2:15:03 PM (18 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 2 edited
-
camera/pmFPA.c (modified) (1 diff)
-
imcombine/pmStack.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPA.c
r16416 r16689 172 172 readout->mask = NULL; 173 173 readout->bias = psListAlloc(NULL); 174 175 readout->col0 = 0; 176 readout->row0 = 0; 177 178 readout->imageScan = 0; 179 readout->maskScan = 0; 180 readout->weightScan = 0; 174 181 } 175 182 -
trunk/psModules/src/imcombine/pmStack.c
r16685 r16689 8 8 * @author GLG, MHPCC 9 9 * 10 * @version $Revision: 1.2 6$ $Name: not supported by cvs2svn $11 * @date $Date: 2008-02-2 7 21:16:57$10 * @version $Revision: 1.27 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2008-02-28 00:15:03 $ 12 12 * Copyright 2004-2007 Institute for Astronomy, University of Hawaii 13 13 * … … 541 541 PS_ASSERT_INT_POSITIVE(bad, false); 542 542 PS_ASSERT_INT_NONNEGATIVE(numIter, false); 543 PS_ASSERT_FLOAT_LARGER_THAN(rej, 0.0, false); 543 if (isnan(rej)) { 544 PS_ASSERT_INT_EQUAL(numIter, 0); 545 } else { 546 PS_ASSERT_FLOAT_LARGER_THAN(rej, 0.0, false); 547 } 544 548 if (havePixels) { 545 549 // This is a subsequent combination, so expect that the image and mask already exist
Note:
See TracChangeset
for help on using the changeset viewer.
