Changeset 6205 for trunk/psModules/src/astrom/pmAstrometry.h
- Timestamp:
- Jan 26, 2006, 11:10:51 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/astrom/pmAstrometry.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/astrom/pmAstrometry.h
r5739 r6205 8 8 * @author GLG, MHPCC 9 9 * 10 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $11 * @date $Date: 200 5-12-08 00:00:57$10 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2006-01-26 21:10:50 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 34 34 } 35 35 p_pmHDU; 36 37 p_pmHDU *pmHDUAlloc(); 38 void *pmHDUFree(p_pmHDU *hdu); 36 39 37 40 /** Focal plane data structure … … 62 65 const psMetadata *camera; ///< Camera configuration 63 66 psArray *chips; ///< The chips 64 p_pmHDU * private;///< FITS data67 p_pmHDU *hdu; ///< FITS data 65 68 psMetadata *phu; ///< Primary Header 66 69 } … … 95 98 pmFPA *parent; ///< Parent FPA 96 99 bool valid; ///< Do we bother about reading and working with this chip? 97 p_pmHDU * private;///< FITS data100 p_pmHDU *hdu; ///< FITS data 98 101 } 99 102 pmChip; … … 124 127 pmChip *parent; ///< Parent chip 125 128 bool valid; ///< Do we bother about reading and working with this cell? 126 p_pmHDU * private;///< FITS data129 p_pmHDU *hdu; ///< FITS data 127 130 } 128 131 pmCell; … … 436 439 ); 437 440 441 438 442 /** 439 443 * … … 451 455 452 456 457 /** 458 * 459 * pmFPAConstruct shall construct a focal plane hierarchy from a camera 460 * configuration. A db handle is also provided so that may be set in the pmFPA. 461 * The resultant pmFPA and its lower-down components shall be ready for to read a 462 * FITS file into it by setting the extname pointers at the appropriate levels to 463 * the appropriate FITS extension name. 464 * 465 */ 466 pmFPA *pmFPAConstruct( 467 const psMetadata *camera, 468 psDB *db 469 ); 470 471 453 472 #endif // #ifndef PS_ASTROMETRY_H 454 473
Note:
See TracChangeset
for help on using the changeset viewer.
