IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38470 for trunk


Ignore:
Timestamp:
Jun 13, 2015, 5:57:53 AM (11 years ago)
Author:
eugene
Message:

fix minor merge typos

Location:
trunk/Ohana/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/addstar/src/loadtycho_rawdata.c

    r38467 r38470  
    131131      catalog.catformat = dvo_catalog_catformat (CATFORMAT);  // set the default catformat from config data
    132132      catalog.catmode   = dvo_catalog_catmode (CATMODE);      // set the default catmode from config data
    133       catalog.catflags = LOAD_AVES | LOAD_MEAS | LOAD_MISS | LOAD_SECF;
     133      catalog.catflags  = DVO_LOAD_AVERAGE | DVO_LOAD_MEASURE | DVO_LOAD_MISSING | DVO_LOAD_SECFILT | DVO_LOAD_LENSING;
    134134      catalog.Nsecfilt  = GetPhotcodeNsecfilt ();
    135135
  • trunk/Ohana/src/dvomerge/src/dvomergeUpdate_catalogs.c

    r38468 r38470  
    1010
    1111int dvomergeUpdate_parallel (char *input, char *output, SkyTable *outsky, IDmapType *IDmap);
    12 int dvomergeUpdate_parallel_group (HostTableGroup *group, char *absinput, char *absoutput, SkyTable *sky);
    13 int dvomergeUpdate_parallel_table (HostTable *table, char *absinput, char *absoutput);
     12int dvomergeUpdate_parallel_group (HostTableGroup *group, char *absinput, char *absoutput);
    1413
    1514int dvomergeUpdate_catalogs (char *input, char *output, SkyTable *outsky, SkyList *inlist, int NsecfiltInput, int NsecfiltOutput, IDmapType *IDmap, int *secfiltMap) {
     
    233232  return TRUE;
    234233}
    235 
    236 int dvomergeUpdate_parallel_group (HostTableGroup *group, char *absinput, char *absoutput);
    237234
    238235// launch the dvomergeUpdate_client jobs to the parallel hosts
  • trunk/Ohana/src/relphot/src/reload_catalogs.c

    r38466 r38470  
    234234    // MIN_ERROR
    235235   
    236     if (VERBOSE)          { strextend (&command, "-v"); }
    237     if (VERBOSE2)         { strextend (&command, "-vv"); }
    238     if (RESET)            { strextend (&command, "-reset"); }
    239     if (RESET_ZEROPTS)    { strextend (&command, "-reset-zpts"); }
    240     if (UPDATE)           { strextend (&command, "-update"); }
    241     if (IS_DIFF_DB)       { strextend (&command, "-is-diff-db"); }
    242     if (!KEEP_UBERCAL)    { strextend (&command, "-reset-ubercal"); }
    243     if (UPDATE_CATFORMAT) { strextend (&command, "-update-catformat %s", UPDATE_CATFORMAT); }
    244     if (BOUNDARY_TREE)    { strextend (&command, "-boundary-tree %s", BOUNDARY_TREE); }
    245     if (SYNTH_ZERO_POINTS) { strextend {&command, "-synthphot-zpts %s", SYNTH_ZERO_POINTS); }
     236    if (VERBOSE)           { strextend (&command, "-v"); }
     237    if (VERBOSE2)          { strextend (&command, "-vv"); }
     238    if (RESET)             { strextend (&command, "-reset"); }
     239    if (RESET_ZEROPTS)     { strextend (&command, "-reset-zpts"); }
     240    if (UPDATE)            { strextend (&command, "-update"); }
     241    if (IS_DIFF_DB)        { strextend (&command, "-is-diff-db"); }
     242    if (!KEEP_UBERCAL)     { strextend (&command, "-reset-ubercal"); }
     243    if (UPDATE_CATFORMAT)  { strextend (&command, "-update-catformat %s", UPDATE_CATFORMAT); }
     244    if (BOUNDARY_TREE)     { strextend (&command, "-boundary-tree %s", BOUNDARY_TREE); }
     245    if (SYNTH_ZERO_POINTS) { strextend (&command, "-synthphot-zpts %s", SYNTH_ZERO_POINTS); }
    246246
    247247    // deprecate
  • trunk/Ohana/src/relphot/src/relphot_objects.c

    r38466 r38470  
    148148              table->hosts[i].hostID, CATDIR, table->hosts[i].pathname, UserPatch.Rmin, UserPatch.Rmax, UserPatch.Dmin, UserPatch.Dmax, STATMODE, CAMERA, STAR_TOOFEW, MIN_ERROR);
    149149
    150     if (VERBOSE)       { strextend (&command, "-v"); }
    151     if (VERBOSE2)      { strextend (&command, "-vv"); }
    152     if (RESET)         { strextend (&command, "-reset"); }
    153     if (RESET_ZEROPTS) { strextend (&command, "-reset-zpts"); }
    154     if (UPDATE)        { strextend (&command, "-update"); }
    155     if (!KEEP_UBERCAL) { strextend (&command, "-reset-ubercal"); }
    156     if (SYNTH_ZERO_POINTS) { snprintf (tmpline, 1024, "%s -synthphot-zpts %s", command, SYNTH_ZERO_POINTS); strcpy (command, tmpline); }
     150    if (VERBOSE)           { strextend (&command, "-v"); }
     151    if (VERBOSE2)          { strextend (&command, "-vv"); }
     152    if (RESET)             { strextend (&command, "-reset"); }
     153    if (RESET_ZEROPTS)     { strextend (&command, "-reset-zpts"); }
     154    if (UPDATE)            { strextend (&command, "-update"); }
     155    if (!KEEP_UBERCAL)     { strextend (&command, "-reset-ubercal"); }
     156    if (SYNTH_ZERO_POINTS) { strextend (&command, "-synthphot-zpts %s", SYNTH_ZERO_POINTS); }
    157157
    158158    // if (SET_MREL_VERSION != 1) { strextend (&command, "-set-mrel-version %d", SET_MREL_VERSION); }
Note: See TracChangeset for help on using the changeset viewer.