Changeset 16810 for trunk/Ohana/src/opihi/dvo/dbExtractMeasures.c
- Timestamp:
- Mar 4, 2008, 12:39:41 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/dvo/dbExtractMeasures.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/dvo/dbExtractMeasures.c
r15509 r16810 1 1 # 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 2 7 3 8 /* time concepts */ … … 111 116 break; 112 117 case MEAS_NMEAS: /* OK */ 113 value = average[0].Nm ;118 value = average[0].Nmeasure; 114 119 break; 115 120 case MEAS_NMISS: /* OK */ 116 value = average[0].N n;121 value = average[0].Nmissing; 117 122 break; 118 123 case MEAS_OBJFLAGS: /* OK */ … … 171 176 case MEAS_XCCD: /* OK */ 172 177 /* I need to perform this conversion for ELIXIR and LONEOS formats on load */ 173 # if 0178 # if 1 174 179 value = measure[0].Xccd; 175 180 # else … … 184 189 case MEAS_YCCD: /* OK */ 185 190 /* I need to perform this conversion for ELIXIR and LONEOS formats on load */ 186 # if 0191 # if 1 187 192 value = measure[0].Yccd; 188 193 # else … … 230 235 value = measure[0].qPSF; 231 236 break; 232 case MEAS_PSF_ PROB: /* OK */233 value = measure[0].psf Prob;237 case MEAS_PSF_CHISQ: /* OK */ 238 value = measure[0].psfChisq; 234 239 break; 235 240 case MEAS_CR_NSIGMA: /* OK */
Note:
See TracChangeset
for help on using the changeset viewer.
