IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 26, 2006, 11:10:51 AM (20 years ago)
Author:
gusciora
Message:

Implemented the polynomial alloc argument changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmReadoutCombine.h

    r5516 r6205  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-11-15 20:09:03 $
     7 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2006-01-26 21:10:50 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7272pmFringePoint;
    7373
     74
     75/**
     76 *
     77 * The input array fluxLevels consists of Ni vectors, one per mosaic image.
     78 * Each vector consists of Nj elements, each a measurement of the input
     79 * flat-field image flux levels. All of these vectors must be constructed with
     80 * the same number of elements, or the function will return an error. If a chip
     81 * is missing from a particular image, that element should be set to NaN. The
     82 * vector chipGains supplies initial guesses for the chip gains. If the vector
     83 * contains the values 0.0 or NaN for any of the elements, the gain is set to the
     84 * mean of the valid values. If the vector length does not match the number of
     85 * chips, an warning is raised, all chip gain guesses will be set to 1.0, and the
     86 * vector length modified to match the number of chips defined by the supplied
     87 * fluxLevels. The sourceFlux input vector must be allocated (not NULL), but the
     88 * routine will set the vector length to the number of source images regardless
     89 * of the initial state of the vector. All vectors used by this function must be
     90 * of type PS_DATA_F64.
     91 *
     92 */
     93bool pmFlatNormalization(
     94    psVector *sourceFlux,
     95    psVector *chipGains,
     96    psArray *fluxLevels
     97);
     98
     99
    74100#endif
Note: See TracChangeset for help on using the changeset viewer.