Changeset 1384 for trunk/psLib/src/astronomy/psPhotometry.h
- Timestamp:
- Aug 4, 2004, 1:12:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astronomy/psPhotometry.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psPhotometry.h
r1374 r1384 9 9 * @author George Gusciora, MHPCC 10 10 * 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 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 27 27 /// @{ 28 28 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 */ 29 41 typedef struct 30 42 { 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 36 48 } 37 49 psPhotSystem; 38 50 51 /** Photometric system transformation 52 * 53 * This structure defines the transformation between two photometric systems. 54 * 55 */ 39 56 typedef struct 40 57 { 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 47 67 } 48 68 psPhotTransform;
Note:
See TracChangeset
for help on using the changeset viewer.
