Changeset 38986 for trunk/Ohana/src/relastro/src/relastro_objects.c
- Timestamp:
- Oct 27, 2015, 4:49:06 PM (11 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/relastro/src/relastro_objects.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana
-
Property svn:mergeinfo
set to
/branches/eam_branches/ipp-20150625/Ohana merged eligible
-
Property svn:mergeinfo
set to
-
trunk/Ohana/src/relastro/src/relastro_objects.c
r38471 r38986 150 150 151 151 char *command = NULL; 152 strextend (&command, "relastro_client -update-objects -hostID %d -D CATDIR %s -hostdir %s -region %f %f %f %f -statmode %s", 153 table->hosts[i].hostID, CATDIR, table->hosts[i].pathname, UserPatch.Rmin, UserPatch.Rmax, UserPatch.Dmin, UserPatch.Dmax, STATMODE); 152 strextend (&command, "relastro_client -update-objects"); 153 strextend (&command, "-hostID %d", table->hosts[i].hostID); 154 strextend (&command, "-D CATDIR %s", CATDIR); 155 strextend (&command, "-hostdir %s", table->hosts[i].pathname); 156 strextend (&command, "-region %f %f %f %f", UserPatch.Rmin, UserPatch.Rmax, UserPatch.Dmin, UserPatch.Dmax); 157 strextend (&command, "-statmode %s", STATMODE); 154 158 155 159 if (FIT_MODE == FIT_PM_ONLY) { strextend (&command, "-pm"); } … … 164 168 if (MaxDensityUse) { strextend (&command, "-max-density %f", MaxDensityValue); } 165 169 if (FlagOutlier) { strextend (&command, "-clip %d", CLIP_THRESH); } 170 171 if (USE_ALL_IMAGES) { strextend (&command, "-use-all-images"); } 166 172 if (USE_FIXED_PIXCOORDS) { strextend (&command, "-D USE_FIXED_PIXCOORDS 1"); } 167 173 if (PHOTCODE_KEEP_LIST) { strextend (&command, "+photcode %s", PHOTCODE_KEEP_LIST); } … … 172 178 // XXX note that the above pass in the flag as decimal -- also note that args.c cannot handle 0xHEX values 173 179 174 if (MinBadQF > 0.0) { strextend (&command, "-min-bad-psfqf %f", MinBadQF); } 175 if (MaxMeanOffset != 10.0) { strextend (&command, "-max-mean-offset %f", MaxMeanOffset); } 180 if (MinBadQF > 0.0) strextend (&command, "-min-bad-psfqf %f", MinBadQF); 181 if (MaxMeanOffset != 10.0) strextend (&command, "-max-mean-offset %f", MaxMeanOffset); 182 if (N_BOOTSTRAP_SAMPLES > 1) strextend (&command, "-bootstrap-samples %d", N_BOOTSTRAP_SAMPLES); 176 183 177 184 if (TimeSelect) {
Note:
See TracChangeset
for help on using the changeset viewer.
