IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 4, 2008, 12:39:41 PM (18 years ago)
Author:
eugene
Message:

merge changes from eam_branch_20080223 : updates to DVO output format, addstar (SDSS and 2MASS flags), relastro (FitChip)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/dvo/dbExtractMeasures.c

    r15509 r16810  
    11# include "dvoshell.h"
     2
     3// to add a new field to the extractions:
     4// 1) add the selection for the field below
     5// 2) add the field to the ParseMeasureField in dbFields.c
     6// 3) add the field to the measure enum list in dvoshell.h
    27
    38/* time concepts */
     
    111116      break;
    112117    case MEAS_NMEAS: /* OK */
    113       value = average[0].Nm;
     118      value = average[0].Nmeasure;
    114119      break;
    115120    case MEAS_NMISS: /* OK */
    116       value = average[0].Nn;
     121      value = average[0].Nmissing;
    117122      break;
    118123    case MEAS_OBJFLAGS: /* OK */
     
    171176    case MEAS_XCCD: /* OK */
    172177/* I need to perform this conversion for ELIXIR and LONEOS formats on load */     
    173 # if 0
     178# if 1
    174179      value = measure[0].Xccd;
    175180# else
     
    184189    case MEAS_YCCD: /* OK */
    185190/* I need to perform this conversion for ELIXIR and LONEOS formats on load */     
    186 # if 0
     191# if 1
    187192      value = measure[0].Yccd;
    188193# else
     
    230235      value = measure[0].qPSF;
    231236      break;
    232     case MEAS_PSF_PROB: /* OK */
    233       value = measure[0].psfProb;
     237    case MEAS_PSF_CHISQ: /* OK */
     238      value = measure[0].psfChisq;
    234239      break;
    235240    case MEAS_CR_NSIGMA: /* OK */
Note: See TracChangeset for help on using the changeset viewer.