IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 27, 2006, 6:20:39 PM (19 years ago)
Author:
Paul Price
Message:

Cleaning up code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageDetrendFringe.c

    r9952 r10211  
     1#ifdef HAVE_CONFIG_H
     2#include <config.h>
     3#endif
     4
    15#include <stdio.h>
    26#include <pslib.h>
    37#include <psmodules.h>
    48
     9#include "ppImageOptions.h"
    510#include "ppImageDetrendFringe.h"
    611
    7 bool ppImageDetrendFringeMeasure(pmReadout *readout, // Readout to measure
    8                                  pmCell *fringe, // Fringe cell (each readout is a different component)
    9                                  const ppImageOptions *options // Options
    10                                  )
     12bool ppImageDetrendFringeMeasure(pmReadout *readout, pmCell *fringe, const ppImageOptions *options)
    1113{
    1214    PS_ASSERT_PTR_NON_NULL(readout, false);
     
    98100// Solve the fringe system: we have science fringe measurements for each cell, and an array of reference
    99101// fringe measurements for each cell.  Need to concatenate these together first, and then solve.
    100 bool ppImageDetrendFringeSolve(pmChip *scienceChip, // Chip with science
    101                                const pmChip *refChip, // Chip with reference fringes
    102                                const ppImageOptions *options // Options
    103     )
     102bool ppImageDetrendFringeSolve(pmChip *scienceChip, const pmChip *refChip, const ppImageOptions *options)
    104103{
    105104    PS_ASSERT_PTR_NON_NULL(scienceChip, NULL);
     
    142141
    143142
    144 psImage *ppImageDetrendFringeGenerate(pmCell *science, // Science cell
    145                                       pmCell *fringes // Fringe cell, one readout per fringe component
    146     )
     143psImage *ppImageDetrendFringeGenerate(pmCell *science, pmCell *fringes)
    147144{
    148145    PS_ASSERT_PTR_NON_NULL(science, false);
Note: See TracChangeset for help on using the changeset viewer.