IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 24, 2011, 11:06:23 PM (15 years ago)
Author:
eugene
Message:

errMag renamed to psfMagErr

Location:
branches/eam_branches/ipp-20110404/ppSub/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20110404/ppSub/src/ppSub.c

    r30874 r31363  
    9494
    9595        if (data) {
    96             psString dump_file = psMetadataLookupStr(NULL, data->config->arguments, "-dumpconfig");
     96            psString dump_file = psMetadataLookupStr(NULL, data->config->arguments, "DUMP_CONFIG");
    9797            if (dump_file) {
    9898                if (!pmConfigDump(data->config, dump_file)) {
  • branches/eam_branches/ipp-20110404/ppSub/src/ppSubFlagNeighbors.c

    r31156 r31363  
    112112                  bool positive = !matchRef && (sourceM1->imageID == 1);
    113113                  positive |= matchRef && (sourceM1->imageID == 2);
    114                   float SN1 = isfinite(sourceM1->errMag) ? 1.0 / sourceM1->errMag : NAN;
     114                  float SN1 = isfinite(sourceM1->psfMagErr) ? 1.0 / sourceM1->psfMagErr : NAN;
    115115                  if (positive) {
    116116                      source->diffStats->SNp = SN1;
    … …  
    138138                  bool positive = !matchRef && (sourceM1->imageID == 1);
    139139                  positive |= matchRef && (sourceM1->imageID == 2);
    140                   float SN1 = isfinite(sourceM1->errMag) ? 1.0 / sourceM1->errMag : NAN;
    141                   float SN2 = isfinite(sourceM2->errMag) ? 1.0 / sourceM2->errMag : NAN;
     140                  float SN1 = isfinite(sourceM1->psfMagErr) ? 1.0 / sourceM1->psfMagErr : NAN;
     141                  float SN2 = isfinite(sourceM2->psfMagErr) ? 1.0 / sourceM2->psfMagErr : NAN;
    142142                  if (positive) {
    143143                      source->diffStats->SNp = SN1;
  • branches/eam_branches/ipp-20110404/ppSub/src/ppSubReadoutPhotometry.c

    r30619 r31363  
    175175
    176176            fprintf(sourceFile, "%f %f %f %f %f %f %f %f %d %f %f %f %f %f\n",
    177                     x, y, source->psfMag, source->errMag, chi2, source->crNsigma, source->extNsigma,
     177                    x, y, source->psfMag, source->psfMagErr, chi2, source->crNsigma, source->extNsigma,
    178178                    source->pixWeight, source->mode, xMoment, yMoment, xxMoment, xyMoment, yyMoment);
    179179        }
Note: See TracChangeset for help on using the changeset viewer.