IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 26, 2006, 11:10:51 AM (20 years ago)
Author:
gusciora
Message:

Implemented the polynomial alloc argument changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/astrom/pmAstrometry.h

    r5739 r6205  
    88*  @author GLG, MHPCC
    99*
    10 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2005-12-08 00:00:57 $
     10*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2006-01-26 21:10:50 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3434}
    3535p_pmHDU;
     36
     37p_pmHDU *pmHDUAlloc();
     38void *pmHDUFree(p_pmHDU *hdu);
    3639
    3740/** Focal plane data structure
     
    6265    const psMetadata *camera;           ///< Camera configuration
    6366    psArray *chips;                     ///< The chips
    64     p_pmHDU *private;                   ///< FITS data
     67    p_pmHDU *hdu;                       ///< FITS data
    6568    psMetadata *phu;                    ///< Primary Header
    6669}
     
    9598    pmFPA *parent;                      ///< Parent FPA
    9699    bool valid;                         ///< Do we bother about reading and working with this chip?
    97     p_pmHDU *private;                   ///< FITS data
     100    p_pmHDU *hdu;                       ///< FITS data
    98101}
    99102pmChip;
     
    124127    pmChip *parent;                     ///< Parent chip
    125128    bool valid;                         ///< Do we bother about reading and working with this cell?
    126     p_pmHDU *private;                   ///< FITS data
     129    p_pmHDU *hdu;                       ///< FITS data
    127130}
    128131pmCell;
     
    436439);
    437440
     441
    438442/**
    439443 *
     
    451455
    452456
     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 */
     466pmFPA *pmFPAConstruct(
     467    const psMetadata *camera,
     468    psDB *db
     469);
     470
     471
    453472#endif // #ifndef PS_ASTROMETRY_H
    454473
Note: See TracChangeset for help on using the changeset viewer.