Changeset 1374 for trunk/psLib/src/astronomy/psPhotometry.h
- Timestamp:
- Aug 3, 2004, 2:55:17 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
r1312 r1374 1 1 /** @file psPhotometry.h 2 *3 * @brief Contains basic photometric structures.4 *5 * This file defines the basic photometric structures.6 *7 * @ingroup AstroImage 8 *9 * @author George Gusciora, MHPCC10 *11 * @version $Revision: 1.1$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-07-28 22:31:01$13 *14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii15 */2 * 3 * @brief Contains basic photometric structures. 4 * 5 * This file defines the basic photometric structures. 6 * 7 * @ingroup Photometry 8 * 9 * @author George Gusciora, MHPCC 10 * 11 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-04 00:55:17 $ 13 * 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 15 */ 16 16 17 17 # ifndef PS_PHOTOMETRIC_H … … 24 24 #include "psFunctions.h" 25 25 26 /// @addtogroup Photometry 27 /// @{ 28 26 29 typedef struct 27 {28 const int ID;29 const char *name;30 const char *camera;31 const char *filter;32 const char *detector;33 }30 { 31 const int ID; 32 const char *name; 33 const char *camera; 34 const char *filter; 35 const char *detector; 36 } 34 37 psPhotSystem; 35 38 36 39 typedef struct 37 {38 psPhotSystem src;39 psPhotSystem dst;40 psPhotSystem pP, pM;41 psPhotSystem sP, sM;42 float pA, sA;43 psPolynomial3D transform;44 }40 { 41 psPhotSystem src; 42 psPhotSystem dst; 43 psPhotSystem pP, pM; 44 psPhotSystem sP, sM; 45 float pA, sA; 46 psPolynomial3D transform; 47 } 45 48 psPhotTransform; 46 49 50 /// @} 51 47 52 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
