IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2006, 4:33:55 PM (20 years ago)
Author:
Paul Price
Message:

Documenting pmFPAMosaic.[ch]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPAMosaic.h

    r7487 r9596  
     1/// @file pmFPAMosaic.h
     2///
     3/// @brief Functions to mosaic FPA components into a single entity
     4///
     5/// @ingroup Camera
     6///
     7/// @author Paul Price, IfA
     8/// @author Eugene Magnier, IfA
     9///
     10/// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     11/// @date $Date: 2006-10-17 02:33:55 $
     12///
     13/// Copyright 2005-2006 Institute for Astronomy, University of Hawaii
     14///
     15
    116#ifndef PM_CHIP_MOSAIC_H
    217#define PM_CHIP_MOSAIC_H
     
    419#include "pmFPA.h"
    520
    6 // Mosaic all cells within a chip
     21/// Mosaic all cells within a chip
     22///
     23/// Mosaics all cells within the source into a single cell within the target (which must have only a single
     24/// cell).  Cells are placed on the chip according to the CELL.X0 and CELL.Y0 offsets.  This is useful for
     25/// getting an image of the chip on the sky.  The mosaicking is done so as to avoid performing a deep copy of
     26/// the pixels, if possible.
    727bool pmChipMosaic(pmChip *target,       // Target chip --- may contain only a single cell
    828                  const pmChip *source  // Source chip whose cells will be mosaicked
    929                 );
    1030
    11 // Mosaic all cells within an FPA
     31/// Mosaic all cells within an FPA
     32///
     33/// Mosaics all cells within the source into a single chip with single cell within the target (which must have
     34/// only a single chip with single cell).  Cells are placed on the FPA according to the CHIP.X0, CHIP.Y0,
     35/// CELL.X0 and CELL.Y0 offsets.  This is useful for getting an image of the FPA on the sky.  The mosaicking
     36/// is done so as to avoid performing a deep copy of the pixels, if possible.
    1237bool pmFPAMosaic(pmFPA *target,         // Target FPA --- may contain only a single chip with a single cell
    1338                 const pmFPA *source    // FPA whose chips and cells will be mosaicked
Note: See TracChangeset for help on using the changeset viewer.