Changeset 7459
- Timestamp:
- Jun 9, 2006, 12:33:43 PM (20 years ago)
- Location:
- trunk/psModules/src/camera
- Files:
-
- 2 edited
-
pmHDUUtils.c (modified) (6 diffs)
-
pmHDUUtils.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmHDUUtils.c
r7278 r7459 5 5 6 6 7 pmHDU *pmHDUFromFPA( pmFPA *fpa// FPA for which to find HDU7 pmHDU *pmHDUFromFPA(const pmFPA *fpa // FPA for which to find HDU 8 8 ) 9 9 { … … 12 12 } 13 13 14 pmHDU *pmHDUFromChip( pmChip *chip// Chip for which to find HDU14 pmHDU *pmHDUFromChip(const pmChip *chip // Chip for which to find HDU 15 15 ) 16 16 { … … 25 25 } 26 26 27 pmHDU *pmHDUFromCell( pmCell *cell// Cell for which to find HDU27 pmHDU *pmHDUFromCell(const pmCell *cell // Cell for which to find HDU 28 28 ) 29 29 { … … 38 38 } 39 39 40 pmHDU *pmHDUFromReadout(pmReadout *readout) 40 pmHDU *pmHDUFromReadout(const pmReadout *readout // Readout for which to find HDU 41 ) 41 42 { 42 43 PS_ASSERT_PTR_NON_NULL(readout, NULL); … … 48 49 49 50 // Get the lowest HDU 50 pmHDU *pmHDUGetLowest( pmFPA *fpa, // The FPA51 pmChip *chip, // The chip, or NULL52 pmCell *cell // The cell, or NULL51 pmHDU *pmHDUGetLowest(const pmFPA *fpa, // The FPA 52 const pmChip *chip, // The chip, or NULL 53 const pmCell *cell // The cell, or NULL 53 54 ) 54 55 { … … 65 66 } 66 67 67 void pmHDUPrint( pmHDU *hdu,// HDU to print68 void pmHDUPrint(const pmHDU *hdu, // HDU to print 68 69 int level, // Level at which to print 69 70 bool header // Print header? -
trunk/psModules/src/camera/pmHDUUtils.h
r7168 r7459 6 6 7 7 // Get the lowest HDU in the hierarchy, as supplied 8 pmHDU *pmHDUGetLowest( pmFPA *fpa, // The FPA9 pmChip *chip, // The chip, or NULL10 pmCell *cell // The cell, or NULL8 pmHDU *pmHDUGetLowest(const pmFPA *fpa, // The FPA 9 const pmChip *chip, // The chip, or NULL 10 const pmCell *cell // The cell, or NULL 11 11 ); 12 12 13 13 // Find the HDU in the FPA hierarchy 14 pmHDU *pmHDUFromFPA( pmFPA *fpa// FPA for which to find HDU14 pmHDU *pmHDUFromFPA(const pmFPA *fpa // FPA for which to find HDU 15 15 ); 16 pmHDU *pmHDUFromChip( pmChip *chip// Chip for which to find HDU16 pmHDU *pmHDUFromChip(const pmChip *chip // Chip for which to find HDU 17 17 ); 18 pmHDU *pmHDUFromCell( pmCell *cell// Cell for which to find HDU18 pmHDU *pmHDUFromCell(const pmCell *cell // Cell for which to find HDU 19 19 ); 20 21 pmHDU *pmHDUFromReadout (pmReadout *readout // Readout for which to find HDU 22 ); 20 pmHDU *pmHDUFromReadout(const pmReadout *readout // Readout for which to find HDU 21 ); 23 22 24 23 // Print details about an HDU 25 void pmHDUPrint( pmHDU *hdu,// HDU to print24 void pmHDUPrint(const pmHDU *hdu, // HDU to print 26 25 int level, // Level at which to print 27 26 bool header // Print header?
Note:
See TracChangeset
for help on using the changeset viewer.
