IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 4, 2021, 6:10:51 PM (5 years ago)
Author:
eugene
Message:

merge changes from eam_branches/ipp-dev-20210817 (fix chebyshevs 1D, 2D, set DB field to NULL for inf, psFitsTableNew)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fits/psFitsTableNew.h

    r32263 r41896  
    5555// Get value for given row and column name
    5656psBool psFitsTableGetBool(bool *status, psFitsTable *table, int row, const char* name);
    57 psS8 psFitsTableGetS8(bool *status, psFitsTable *table, int row, const char* name);
    58 psU8 psFitsTableGetU8(bool *status, psFitsTable *table, int row, const char* name);
     57psS8  psFitsTableGetS8(bool *status, psFitsTable *table, int row, const char* name);
     58psU8  psFitsTableGetU8(bool *status, psFitsTable *table, int row, const char* name);
    5959psS16 psFitsTableGetS16(bool *status, psFitsTable *table, int row, const char* name);
    6060psU16 psFitsTableGetU16(bool *status, psFitsTable *table, int row, const char* name);
     
    6363psS64 psFitsTableGetS64(bool *status, psFitsTable *table, int row, const char* name);
    6464psU64 psFitsTableGetU64(bool *status, psFitsTable *table, int row, const char* name);
    65 
    6665psF32 psFitsTableGetF32(bool *status, psFitsTable *table, int row, const char* name);
    6766psF64 psFitsTableGetF64(bool *status, psFitsTable *table, int row, const char* name);
    6867
     68psFitsTable *psFitsTableCreate (psArray *tableColumns, int numRows);
     69bool psFitsTableColumnAdd (psArray *tableColumns, char *name, psDataType type);
     70psFitsTableColumn *psFitsTableColumnAlloc (char *name, psDataType type);
     71
     72bool psFitsTableSetS8 (psFitsTable *table, int row, const char* name, psS8  value);
     73bool psFitsTableSetU8 (psFitsTable *table, int row, const char* name, psU8  value);
     74bool psFitsTableSetS16(psFitsTable *table, int row, const char* name, psS16 value);
     75bool psFitsTableSetU16(psFitsTable *table, int row, const char* name, psU16 value);
     76bool psFitsTableSetS32(psFitsTable *table, int row, const char* name, psS32 value);
     77bool psFitsTableSetU32(psFitsTable *table, int row, const char* name, psU32 value);
     78bool psFitsTableSetS64(psFitsTable *table, int row, const char* name, psS64 value);
     79bool psFitsTableSetU64(psFitsTable *table, int row, const char* name, psU64 value);
     80bool psFitsTableSetF32(psFitsTable *table, int row, const char* name, psF32 value);
     81bool psFitsTableSetF64(psFitsTable *table, int row, const char* name, psF64 value);
     82
    6983#endif
Note: See TracChangeset for help on using the changeset viewer.