Changeset 32307
- Timestamp:
- Sep 4, 2011, 5:34:00 PM (15 years ago)
- Location:
- branches/eam_branches/ipp-20110710/psphot/src
- Files:
-
- 12 edited
-
psphotApResid.c (modified) (1 diff)
-
psphotBlendFit.c (modified) (1 diff)
-
psphotChoosePSF.c (modified) (2 diffs)
-
psphotEfficiency.c (modified) (1 diff)
-
psphotFindDetections.c (modified) (1 diff)
-
psphotFitSourcesLinear.c (modified) (2 diffs)
-
psphotKronIterate.c (modified) (1 diff)
-
psphotMagnitudes.c (modified) (1 diff)
-
psphotModelBackground.c (modified) (1 diff)
-
psphotRoughClass.c (modified) (1 diff)
-
psphotSourceSize.c (modified) (1 diff)
-
psphotSourceStats.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20110710/psphot/src/psphotApResid.c
r32238 r32307 9 9 { 10 10 bool status = true; 11 12 fprintf (stdout, "\n"); 13 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Aperture Residuals ---"); 11 14 12 15 // select the appropriate recipe information -
branches/eam_branches/ipp-20110710/psphot/src/psphotBlendFit.c
r32242 r32307 5 5 { 6 6 bool status = true; 7 8 fprintf (stdout, "\n"); 9 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Fit Sources (Non-Linear) ---"); 7 10 8 11 // select the appropriate recipe information -
branches/eam_branches/ipp-20110710/psphot/src/psphotChoosePSF.c
r32238 r32307 5 5 { 6 6 bool status = true; 7 8 fprintf (stdout, "\n"); 9 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Choose PSF ---"); 7 10 8 11 // select the appropriate recipe information … … 443 446 psVectorAppend (fwhmMinor, FWHM_MINOR); 444 447 445 if (modelPSF->params->n > =7) {448 if (modelPSF->params->n > 7) { 446 449 psVectorAppend (psfExtra1, modelPSF->params->data.F32[7]); 447 450 } 448 if (modelPSF->params->n > =8) {451 if (modelPSF->params->n > 8) { 449 452 psVectorAppend (psfExtra2, modelPSF->params->data.F32[8]); 450 453 } -
branches/eam_branches/ipp-20110710/psphot/src/psphotEfficiency.c
r32238 r32307 170 170 bool status = true; 171 171 172 fprintf (stdout, "\n"); 173 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Efficiency ---"); 174 172 175 // select the appropriate recipe information 173 176 psMetadata *recipe = psMetadataLookupPtr (&status, config->recipes, PSPHOT_RECIPE); -
branches/eam_branches/ipp-20110710/psphot/src/psphotFindDetections.c
r31154 r32307 7 7 { 8 8 bool status = true; 9 10 fprintf (stdout, "\n"); 11 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Find Detections ---"); 9 12 10 13 // select the appropriate recipe information -
branches/eam_branches/ipp-20110710/psphot/src/psphotFitSourcesLinear.c
r32238 r32307 17 17 bool status = true; 18 18 19 fprintf (stdout, "\n"); 20 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Fit Source (Linear) ---"); 21 19 22 // select the appropriate recipe information 20 23 psMetadata *recipe = psMetadataLookupPtr (&status, config->recipes, PSPHOT_RECIPE); … … 23 26 int num = psphotFileruleCount(config, filerule); 24 27 28 // skip the chisq image (optionally?) 29 int chisqNum = psMetadataLookupS32 (&status, config->arguments, "PSPHOT.CHISQ.NUM"); 30 if (!status) chisqNum = -1; 31 25 32 // loop over the available readouts 26 33 for (int i = 0; i < num; i++) { 34 if (i == chisqNum) continue; // skip chisq image 27 35 28 36 // find the currently selected readout -
branches/eam_branches/ipp-20110710/psphot/src/psphotKronIterate.c
r32299 r32307 12 12 13 13 // return true; 14 15 fprintf (stdout, "\n"); 16 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Kron Iterate ---"); 14 17 15 18 // select the appropriate recipe information -
branches/eam_branches/ipp-20110710/psphot/src/psphotMagnitudes.c
r32238 r32307 4 4 { 5 5 bool status = true; 6 7 fprintf (stdout, "\n"); 8 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Magnitudes ---"); 6 9 7 10 // select the appropriate recipe information -
branches/eam_branches/ipp-20110710/psphot/src/psphotModelBackground.c
r32288 r32307 413 413 int num = psphotFileruleCount(config, filerule); 414 414 415 fprintf (stdout, "\n"); 416 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Model Background ---"); 417 415 418 // loop over the available readouts 416 419 for (int i = 0; i < num; i++) { -
branches/eam_branches/ipp-20110710/psphot/src/psphotRoughClass.c
r32238 r32307 11 11 { 12 12 bool status = true; 13 14 fprintf (stdout, "\n"); 15 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Rough Class ---"); 13 16 14 17 // select the appropriate recipe information -
branches/eam_branches/ipp-20110710/psphot/src/psphotSourceSize.c
r32205 r32307 44 44 { 45 45 bool status = true; 46 47 fprintf (stdout, "\n"); 48 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Source Size ---"); 46 49 47 50 // select the appropriate recipe information -
branches/eam_branches/ipp-20110710/psphot/src/psphotSourceStats.c
r32238 r32307 9 9 { 10 10 bool status = true; 11 12 fprintf (stdout, "\n"); 13 psLogMsg ("psphot", PS_LOG_INFO, "--- psphot Source Stats ---"); 11 14 12 15 // select the appropriate recipe information
Note:
See TracChangeset
for help on using the changeset viewer.
