Changeset 9608 for trunk/psModules/src/camera/pmHDUUtils.c
- Timestamp:
- Oct 16, 2006, 5:42:55 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmHDUUtils.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmHDUUtils.c
r8815 r9608 9 9 10 10 11 pmHDU *pmHDUFromFPA(const pmFPA *fpa // FPA for which to find HDU 12 ) 11 pmHDU *pmHDUFromFPA(const pmFPA *fpa) 13 12 { 14 13 PS_ASSERT_PTR_NON_NULL(fpa, NULL); … … 16 15 } 17 16 18 pmHDU *pmHDUFromChip(const pmChip *chip // Chip for which to find HDU 19 ) 17 pmHDU *pmHDUFromChip(const pmChip *chip) 20 18 { 21 19 PS_ASSERT_PTR_NON_NULL(chip, NULL); … … 29 27 } 30 28 31 pmHDU *pmHDUFromCell(const pmCell *cell // Cell for which to find HDU 32 ) 29 pmHDU *pmHDUFromCell(const pmCell *cell) 33 30 { 34 31 PS_ASSERT_PTR_NON_NULL(cell, NULL); … … 42 39 } 43 40 44 pmHDU *pmHDUFromReadout(const pmReadout *readout // Readout for which to find HDU 45 ) 41 pmHDU *pmHDUFromReadout(const pmReadout *readout) 46 42 { 47 43 PS_ASSERT_PTR_NON_NULL(readout, NULL); … … 53 49 54 50 // Get the lowest HDU 55 pmHDU *pmHDUGetLowest(const pmFPA *fpa, // The FPA 56 const pmChip *chip, // The chip, or NULL 57 const pmCell *cell // The cell, or NULL 58 ) 51 pmHDU *pmHDUGetLowest(const pmFPA *fpa, const pmChip *chip, const pmCell *cell) 59 52 { 60 53 pmHDU *hdu = NULL; // The HDU that's at the lowest level … … 71 64 72 65 // Get the highest HDU 73 pmHDU *pmHDUGetHighest(const pmFPA *fpa, // The FPA 74 const pmChip *chip, // The chip, or NULL 75 const pmCell *cell // The cell, or NULL 76 ) 66 pmHDU *pmHDUGetHighest(const pmFPA *fpa, const pmChip *chip, const pmCell *cell) 77 67 { 78 68 pmHDU *hdu = NULL; // The HDU that's at the highest level … … 90 80 } 91 81 92 void pmHDUPrint(FILE *fd, // File descriptor to which to print 93 const pmHDU *hdu, // HDU to print 94 int level, // Level at which to print 95 bool header // Print header? 96 ) 82 void pmHDUPrint(FILE *fd, const pmHDU *hdu, int level, bool header) 97 83 { 98 84 PS_ASSERT_PTR_NON_NULL(hdu,);
Note:
See TracChangeset
for help on using the changeset viewer.
