IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 12, 2015, 8:38:47 PM (11 years ago)
Author:
eugene
Message:

updates for Mflat

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/uniphot/include/setphot.h

    r39138 r39262  
    1717  unsigned int flags;
    1818} ImageSubset;
     19
     20// we have one correction (an image) for each filter and chip
     21typedef struct {
     22  int Nx;       // number of chips in x
     23  int Ny;       // number of chips in y
     24  int Nfilter;  // number of filters
     25  int Nseason;  // number of correction peridos
     26
     27  int Nchips;   // chip offset (Nx*Ny)
     28  int Nflats;   // season offset (Nx*Ny*Nfilters)
     29  int Nvalues;  // Nx*Ny*Nfilters*Nseason
     30
     31  int dX;       // superpixel size
     32  int dY;       // superpixel size
     33
     34  int NxCCD;    // number of pixels
     35  int NyCCD;    // number of pixels
     36
     37  Matrix **matrix; // allocate an array of pointers
     38  // index = ix + iy*Nx + filter*Nchips + dir*Ngroup
     39} CamCorrection;
    1940
    2041/* global variables set in parameter file */
Note: See TracChangeset for help on using the changeset viewer.