IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 10, 2009, 3:00:23 PM (17 years ago)
Author:
eugene
Message:

add masking for ghosts based on model (polynomials in a metadata config file); move mask support functions to psastroMaskUtils; plug leak in psastro

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src/psastroFindChip.c

    • Property svn:mergeinfo set to (toggle deleted branches)
      /branches/cnb_branch_20090215/psastro/src/psastroExtractFindChip.c21495-22685
      /branches/cnb_branches/cnb_branch_20090215/psastro/src/psastroExtractFindChip.c22686-23240
      /branches/eam_branches/eam_branch_20090312/psastro/src/psastroExtractFindChip.c23321-23409
      /branches/pap/psastro/src/psastroExtractFindChip.c23511-23685,​23690-23739
    r23745 r23810  
    1 /** @file psastroExtractFindChip.c
     1/** @file psastroFindChip.c
    22 *
    33 *  @brief calculate chip position for the given FPA coords
     
    1818static psVector *chipYmax = NULL;
    1919
    20 bool psastroExtractChipBounds (pmFPA *fpa) {
     20bool psastroChipBounds (pmFPA *fpa) {
    2121
    2222    chipXmin = psVectorAlloc (fpa->chips->n, PS_TYPE_F32);
     
    6969}
    7070
    71 pmChip *psastroExtractFindChip (float *xChip, float *yChip, pmFPA *fpa, float xFPA, float yFPA) {
     71pmChip *psastroFindChip (double *xChip, double *yChip, pmFPA *fpa, double xFPA, double yFPA) {
    7272
    7373    *xChip = NAN;
     
    7575
    7676    if (!chipXmin) {
    77         psastroExtractChipBounds (fpa);
     77        psastroChipBounds (fpa);
    7878    }
    7979
Note: See TracChangeset for help on using the changeset viewer.