Changeset 38441 for trunk/Ohana/src/getstar/src/getstar.c
- Timestamp:
- Jun 12, 2015, 6:18:23 PM (11 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/getstar/src/getstar.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana
-
Property svn:mergeinfo
set to
/branches/eam_branches/ohana.20150429 merged eligible
-
Property svn:mergeinfo
set to
-
trunk/Ohana/src/getstar/src/getstar.c
r37359 r38441 28 28 output.catformat = dvo_catalog_catformat (CATFORMAT); // set the default catformat from config data 29 29 output.catmode = dvo_catalog_catmode (CATMODE); // set the default catmode from config data 30 output.catflags = LOAD_AVES | LOAD_MEAS | LOAD_SECF;30 output.catflags = DVO_LOAD_AVERAGE | DVO_LOAD_MEASURE | DVO_LOAD_SECFILT; 31 31 output.Nsecfilt = GetPhotcodeNsecfilt (); 32 32 … … 63 63 catalog.filename = skylist[0].filename[i]; 64 64 catalog.Nsecfilt = GetPhotcodeNsecfilt (); 65 catalog.catflags = LOAD_AVES | LOAD_SECF;66 catalog.catflags |= needMeas ? LOAD_MEAS : SKIP_MEAS;65 catalog.catflags = DVO_LOAD_AVERAGE | DVO_LOAD_SECFILT; 66 catalog.catflags |= needMeas ? DVO_LOAD_MEASURE : DVO_SKIP_MEASURE; 67 67 68 68 // an error exit status here is a significant error … … 71 71 exit (2); 72 72 } 73 if (!catalog.Nave s_disk) {73 if (!catalog.Naverage_disk) { 74 74 dvo_catalog_unlock (&catalog); 75 75 dvo_catalog_free (&catalog); … … 95 95 catalog.filename = skylist[0].filename[i]; 96 96 catalog.Nsecfilt = GetPhotcodeNsecfilt (); 97 catalog.catflags = LOAD_AVES | LOAD_SECF;98 catalog.catflags |= needMeas ? LOAD_MEAS : SKIP_MEAS;97 catalog.catflags = DVO_LOAD_AVERAGE | DVO_LOAD_SECFILT; 98 catalog.catflags |= needMeas ? DVO_LOAD_MEASURE : DVO_SKIP_MEASURE; 99 99 100 100 // an error exit status here is a significant error … … 104 104 } 105 105 /* skip empty catalogs */ 106 if (!catalog.Nave s_disk) continue;106 if (!catalog.Naverage_disk) continue; 107 107 stars = select_by_image (&catalog, &image, 0, 0, stars, &Nstars); 108 108 }
Note:
See TracChangeset
for help on using the changeset viewer.
