IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 22, 2009, 3:00:47 PM (17 years ago)
Author:
eugene
Message:

various updates from eam_branches/20091113

1) psf model order limits now consistent in poly and map modes
2) added subpix visualization
3) added model fit in MATCHED_REFS
4) handle input smf files with empty extensions (earlier failure)
5) function for generating unique reference matches

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/astrom/pmAstrometryObjects.h

    r24021 r26260  
    5454typedef struct
    5555{
    56     int raw;                             ///< What is this?
    57     int ref;                             ///< What is this?
     56    int raw;                             ///< reference to the rawstar entry
     57    int ref;                             ///< reference to the refstar entry
    5858}
    5959pmAstromMatch;
     60
     61
     62/*
     63 * The pmAstromMatchInfo structure is used to generate a unique set of matches
     64 */
     65typedef struct
     66{
     67    pmAstromMatch *match;               ///< reference to the match
     68    float radius;                       ///< distance between the object
     69}
     70pmAstromMatchInfo;
    6071
    6172
     
    8596    int     nMatch;                     ///<
    8697    double  nSigma;                     ///<
     98    double  dXsys;                      ///< systematic error in X
     99    double  dYsys;                      ///< systematic error in Y
     100    double  dXrange;                    ///< 10% - 90% range X residuals (unmasked, high S/N)
     101    double  dYrange;                    ///< 10% - 90% range Y residuals (unmasked, high S/N)
    87102}
    88103pmAstromFitResults;
     
    121136);
    122137
     138psArray *pmAstromRadiusMatchUniq (psArray *refstars, psArray *rawstars, psArray *matches);
    123139
    124140pmAstromStats *pmAstromStatsAlloc(void);
     
    343359);
    344360
     361float pmAstromVectorRange (psVector *myVector, float minFrac, float maxFrac, float stdevGuess);
     362
    345363/// @}
    346364#endif // PM_ASTROMETRY_OBJECTS_H
Note: See TracChangeset for help on using the changeset viewer.