Changeset 34375
- Timestamp:
- Sep 2, 2012, 12:38:50 PM (14 years ago)
- Location:
- branches/eam_branches/ipp-20120805/psModules/src/objects
- Files:
-
- 2 added
- 3 edited
-
Makefile.am (modified) (2 diffs)
-
pmSource.c (modified) (3 diffs)
-
pmSource.h (modified) (1 diff)
-
pmSourceSatstar.c (added)
-
pmSourceSatstar.h (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20120805/psModules/src/objects/Makefile.am
r34367 r34375 26 26 pmSourceDiffStats.c \ 27 27 pmSourceExtendedPars.c \ 28 pmSourceSatstar.c \ 28 29 pmSourceUtils.c \ 29 30 pmSourceSky.c \ … … 100 101 pmSourceDiffStats.h \ 101 102 pmSourceExtendedPars.h \ 103 pmSourceSatstar.h \ 102 104 pmSourceUtils.h \ 103 105 pmSourceSky.h \ -
branches/eam_branches/ipp-20120805/psModules/src/objects/pmSource.c
r34367 r34375 40 40 #include "pmSourceDiffStats.h" 41 41 #include "pmSourcePhotometry.h" 42 #include "pmSourceSatstar.h" 42 43 #include "pmSource.h" 43 44 … … 61 62 psFree(tmp->modelFits); 62 63 psFree(tmp->extFitPars); 64 psFree(tmp->blends); 65 psFree(tmp->satstar); 63 66 psFree(tmp->extpars); 64 psFree(tmp->moments);65 67 psFree(tmp->diffStats); 66 68 psFree(tmp->radialAper); 67 psFree(tmp->blends);68 69 psTrace("psModules.objects", 10, "---- end ----\n"); 69 70 } … … 160 161 source->region = psRegionSet(NAN, NAN, NAN, NAN); 161 162 source->blends = NULL; 163 source->satstar = NULL; 162 164 source->extpars = NULL; 163 165 source->diffStats = NULL; -
branches/eam_branches/ipp-20120805/psModules/src/objects/pmSource.h
r34085 r34375 114 114 psRegion region; ///< area on image covered by selected pixels 115 115 psArray *blends; ///< collection of sources thought to be confused with object 116 pmSourceSatstar *satstar; 116 117 pmSourceExtendedPars *extpars; ///< extended source parameters 117 118 pmSourceDiffStats *diffStats; ///< extra parameters for difference detections
Note:
See TracChangeset
for help on using the changeset viewer.
