- Timestamp:
- Mar 17, 2009, 12:07:42 PM (17 years ago)
- Location:
- branches/cnb_branches/cnb_branch_20090301/psModules
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/objects/pmSourceMatch.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/cnb_branches/cnb_branch_20090301/psModules
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/cnb_branches/cnb_branch_20090215/psModules merged eligible /trunk/psModules merged eligible /branches/cnb_branch_20090215/psModules 21495-22685 /branches/eam_branches/eam_branch_20090303/psModules 23158-23228
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/cnb_branches/cnb_branch_20090301/psModules/src/objects/pmSourceMatch.h
r20953 r23351 33 33 34 34 /// Allocator for pmSourceMatch 35 pmSourceMatch *pmSourceMatchAlloc(int num // Maximum number of images 36 ); 35 pmSourceMatch *pmSourceMatchAlloc(void); 37 36 38 37 /// Add a source to a match … … 48 47 /// 49 48 /// Returns an array of psSourceMatch 50 psArray *pmSourceMatchSources(const psArray *sourceArrays, // Array of arrays of sources on each image 51 float radius // Correlation radius 49 psArray *pmSourceMatchSources(const psArray *sourceArrays, ///< Array of arrays of sources on each image 50 float radius, ///< Matching radius 51 bool cullSingles ///< Cull "matches" with only a single source? 52 52 ); 53 54 /// Merge two source lists 55 /// 56 /// Sources are pulled from the lists into a new list, with no effort made to adjust them. 57 psArray *pmSourceMatchMerge(psArray *sourceArrays, ///< Array of arrays of sources on each image 58 float radius ///< Matching radius 59 ); 53 60 54 61 /// Perform relative photometry to calibrate images 55 62 psVector *pmSourceMatchRelphot(const psArray *matches, // Array of matches 56 63 const psVector *zp, // Zero points for each image (including airmass term) 57 int maxIter, // Maximum number of iterations58 64 float tol, // Relative tolerance for convergence 65 int iter1, // Number of iterations for pass 1 66 float rej1, // Limit on rejection between iterations for pass 1 67 float sys1, // Systematic error in measurements for pass 1 68 int iter2, // Number of iterations for pass 2 69 float rej2, // Limit on rejection between iterations for pass 2 70 float sys2, // Systematic error in measurements for pass 2 59 71 float rejLimit, // Limit on rejection between iterations 60 72 int transIter, // Clipping iterations for transparency 61 73 float transClip, // Clipping level for transparency 62 float photoLevel, // Level at which we declare image is photometric 63 float starClip, // Clipping for stars 64 float sysErr // Systematic error in measurements 74 float photoLevel // Level at which we declare image is photometric 65 75 ); 66 76
Note:
See TracChangeset
for help on using the changeset viewer.
