IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38664


Ignore:
Timestamp:
Aug 5, 2015, 9:18:16 AM (11 years ago)
Author:
eugene
Message:

do not apply frame correction

Location:
branches/eam_branches/ipp-20150625/Ohana/src/relastro/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150625/Ohana/src/relastro/src/UpdateChips.c

    r38062 r38664  
    148148    setImageRaw (catalog, Ncatalog, i, raw, Nraw, MODE_MOSAIC);
    149149    if (USE_GALAXY_MODEL) {
     150      // XXX DEPRECATE?
    150151      image[i].flags |= ID_IMAGE_ASTROM_GMM;
    151152    }
  • branches/eam_branches/ipp-20150625/Ohana/src/relastro/src/relastro_images.c

    r38441 r38664  
    7474      for (i = 0; i < NLOOP; i++) {
    7575        UpdateObjects (catalog, Ncatalog, (i > 0)); // calculate <R>,<D>; if (i > 0), apply Galaxy Motion Model (if desired)
    76         if ((i > 1) || !USE_GALAXY_MODEL) {
    77           // if GALAXY_MODEL is selected, we want to delay the frame correction until we have
    78           // applied the galaxy model a couple of times.
    79           FrameCorrectionSerial (catalog, Ncatalog);
    80         }
    8176        UpdateChips (catalog, Ncatalog);   // measure.X,Y -> R,D, fit image.coords
    8277        MARKTIME("update chips: %f sec\n", dtime);
  • branches/eam_branches/ipp-20150625/Ohana/src/relastro/src/relastro_parallel_images.c

    r38062 r38664  
    122122        UpdateObjects (catalog, Ncatalog, (i > 0));
    123123        LOGRTIME("UpdateObjects loop %d on %s, host %d: %f sec\n", i, myHostName, REGION_HOST_ID, dtime);
    124         if ((i > 1) || !USE_GALAXY_MODEL) {
    125           // if GALAXY_MODEL is selected, we want to delay the frame correction until we have
    126           // applied the galaxy model a couple of times.
    127           FrameCorrectionParallelSlave (catalog, Ncatalog, regionHosts, i);
    128           LOGRTIME("FrameCorrection loop %d on %s, host %d: %f sec\n", i, myHostName, REGION_HOST_ID, dtime);
    129         }
     124
    130125        share_mean_pos (catalog, Ncatalog, regionHosts, i);
    131126        LOGRTIME("share_mean_pos loop %d on %s, host %d: %f sec\n", i, myHostName, REGION_HOST_ID, dtime);
Note: See TracChangeset for help on using the changeset viewer.