Changeset 39125 for trunk/Ohana/src/libdvo
- Timestamp:
- Nov 13, 2015, 5:19:12 AM (11 years ago)
- Location:
- trunk/Ohana/src/libdvo
- Files:
-
- 4 edited
-
include/dvo.h (modified) (1 diff)
-
src/dvo_catalog.c (modified) (1 diff)
-
src/dvo_convert_PS1_V5.c (modified) (3 diffs)
-
src/dvo_photcode_ops.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libdvo/include/dvo.h
r39047 r39125 138 138 ID_MEAS_PHOTOM_KRON = 0x00400000, // this measurement is used for the mean kron mag 139 139 } DVOMeasureFlags; 140 141 typedef enum { 142 ID_GALPHOT_FAIL_FIT = 0x00000001, // fit failed to converge or was degenerate 143 ID_GALPHOT_TOO_FEW = 0x00000002, // not enough points to fit the model 144 ID_GALPHOT_OUT_OF_RANGE = 0x00000004, // fit minimum too far outside data range 145 ID_GALPHOT_BAD_ERROR = 0x00000008, // invalid error (nan or inf) 146 } DVOGalphotFlags; 140 147 141 148 // XXX we used these names previously in markstar: replace with ID_MEAS_ARTIFACT -
trunk/Ohana/src/libdvo/src/dvo_catalog.c
r39106 r39125 552 552 galphot->imageID = -1; 553 553 galphot->averef = 0; 554 galphot->flags = 0; 554 555 555 556 galphot->photcode = 0; -
trunk/Ohana/src/libdvo/src/dvo_convert_PS1_V5.c
r39106 r39125 1031 1031 out[i].imageID = in[i].imageID; 1032 1032 out[i].averef = in[i].averef; 1033 out[i].flags = in[i].flags; 1033 1034 out[i].photcode = in[i].photcode; 1034 1035 out[i].modelType = in[i].modelType; … … 1065 1066 out[i].imageID = in[i].imageID; 1066 1067 // out[i].averef = in[i].averef; 1068 // out[i].flags = in[i].flags; 1067 1069 out[i].photcode = in[i].photcode; 1068 1070 out[i].modelType = in[i].modelType; … … 1097 1099 out[i].imageID = in[i].imageID; 1098 1100 out[i].averef = in[i].averef; 1101 out[i].flags = in[i].flags; 1099 1102 out[i].photcode = in[i].photcode; 1100 1103 out[i].modelType = in[i].modelType; -
trunk/Ohana/src/libdvo/src/dvo_photcode_ops.c
r38986 r39125 1944 1944 } 1945 1945 1946 GALPHOT_FIELD(GAL_MAG, mag) 1947 GALPHOT_FIELD(GAL_MAG_ERR, magErr) 1948 GALPHOT_FIELD(GAL_MAJ, majorAxis) 1946 GALPHOT_FIELD(GAL_MAG, mag) 1947 GALPHOT_FIELD(GAL_MAG_ERR, magErr) 1948 GALPHOT_FIELD(GAL_MAJ, majorAxis) 1949 1949 GALPHOT_FIELD(GAL_MAJ_ERR, majorAxisErr) 1950 GALPHOT_FIELD(GAL_MIN, minorAxis) 1951 GALPHOT_FIELD(GAL_MIN_ERR, minorAxisErr) 1952 GALPHOT_FIELD(GAL_THETA, theta) 1953 GALPHOT_FIELD(GAL_THETA_ERR, thetaErr) 1950 GALPHOT_FIELD(GAL_MIN, minorAxis) 1951 GALPHOT_FIELD(GAL_MIN_ERR, minorAxisErr) 1952 GALPHOT_FIELD(GAL_THETA, theta) 1953 GALPHOT_FIELD(GAL_THETA_ERR, thetaErr) 1954 1954 GALPHOT_FIELD(GAL_INDEX, index) 1955 1955 GALPHOT_FIELD(GAL_CHISQ, chisq) 1956 1956 GALPHOT_FIELD(GAL_NPIX, Npix) 1957 GALPHOT_FIELD(GAL_FLAGS, flags) 1957 1958 GALPHOT_FIELD(GAL_TYPE, modelType)
Note:
See TracChangeset
for help on using the changeset viewer.
