IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 13, 2006, 4:35:39 PM (20 years ago)
Author:
Paul Price
Message:

Adding const where appropriate. Adding doxygen documentation to header files. Removing comments on functions defined in the header file, so that there's only a single source.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/concepts/pmConceptsAverage.h

    r7851 r9572  
    55#include "pmFPA.h"
    66
    7 // Set a variety of concepts in a cell by averaging over several
    8 bool pmConceptsAverageCells(pmCell *target,// Target cell
    9                             psList *sources, // List of source cells
    10                             psRegion *trimsec, // The trim section
    11                             psRegion *biassec // The bias section
     7/// Set a variety of concepts in a cell by averaging over several
     8///
     9/// In some instances, we want to combine the values of a concept for several cells into a single concept for
     10/// a single cell (e.g., when mosaicking multiple cells into a chip with one "cell").  This function averages
     11/// the values of various concepts:
     12/// - CELL.GAIN
     13/// - CELL.READNOISE
     14/// - CELL.EXPOSURE
     15/// - CELL.DARKTIME
     16/// - CELL.TIME
     17/// For other concepts, it ensures the values are consistent:
     18/// - CELL.READDIR
     19/// - CELL.TIMESYS
     20/// And for others, it takes the "worst" possible value:
     21/// - CELL.SATURATION
     22/// - CELL.BAD
     23bool pmConceptsAverageCells(pmCell *target,///< Target cell
     24                            psList *sources, ///< List of source cells
     25                            psRegion *trimsec, ///< The new trim section
     26                            psRegion *biassec ///< The new bias section
    1227                           );
    1328
Note: See TracChangeset for help on using the changeset viewer.