IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 18, 2014, 2:50:41 PM (12 years ago)
Author:
eugene
Message:

merge from trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140206/Ohana/src/libdvo/include/dvo.h

    r36520 r36533  
    445445} MeasureTiny;
    446446
     447/** STRUCT DEFINITION **/
     448typedef struct {
     449  double           R;                    // RA (decimal degrees )
     450  double           D;                    // DEC (decimal degrees )
     451  float            dR;                   // RA error (arcsec)
     452  float            dD;                   // DEC error (arcsec)
     453  float            uR;                   // RA*cos(D) proper-motion (arcsec/year)
     454  float            uD;                   // DEC proper-motion (arcsec/year)
     455  float            duR;                  // RA*cos(D) p-m error (arcsec/year)
     456  float            duD;                  // DEC p-m error (arcsec/year)
     457  float            P;                    // parallax (arcsec)
     458  float            dP;                   // parallax error (arcsec)
     459  float            ChiSqAve;             // astrometry analysis chisq
     460  float            ChiSqPM;              // astrometry analysis chisq
     461  float            ChiSqPar;             // astrometry analysis chisq
     462  int              Tmean;                // mean epoch (PM,PAR ref) (unix time seconds)
     463  int              Trange;               // mean epoch (PM,PAR ref) (unix time seconds)
     464  float            Xp;                   // unused
     465  unsigned short   Npos;                 // number of detections used for astrometry
     466  unsigned short   Nmeasure;             // number of psf measurements
     467  unsigned short   Nmissing;             // number of missings
     468  unsigned short   Nextend;              // number of extended measurements
     469  uint32_t         measureOffset;        // offset to first psf measurement
     470  uint32_t         missingOffset;        // offset to first missing obs
     471  uint32_t         extendOffset;         // offset to first extended measurement
     472  uint32_t         flags;                // average object flags (star; ghost; etc)
     473  uint32_t         photFlagsUpper;       // upper bit of 2 bit summary of per-measure photflags
     474  uint32_t         photFlagsLower;       // lower bit of 2 bit summary of per-measure photflags
     475  unsigned int     objID;                // unique ID for object in table
     476  unsigned int     catID;                // unique ID for table in which object was first realized
     477  uint64_t         extID;                // external ID for object (eg PSPS objID)
     478} Average_PS1_V4alt;
     479
     480Average_PS1_V4alt *gfits_table_get_Average_PS1_V4alt (FTable *table, off_t *Ndata, char *swapped);
     481Average *Average_PS1_V4alt_ToInternal (Average_PS1_V4alt *in, off_t Nvalues);
    447482
    448483/** STRUCT DEFINITION **/
     
    625660
    626661float PhotAperInst (Measure *measure);
     662float PhotAperAve (PhotCode *code, Average *average, SecFilt *secfilt);
    627663float PhotKronInst (Measure *measure);
    628664float PhotKronAve (PhotCode *code, Average *average, SecFilt *secfilt);
Note: See TracChangeset for help on using the changeset viewer.