IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 6, 2016, 9:44:08 AM (10 years ago)
Author:
eugene
Message:

split galaxy motion model option into two options: galaxy motion model + apply proper motion; remove deprecated chunk of code; add options to skip HSC, CFH, PS1_CHIP, or PS1_STACK images (leaving them static); calculate the error based on the ordinary least squares and regular poisson weights (when doing bootstrap error analysis, choose the MAX); calculate dXpixSys,dYpixSys in arcsec based on plate scale; add option to avoid changing measurements for specific cameras; StarMap tests are now done in real arcsec using plate scales; option to fit the chips without modifying the mean objects; remove excessively verbose memory checks; add tests for HSC and CFH photcodes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20160809/Ohana/src/relastro/include/relastro.h

    r39719 r39731  
    3333typedef enum {OP_NONE, OP_IMAGES, OP_HIGH_SPEED, OP_MERGE_SOURCE, OP_UPDATE_OBJECTS, OP_UPDATE_OFFSETS, OP_LOAD_OBJECTS, OP_HPM, OP_PARALLEL_REGIONS, OP_PARALLEL_IMAGES, OP_REPAIR_STACKS, OP_REPAIR_WARPS, OP_REPAIR_OBJECT_ID} RelastroOp;
    3434
    35 typedef enum {TARGET_NONE, TARGET_SIMPLE, TARGET_CHIPS, TARGET_MOSAICS} FitTarget;
     35typedef enum {TARGET_NONE, TARGET_SIMPLE, TARGET_CHIPS, SET_CHIPS, TARGET_MOSAICS} FitTarget;
    3636
    3737typedef enum {
     
    144144  int Nfit;
    145145  int converged;
     146  int useWeight;
     147
    146148} FitAstromResult;
    147149
     
    364366int    USE_ALL_IMAGES;
    365367int    CHECK_MEASURE_TO_IMAGE;
     368
     369int    SKIP_PS1_CHIP;
     370int    SKIP_PS1_STACK;
     371int    SKIP_HSC;
     372int    SKIP_CFH;
     373
     374int    UPDATE_PS1_CHIP_MEASURE;
     375int    UPDATE_HSC_MEASURE;
     376int    UPDATE_CFH_MEASURE;
     377
     378int    APPLY_PROPER_MOTION;
    366379
    367380int    RESET;
     
    744757int isGPC1stack (int photcode);
    745758int isGPC1warp (int photcode);
     759int isHSCchip (int photcode);
     760int isCFHchip (int photcode);
    746761
    747762int save_astrom_table ();
Note: See TracChangeset for help on using the changeset viewer.