IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 15, 2005, 4:29:29 PM (21 years ago)
Author:
gusciora
Message:

I added the metadata things.

File:
1 edited

Legend:

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

    r4770 r4779  
    88*  @author GLG, MHPCC
    99*
    10 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2005-08-16 01:10:34 $
     10*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-08-16 02:29:29 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    417417
    418418
     419psMetadataItem *pmCellGetConcept(pmCell *cell, const char *concept);
     420psMetadataItem *pmChipGetConcept(pmChip *chip, const char *concept);
     421psMetadataItem *pmFPAGetConcept(pmFPA *fpa, const char *concept);
     422
     423/**
     424 *
     425 *  We next specify a series of specific functions for concept lookups. These
     426 *  will generally be what the user utilises, so the goal is to provide a simple
     427 *  interface providing a single type back, so the user doesnt have to go to the
     428 *  trouble of checking types, etc. These functions should employ the above three
     429 *  general lookup functions and deal with the result appropriately.
     430 *
     431 */
     432float pmFPAGetAirmass(pmFPA *fpa); // FPA.AIRMASS
     433psString pmFPAGetFilter(pmFPA *fpa); // FPA.FILTER
     434float pmFPAGetPosAngle(pmFPA *fpa); // FPA.POSANGLE
     435double pmFPAGetRA(pmFPA *fpa); // FPA.RA
     436double pmFPAGetDec(pmFPA *fpa); // FPA.DEC
     437psString pmFPAGetRADecSys(pmFPA *fpa); // FPA.RADECSYS
     438psString pmFPAGetName(pmFPA *fpa); // FPA.NAME
     439psString pmChipGetName(pmChip *chip); // CHIP.NAME
     440psString pmCellGetName(pmCell *cell); // CELL.NAME
     441psTime *pmCellGetTime(pmCell *cell); // CELL.TIME
     442psList *pmCellGetBiasSec(pmCell *cell); // CELL.BIASSEC
     443psRegion *pmCellGetTrimSec(pmCell *cell); // CELL.TRIMSEC
     444float pmCellGetGain(pmCell *cell); // CELL.GAIN
     445float pmCellGetReadNoise(pmCell *cell); // CELL.READNOISE
     446float pmCellGetSaturation(pmCell *cell); // CELL.SATURATION
     447float pmCellGetBad(pmCell *cell); // CELL.BAD
     448psPixelCoord *pmCellGetBin(pmCell *cell); // CELL.BIN
     449psPixelCoord *pmCellGetParity(pmCell *cell); // CELL.PARITY
     450float pmReadoutGetExposure(pmReadout *readout); // READOUT.EXPOSURE
     451float pmReadoutGetDarkTime(pmReadout *readout); // READOUT.DARKTIME
     452
     453
     454
    419455#endif // #ifndef PS_ASTROMETRY_H
Note: See TracChangeset for help on using the changeset viewer.