IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2006, 5:03:35 PM (20 years ago)
Author:
Paul Price
Message:

Documenting pmFPAUtils.[ch]

File:
1 edited

Legend:

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

    r7017 r9601  
     1/// @file pmFPAUtils.h
     2///
     3/// @brief Utility functions for FPAs
     4///
     5/// @ingroup Camera
     6///
     7/// @author Paul Price, IfA
     8///
     9/// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10/// @date $Date: 2006-10-17 03:03:35 $
     11///
     12/// Copyright 2005-2006 Institute for Astronomy, University of Hawaii
     13///
     14
    115#ifndef PM_FPA_UTILS_H
    216#define PM_FPA_UTILS_H
     
    418#include "pmFPA.h"
    519
    6 // Find a chip by name; return the index
    7 int pmFPAFindChip(const pmFPA *fpa, // FPA in which to find the chip
    8                   const char *name // Name of the chip
     20/// Find a chip by name; return the index
     21///
     22/// Looks for a chip within the FPA with CHIP.NAME matching the provided name.  Returns the index of the chip,
     23/// or -1 if it was not found.
     24int pmFPAFindChip(const pmFPA *fpa,     ///< FPA in which to find the chip
     25                  const char *name      ///< Name of the chip
    926                 );
    1027
    11 // Find a cell by name; return the index
    12 int pmChipFindCell(const pmChip *chip, // Chip in which to find the cell
    13                    const char *name // Name of the cell
     28/// Find a cell by name; return the index
     29///
     30/// Looks for a cell within the chip with CELL.NAME matching the provided name.  Returns the index of the
     31/// cell, or -1 if it was not found.
     32int pmChipFindCell(const pmChip *chip,  // Chip in which to find the cell
     33                   const char *name     // Name of the cell
    1434                  );
    1535
Note: See TracChangeset for help on using the changeset viewer.