Changeset 36878 for tags/ipp-pv3-cr-20140614
- Timestamp:
- Jun 16, 2014, 9:59:20 AM (12 years ago)
- Location:
- tags/ipp-pv3-cr-20140614
- Files:
-
- 13 edited
-
. (modified) (1 prop)
-
ippScripts/scripts/queuestaticsky.pl (modified) (1 prop)
-
ippconfig (modified) (1 prop)
-
ippconfig/recipes/ppSub.config (modified) (1 prop)
-
ippconfig/recipes/reductionClasses.mdc (modified) (1 prop)
-
ppStack/src/ppStackLoop.c (modified) (4 diffs)
-
ppStack/src/ppStackPrepare.c (modified) (3 diffs)
-
ppStack/src/ppStackReadout.c (modified) (1 diff)
-
psModules/src/objects/pmPSF_IO.c (modified) (1 diff)
-
psModules/src/objects/pmSourceIO_CMF.c.in (modified) (1 diff)
-
pstamp/scripts/pstamp_checkdependent.pl (modified) (1 prop)
-
pstamp/scripts/pstamp_finish.pl (modified) (1 prop)
-
pstamp/scripts/pstampparse.pl (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-pv3-cr-20140614
- Property svn:mergeinfo changed
/tags/ipp-pv3-20140616 (added) merged: 36875-36877
- Property svn:mergeinfo changed
-
tags/ipp-pv3-cr-20140614/ippScripts/scripts/queuestaticsky.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
tags/ipp-pv3-cr-20140614/ippconfig
- Property svn:mergeinfo changed (with no actual effect on merging)
-
tags/ipp-pv3-cr-20140614/ippconfig/recipes/ppSub.config
- Property svn:mergeinfo changed (with no actual effect on merging)
-
tags/ipp-pv3-cr-20140614/ippconfig/recipes/reductionClasses.mdc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
tags/ipp-pv3-cr-20140614/ppStack/src/ppStackLoop.c
r36855 r36878 154 154 } 155 155 ppStackFileActivation(config,PPSTACK_FILES_BKG ,false); 156 156 157 // Photometry 157 158 psTrace("ppStack", 1, "Photometering stacked image....\n"); … … 169 170 return false; 170 171 } 172 171 173 // Assemble Stats 172 174 if (!ppStackStats(stack, options, config)) { … … 183 185 return false; 184 186 } 187 185 188 //MEH -- also must uncomment back out.. 186 189 psFree(stack); … … 225 228 return false; 226 229 } 230 227 231 // Clean up unconvolved stack 228 232 psTrace("ppStack", 2, "Cleaning up after unconvolved stack....\n"); -
tags/ipp-pv3-cr-20140614/ppStack/src/ppStackPrepare.c
r36855 r36878 344 344 clipFWHMnSig,maxFWHM,threshFWHM,asymmetryFWHM); 345 345 } 346 346 347 if (simpleClip) { // Do a sigma clip like the old rejection code. 347 348 psStats *fwhmStats = psStatsAlloc(PS_STAT_CLIPPED_MEAN | PS_STAT_CLIPPED_STDEV); … … 426 427 } // End mixture model case 427 428 } 429 428 430 // Perform rejection using the limit set 429 431 for (int i = 0; i < num; i++) { … … 464 466 // End old rejection sigma clip 465 467 #endif 468 466 469 // Generate target PSF 467 470 if (options->convolve) { -
tags/ipp-pv3-cr-20140614/ppStack/src/ppStackReadout.c
r36855 r36878 275 275 //MEH -- apply bscale offset before norm 276 276 if (bscaleApplyOffset) { 277 psLogMsg("ppStack", PS_LOG_ INFO, "bscaleApplyOffset: %d %f", i, bscaleApplyOffset->data.F32[i]);277 psLogMsg("ppStack", PS_LOG_MINUTIA, "bscaleApplyOffset: %d %f", i, bscaleApplyOffset->data.F32[i]); 278 278 psBinaryOp(ro->image, ro->image, "-", psScalarAlloc(bscaleApplyOffset->data.F32[i], PS_TYPE_F32)); 279 279 } -
tags/ipp-pv3-cr-20140614/psModules/src/objects/pmPSF_IO.c
r36856 r36878 511 511 psMetadataAddF32 (header, PS_LIST_TAIL, "SKY_BIAS", PS_DATA_F32, "sky bias level", psf->skyBias); 512 512 513 float PSF_APERTURE = psMetadataLookupF32(&status, roAnalysis, "PSF_APERTURE"); 514 if (status) { 513 if (roAnalysis) { 514 float PSF_APERTURE = psMetadataLookupF32(&status, roAnalysis, "PSF_APERTURE"); 515 if (status) { 515 516 psMetadataAddF32 (header, PS_LIST_TAIL, "PSF_APERTURE", PS_DATA_F32, "aperture for psf objects", PSF_APERTURE); 516 }517 float PSF_FIT_RADIUS = psMetadataLookupF32(&status, roAnalysis, "PSF_FIT_RADIUS");518 if (status) {517 } 518 float PSF_FIT_RADIUS = psMetadataLookupF32(&status, roAnalysis, "PSF_FIT_RADIUS"); 519 if (status) { 519 520 psMetadataAddF32 (header, PS_LIST_TAIL, "PSF_FIT_RADIUS", PS_DATA_F32, "aperture for psf objects", PSF_FIT_RADIUS); 521 } 520 522 } 521 523 -
tags/ipp-pv3-cr-20140614/psModules/src/objects/pmSourceIO_CMF.c.in
r36866 r36878 358 358 @ALL@ axes.theta = axes.theta * PS_RAD_DEG; 359 359 360 @>PS1_V4,>PS1_SV2,>PS1_DV3@ if (model->params->n > =PM_PAR_7) {360 @>PS1_V4,>PS1_SV2,>PS1_DV3@ if (model->params->n > PM_PAR_7) { 361 361 @>PS1_V4,>PS1_SV2,>PS1_DV3@ PAR[PM_PAR_7] = psMetadataLookupF32 (&status, row, "PSF_CORE"); 362 362 @>PS1_V4,>PS1_SV2,>PS1_DV3@ } -
tags/ipp-pv3-cr-20140614/pstamp/scripts/pstamp_checkdependent.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
tags/ipp-pv3-cr-20140614/pstamp/scripts/pstamp_finish.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
-
tags/ipp-pv3-cr-20140614/pstamp/scripts/pstampparse.pl
- Property svn:mergeinfo changed (with no actual effect on merging)
Note:
See TracChangeset
for help on using the changeset viewer.
