Changeset 9592 for trunk/psModules/src/camera/pmFPAHeader.h
- Timestamp:
- Oct 16, 2006, 3:29:02 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmFPAHeader.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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.
