- Timestamp:
- Mar 5, 2012, 5:19:48 PM (14 years ago)
- Location:
- branches/meh_branches/ppstack_test
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
psModules (modified) (1 prop)
-
psModules/src/objects (modified) (1 prop)
-
psModules/src/objects/pmSource.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/meh_branches/ppstack_test
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/psModules
- Property svn:mergeinfo set to
-
branches/meh_branches/ppstack_test/psModules/src/objects
- Property svn:ignore
-
old new 5 5 *.la 6 6 *.lo 7 pmSourceIO_CMF_PS1_V1.c 8 pmSourceIO_CMF_PS1_V2.c 9 pmSourceIO_CMF_PS1_V3.c 10 pmSourceIO_CMF_PS1_V4.c 11 pmSourceIO_CMF_PS1_V3.v1.c 12 pmSourceIO_CMF_PS1_V1.v1.c 13 pmSourceIO_CMF_PS1_V2.v1.c 14
-
- Property svn:ignore
-
branches/meh_branches/ppstack_test/psModules/src/objects/pmSource.c
r31670 r33415 58 58 psFree(tmp->modelEXT); 59 59 psFree(tmp->modelFits); 60 psFree(tmp->extFitPars); 60 61 psFree(tmp->extpars); 61 62 psFree(tmp->moments); … … 119 120 source->modelEXT = NULL; 120 121 source->modelFits = NULL; 122 source->extFitPars = NULL; 123 121 124 source->type = PM_SOURCE_TYPE_UNKNOWN; 122 125 source->mode = PM_SOURCE_MODE_DEFAULT; … … 136 139 source->apFluxErr = NAN; 137 140 141 source->windowRadius = NAN; 142 source->skyRadius = NAN; 143 source->skyFlux = NAN; 144 source->skySlope = NAN; 145 138 146 source->pixWeightNotBad = NAN; 139 147 source->pixWeightNotPoor = NAN; … … 196 204 // NOTE : because of the const id element, we cannot just assign *source = *in 197 205 206 source->imageID = in->imageID; 207 198 208 source->type = in->type; 199 209 source->mode = in->mode; 200 210 source->mode2 = in->mode2; 201 211 source->tmpFlags = in->tmpFlags; 212 202 213 source->psfMag = in->psfMag; 203 214 source->psfMagErr = in->psfMagErr; … … 210 221 source->apFlux = in->apFlux; 211 222 source->apFluxErr = in->apFluxErr; 223 224 source->windowRadius = in->windowRadius; 225 source->skyRadius = in->skyRadius; 226 source->skyFlux = in->skyFlux; 227 source->skySlope = in->skySlope; 228 212 229 source->pixWeightNotBad = in->pixWeightNotBad; 213 230 source->pixWeightNotPoor = in->pixWeightNotPoor; 231 214 232 source->psfChisq = in->psfChisq; 215 233 source->crNsigma = in->crNsigma; … … 252 270 } 253 271 mySource->region = srcRegion; 272 mySource->windowRadius = Radius; 254 273 255 274 return true; … … 321 340 mySource->psfImage = NULL; 322 341 } 342 mySource->windowRadius = Radius; 323 343 return extend; 324 344 }
Note:
See TracChangeset
for help on using the changeset viewer.
