IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 18, 2007, 12:28:16 PM (19 years ago)
Author:
eugene
Message:

a variety of fixes to get psastro working in chip and mosaic mode

  • various memory leaks
  • when loading mosaic data, the modification of the WCS for the common focal-plane scale was getting the offset wrong (fixed in psModules)
  • added some debugging dump; more plots still needed
  • error handling in psastroMosaicAstrom
  • loading chip and fpa dimensions from concepts
  • now reading chip concepts when reading objects (in psModules)
  • now supplying region and subdivisions for gradient measurements
  • grid search is now optional

-

File:
1 edited

Legend:

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

    r10880 r12492  
    5252                }
    5353
     54                char *filename = NULL;
     55                char *chipname = psMetadataLookupStr (NULL, chip->concepts, "CHIP.NAME");
     56
     57                psStringAppend (&filename, "rawstars.ch.%s.dat", chipname);
     58                psastroDumpStars (rawstars, filename);
     59                psFree (filename);
     60                filename = NULL;
     61
     62                psStringAppend (&filename, "refstars.ch.%s.dat", chipname);
     63                psastroDumpStars (refstars, filename);
     64                psFree (filename);
     65                filename = NULL;
     66
    5467                // save WCS and analysis metadata in update header
    5568                psMetadata *updates = psMetadataAlloc();
Note: See TracChangeset for help on using the changeset viewer.