Changeset 39445
- Timestamp:
- Mar 8, 2016, 11:49:15 AM (10 years ago)
- Location:
- branches/eam_branches/ohana.20160226/src/relastro
- Files:
-
- 1 added
- 5 edited
-
Makefile (modified) (5 diffs)
-
src/ImageOps.c (modified) (2 diffs)
-
src/MeasFilterTest.c (added)
-
src/fitobj.c (modified) (1 diff)
-
src/fitobj2.c (modified) (1 diff)
-
src/fitstk.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ohana.20160226/src/relastro/Makefile
r39432 r39445 48 48 $(SRC)/UpdateMeasures.$(ARCH).o \ 49 49 $(SRC)/GetAstromError.$(ARCH).o \ 50 $(SRC)/MeasFilterTest.$(ARCH).o \ 50 51 $(SRC)/args.$(ARCH).o \ 51 52 $(SRC)/bcatalog.$(ARCH).o \ … … 121 122 $(SRC)/UpdateMeasures.$(ARCH).o \ 122 123 $(SRC)/GetAstromError.$(ARCH).o \ 124 $(SRC)/MeasFilterTest.$(ARCH).o \ 123 125 $(SRC)/args.$(ARCH).o \ 124 126 $(SRC)/bcatalog.$(ARCH).o \ … … 196 198 $(SRC)/mkpolyterm.$(ARCH).o \ 197 199 $(SRC)/GetAstromError.$(ARCH).o \ 198 $(SRC)/ImageOps.$(ARCH).o \ 199 $(SRC)/MosaicOps.$(ARCH).o \ 200 $(SRC)/MeasFilterTest.$(ARCH).o \ 200 201 $(SRC)/extra.$(ARCH).o \ 201 202 $(SRC)/plotstuff.$(ARCH).o \ … … 219 220 $(SRC)/mkpolyterm.$(ARCH).o \ 220 221 $(SRC)/GetAstromError.$(ARCH).o \ 221 $(SRC)/ImageOps.$(ARCH).o \ 222 $(SRC)/MosaicOps.$(ARCH).o \ 222 $(SRC)/MeasFilterTest.$(ARCH).o \ 223 223 $(SRC)/extra.$(ARCH).o \ 224 224 $(SRC)/plotstuff.$(ARCH).o \ … … 242 242 $(SRC)/mkpolyterm.$(ARCH).o \ 243 243 $(SRC)/GetAstromError.$(ARCH).o \ 244 $(SRC)/ImageOps.$(ARCH).o \ 245 $(SRC)/MosaicOps.$(ARCH).o \ 244 $(SRC)/MeasFilterTest.$(ARCH).o \ 246 245 $(SRC)/extra.$(ARCH).o \ 247 246 $(SRC)/plotstuff.$(ARCH).o \ 248 247 $(SRC)/fitpoly.$(ARCH).o 248 249 # stupid dependencies: 250 # UpdateObjects.c:UpdateObjects_Chips needs 251 # ImageOps.c:MeasFilterTiny forces 252 # load_images.c:free_astrom_table needs 253 # select_images.c 254 # MosaicOps.c 249 255 250 256 $(FITSTK): $(INC)/relastro.h -
branches/eam_branches/ohana.20160226/src/relastro/src/ImageOps.c
r39442 r39445 931 931 } 932 932 933 # if (0) 933 934 /** lifted from relphot/StarOps.clean_measures */ 934 935 void FlagOutliers2D(Catalog *catalog); … … 1298 1299 return TRUE; 1299 1300 } 1301 # endif -
branches/eam_branches/ohana.20160226/src/relastro/src/fitobj.c
r39412 r39445 240 240 return catalog; 241 241 } 242 243 // these dummy functions are used to avoid including ImageOps, etc 244 int areImagesMatched () { 245 return FALSE; 246 } 247 float getColorBlue (off_t meas, int cat) { 248 OHANA_UNUSED_PARAM(meas); 249 OHANA_UNUSED_PARAM(cat); 250 return (NAN); 251 } 252 float getColorRed (off_t meas, int cat) { 253 OHANA_UNUSED_PARAM(meas); 254 OHANA_UNUSED_PARAM(cat); 255 return (NAN); 256 } -
branches/eam_branches/ohana.20160226/src/relastro/src/fitobj2.c
r39412 r39445 265 265 return catalog; 266 266 } 267 268 // these dummy functions are used to avoid including ImageOps, etc 269 int areImagesMatched () { 270 return FALSE; 271 } 272 float getColorBlue (off_t meas, int cat) { 273 OHANA_UNUSED_PARAM(meas); 274 OHANA_UNUSED_PARAM(cat); 275 return (NAN); 276 } 277 float getColorRed (off_t meas, int cat) { 278 OHANA_UNUSED_PARAM(meas); 279 OHANA_UNUSED_PARAM(cat); 280 return (NAN); 281 } -
branches/eam_branches/ohana.20160226/src/relastro/src/fitstk.c
r39387 r39445 279 279 return catalog; 280 280 } 281 282 // these dummy functions are used to avoid including ImageOps, etc 283 int areImagesMatched () { 284 return FALSE; 285 } 286 float getColorBlue (off_t meas, int cat) { 287 OHANA_UNUSED_PARAM(meas); 288 OHANA_UNUSED_PARAM(cat); 289 return (NAN); 290 } 291 float getColorRed (off_t meas, int cat) { 292 OHANA_UNUSED_PARAM(meas); 293 OHANA_UNUSED_PARAM(cat); 294 return (NAN); 295 }
Note:
See TracChangeset
for help on using the changeset viewer.
