Changeset 9592
- Timestamp:
- Oct 16, 2006, 3:29:02 PM (20 years ago)
- Location:
- trunk/psModules/src/camera
- Files:
-
- 2 edited
-
pmFPAHeader.c (modified) (3 diffs)
-
pmFPAHeader.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAHeader.c
r8815 r9592 15 15 ////////////////////////////////////////////////////////////////////////////////////////////////////////////// 16 16 17 bool pmCellReadHeader(pmCell *cell, // Cell for which to read header 18 psFits *fits // FITS file handle 19 ) 17 bool pmCellReadHeader(pmCell *cell, psFits *fits) 20 18 { 21 19 PS_ASSERT_PTR_NON_NULL(cell, false); … … 34 32 35 33 36 bool pmChipReadHeader(pmChip *chip, // Chip for which to read header 37 psFits *fits // FITS file handle 38 ) 34 bool pmChipReadHeader(pmChip *chip, psFits *fits) 39 35 { 40 36 PS_ASSERT_PTR_NON_NULL(chip, false); … … 58 54 59 55 60 bool pmFPAReadHeader(pmFPA *fpa, // FPA for which to read header 61 psFits *fits // FITS file handle 62 ) 56 bool pmFPAReadHeader(pmFPA *fpa, psFits *fits) 63 57 { 64 58 PS_ASSERT_PTR_NON_NULL(fpa, false); -
trunk/psModules/src/camera/pmFPAHeader.h
r7017 r9592 1 /// @file pmFPAHeader.h 2 /// 3 /// @brief Functions read FITS headers for FPA components 4 /// 5 /// @ingroup Camera 6 /// 7 /// @author Paul Price, IfA 8 /// 9 /// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 10 /// @date $Date: 2006-10-17 01:29:02 $ 11 /// 12 /// Copyright 2005-2006 Institute for Astronomy, University of Hawaii 13 /// 14 1 15 #ifndef PM_FPA_HEADER_H 2 16 #define PM_FPA_HEADER_H 3 17 4 bool pmCellReadHeader(pmCell *cell, // Cell for which to read header 5 psFits *fits // FITS file handle 6 ); 7 bool pmChipReadHeader(pmChip *chip, // Chip for which to read header 8 psFits *fits // FITS file handle 9 ); 10 bool pmFPAReadHeader(pmFPA *fpa, // FPA for which to read header 11 psFits *fits // FITS file handle 18 /// Read the FITS header (and ingest concepts) for an FPA, if it exists at this level 19 /// 20 /// Returns false if there was a problem. Returns true if it successfully read the header, or if the header 21 /// was already there. No iteration to lower levels is performed. 22 bool pmFPAReadHeader(pmFPA *fpa, ///< FPA for which to read header 23 psFits *fits ///< FITS file handle 12 24 ); 13 25 26 /// Read the FITS header (and ingest concepts) for a chip, if it exists at this level 27 /// 28 /// Returns false if there was a problem. Returns true if it successfully read the header, or if the header 29 /// was already there. No iteration to lower levels is performed. 30 bool pmChipReadHeader(pmChip *chip, ///< Chip for which to read header 31 psFits *fits ///< FITS file handle 32 ); 33 34 /// Read the FITS header (and ingest concepts) for a cell, if it exists at this level 35 /// 36 /// Returns false if there was a problem. Returns true if it successfully read the header, or if the header 37 /// was already there. No iteration to lower levels is performed. 38 bool pmCellReadHeader(pmCell *cell, ///< Cell for which to read header 39 psFits *fits ///< FITS file handle 40 ); 41 14 42 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
