IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 22, 2009, 2:57:41 PM (16 years ago)
Author:
eugene
Message:

various fixes to psastro:

1) added bootstrap resampling to zero point error analysis
2) added iterative clump removal from refstars and rawstars
3) added unique reference match option
4) some improved visualizations
5) improved mosaic iterations

File:
1 edited

Legend:

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

    r25299 r26259  
    5656
    5757                // select the raw objects for this readout
    58                 psArray *rawstars = psMetadataLookupPtr (&status, readout->analysis, "PSASTRO.RAWSTARS");
     58                psArray *rawstars = psMetadataLookupPtr (&status, readout->analysis, "PSASTRO.RAWSTARS.SUBSET");
    5959                if (rawstars == NULL) { continue; }
    6060
    6161                // select the raw objects for this readout
    62                 psArray *refstars = psMetadataLookupPtr (&status, readout->analysis, "PSASTRO.REFSTARS");
     62                psArray *refstars = psMetadataLookupPtr (&status, readout->analysis, "PSASTRO.REFSTARS.SUBSET");
    6363                if (refstars == NULL) { continue; }
    6464
     
    6666                if ((rawstars->n < 4) || (refstars->n < 4)) {
    6767                    readout->data_exists = false;
    68                     psLogMsg ("psastro", 3, "insufficient rawstars (%ld) or refstars (%ld)",
    69                               rawstars->n, refstars->n);
     68                    psLogMsg ("psastro", 3, "insufficient rawstars (%ld) or refstars (%ld)", rawstars->n, refstars->n);
    7069                    continue;
    7170                }
Note: See TracChangeset for help on using the changeset viewer.