IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 6, 2008, 10:47:50 AM (18 years ago)
Author:
Paul Price
Message:

Adding multi-darks --- fitting dark current with multi-dimensional polynomial. This allows the dark current to be a function of temperature, or time since PON. To do this, added new file type, DARK. A DARK file is just like an IMAGE, except that it has a table per FITS file that contains the parameters to use in applying the dark. It's kinda like a FRINGE, but there's only one table per file, instead of one table per extension.

File:
1 edited

Legend:

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

    r16711 r16841  
    435435  if (!strcasecmp (type, "FRINGE")) {
    436436    return PM_FPA_FILE_FRINGE;
     437  }
     438  if (!strcasecmp (type, "DARK"))     {
     439    return PM_FPA_FILE_DARK;
    437440  }
    438441  if (!strcasecmp (type, "HEADER"))     {
     
    473476    case PM_FPA_FILE_FRINGE:
    474477      return ("FRINGE");
     478    case PM_FPA_FILE_DARK:
     479      return("DARK");
    475480    case PM_FPA_FILE_HEADER:
    476481      return ("HEADER");
Note: See TracChangeset for help on using the changeset viewer.