Changeset 9986 for trunk/psModules/src/camera/pmHDUGenerate.c
- Timestamp:
- Nov 14, 2006, 3:11:21 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmHDUGenerate.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmHDUGenerate.c
r9983 r9986 303 303 int numReadouts = -1; // Number of readouts 304 304 psElemType imageType = 0; // Type of readout images 305 psElemType maskType = 0; // Type of readout masks305 psElemType maskType = 0; // Type of readout masks 306 306 psElemType weightType = 0; // Type of readout weights 307 307 { … … 324 324 } 325 325 326 if ( readout->image) {326 if (!hdu->images && readout->image) { 327 327 imageType = checkTypes(imageType, readout->image->type.type); 328 328 } 329 if ( readout->mask) {329 if (!hdu->masks && readout->mask) { 330 330 maskType = checkTypes(maskType, readout->mask->type.type); 331 331 } 332 if ( readout->weight) {332 if (!hdu->weights && readout->weight) { 333 333 weightType = checkTypes(weightType, readout->weight->type.type); 334 334 }
Note:
See TracChangeset
for help on using the changeset viewer.
