Changeset 18766
- Timestamp:
- Jul 29, 2008, 11:39:55 AM (18 years ago)
- Location:
- branches/eam_branch_20080719/psModules/src/camera
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branch_20080719/psModules/src/camera/pmFPA.c
r18622 r18766 176 176 readout->col0 = 0; 177 177 readout->row0 = 0; 178 readout->imageScan = 0; 179 readout->maskScan = 0; 180 readout->weightScan = 0; 178 179 readout->thisImageScan = 0; 180 readout->thisMaskScan = 0; 181 readout->thisWeightScan = 0; 182 183 readout->lastImageScan = 0; 184 readout->lastMaskScan = 0; 185 readout->lastWeightScan = 0; 181 186 } 182 187 … … 269 274 tmpReadout->col0 = 0; 270 275 271 tmpReadout->imageScan = 0; 272 tmpReadout->maskScan = 0; 273 tmpReadout->weightScan = 0; 276 tmpReadout->thisImageScan = 0; 277 tmpReadout->thisMaskScan = 0; 278 tmpReadout->thisWeightScan = 0; 279 280 tmpReadout->lastImageScan = 0; 281 tmpReadout->lastMaskScan = 0; 282 tmpReadout->lastWeightScan = 0; 274 283 275 284 return(tmpReadout); -
branches/eam_branch_20080719/psModules/src/camera/pmFPA.h
r17911 r18766 6 6 * @author Eugene Magnier, IfA 7 7 * 8 * @version $Revision: 1.22 $ $Name: not supported by cvs2svn $9 * @date $Date: 2008-0 6-05 01:31:33$8 * @version $Revision: 1.22.14.1 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2008-07-29 21:39:55 $ 10 10 * Copyright 2005-2006 Institute for Astronomy, University of Hawaii 11 11 */ … … 127 127 bool file_exists; ///< Does the file for this readout exist (read case only)? 128 128 bool data_exists; ///< Does the data for this readout exist (read case only)? 129 int imageScan, maskScan, weightScan;///< Separate tracking numbers for reading images incrementally 129 int thisImageScan; ///< start scan for next/current read 130 int lastImageScan; ///< start scan of the last read 131 int thisMaskScan; ///< start scan for next/current read 132 int lastMaskScan; ///< start scan of the last read 133 int thisWeightScan; ///< start scan for next/current read 134 int lastWeightScan; ///< start scan of the last read 130 135 } pmReadout; 131 136
Note:
See TracChangeset
for help on using the changeset viewer.
