IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 4, 2008, 3:32:28 PM (18 years ago)
Author:
Paul Price
Message:

I've implemented the chip-dependent concepts. It uses a generalised version of the dependent DEFAULT concepts, which can, unfortunately, make the camera format configuration a bit longer, but it consolidates code and keeps things simple both for the code and the configuration.

In the process, I took care of a couple of other concept bugs that have been sitting in my inbox for nearly a year:

  • FPA.NAME has been replaced with FPA.OBS, which is intended to be an observation identifier (bug 885). You're welcome to change the name, so long as you also volunteer to fix all the camera formats.
  • FPA.CAMERA is automatically set (on construction of the FPA) to the camera name as used by the configuration files (bug 931). I've changed the ppStats REGISTER recipe to use FPA.CAMERA instead of FPA.INSTRUMENT (which is retained in the concepts as the instrument's name according to the instrument, whereas FPA.CAMERA is the instrument's name according to our configuration).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPAWrite.c

    r16396 r17911  
    3737
    3838
    39 // Update the FPA.NAME, CHIP.NAME and CELL.NAME in the FITS header, if required
     39// Update the FPA.OBS, CHIP.NAME and CELL.NAME in the FITS header, if required
    4040bool pmFPAUpdateNames(pmFPA *fpa, pmChip *chip, pmCell *cell)
    4141{
     
    5555    }
    5656    if (fpa) {
    57         const char *fpaNameHdr = psMetadataLookupStr(&mdok, fileData, "FPA.NAME");
    58         if (mdok && fpaNameHdr && strlen(fpaNameHdr) > 0) {
    59             const char *fpaName = psMetadataLookupStr(NULL, fpa->concepts, "FPA.NAME");
    60             psMetadataAddStr(hdu->header, PS_LIST_TAIL, fpaNameHdr, PS_META_REPLACE, "FPA name", fpaName);
     57        const char *fpaObsHdr = psMetadataLookupStr(&mdok, fileData, "FPA.OBS");
     58        if (mdok && fpaObsHdr && strlen(fpaObsHdr) > 0) {
     59            const char *fpaObs = psMetadataLookupStr(NULL, fpa->concepts, "FPA.OBS");
     60            psMetadataAddStr(hdu->header, PS_LIST_TAIL, fpaObsHdr, PS_META_REPLACE,
     61                             "Observation identifier", fpaObs);
    6162        }
    6263    }
Note: See TracChangeset for help on using the changeset viewer.