IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 4, 2004, 1:12:34 PM (22 years ago)
Author:
desonia
Message:

Added doxygen documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psPhotometry.h

    r1374 r1384  
    99*  @author George Gusciora, MHPCC
    1010*
    11 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-08-04 00:55:17 $
     11*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-08-04 23:12:34 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2727/// @{
    2828
     29/** The photometric system description
     30 *
     31 *  The photometric system is defined by the psPhotSystem structure. A
     32 *  photometric system is identified by a human-readable name (ie, SDSS.g,
     33 *  Landolt92.B, GPC1.OTA32.r). Each photometric system is given a unique
     34 *  identifier ID. Observations taken with a specific camera, detector, and
     35 *  filter represent their own photometric system, and it may be necessary to
     36 *  perform transformations between these systems. Photometric systems
     37 *  associated with observations from a specific camera/ detector/filter
     38 *  combination can be associated with those components.
     39 *
     40 */
    2941typedef struct
    3042    {
    31         const int ID;
    32         const char *name;
    33         const char *camera;
    34         const char *filter;
    35         const char *detector;
     43        const int ID;                  ///< ID number for this photometric system
     44        const char *name;              ///< Name of photometric system
     45        const char *camera;            ///< Camera for photometric system
     46        const char *filter;            ///< Filter used for photometric system
     47        const char *detector;          ///< Detector used for photometric system
    3648    }
    3749psPhotSystem;
    3850
     51/** Photometric system transformation
     52 *
     53 *  This structure defines the transformation between two photometric systems.
     54 *
     55 */
    3956typedef struct
    4057    {
    41         psPhotSystem src;
    42         psPhotSystem dst;
    43         psPhotSystem pP, pM;
    44         psPhotSystem sP, sM;
    45         float pA, sA;
    46         psPolynomial3D transform;
     58        psPhotSystem src;                  ///< Source photometric system
     59        psPhotSystem dst;                  ///< Destination photometric system
     60        psPhotSystem pP;                   ///< Primary color reference
     61        psPhotSystem pM;                   ///< Primary color reference
     62        psPhotSystem sP;                   ///< Secondary color reference
     63        psPhotSystem sM;                   ///< Secondary color reference
     64        float pA;                          ///< Color offset for references
     65        float sA;                          ///< Color offset for references
     66        psPolynomial3D transform;          ///< Transformation from source to destination
    4767    }
    4868psPhotTransform;
Note: See TracChangeset for help on using the changeset viewer.