IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 29, 2015, 6:52:41 AM (11 years ago)
Author:
eugene
Message:

merge changes from ipp-20150112

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/Ohana

    • Property svn:mergeinfo deleted
  • trunk/Ohana/src/libdvo/include/dvo.h

    r37992 r38062  
    555555Measure *Measure_PS1_V4alt_ToInternal (Average *ave, Measure_PS1_V4alt *in, off_t Nvalues);
    556556
     557typedef struct {
     558  double           R;                    // RA at epoch (degrees)
     559  double           D;                    // DEC at epoch (degrees)
     560  float            M;                    // catalog mag (mag)
     561  float            dM;                   // mag error (mag)
     562  float            Map;                  // aperture mag (mag)
     563  float            dMap;                 // aperture mag (mag)
     564  float            Mkron;                // kron magnitude (mag)
     565  float            dMkron;               // kron magnitude error (mag)
     566  float            Mcal;                 // image cal mag (mag)
     567  float            dMcal;                // systematic calibration error (mag)
     568  float            dt;                   // exposure time (2.5*log(exptime))
     569  float            FluxPSF;              // flux from psf fit (counts/sec)
     570  float            dFluxPSF;             // error on psf flux (counts/sec)
     571  float            FluxKron;             // flux from kron ap (counts/sec)
     572  float            dFluxKron;            // error on kron flux (counts/sec)
     573  float            FluxAp;               // flux from ap ap (counts/sec)
     574  float            dFluxAp;              // error on ap flux (counts/sec)
     575  float            airmass;              // (airmass - 1) (airmass)
     576  float            az;                   // telescope azimuth
     577  float            Xccd;                 // X coord on chip (raw value) (pixels)
     578  float            Yccd;                 // Y coord on chip (raw value) (pixels)
     579  float            Xfix;                 // X coord after correction (pixels)
     580  float            Yfix;                 // Y coord after correction (pixels)
     581  float            XoffKH;               // X offset from correction (pixels)
     582  float            YoffKH;               // Y offset from correction (pixels)
     583  float            XoffDCR;              // X offset from correction (pixels)
     584  float            YoffDCR;              // Y offset from correction (pixels)
     585  float            RoffGAL;              // RA offset from correction (arcsec)
     586  float            DoffGAL;              // DEC offset from correction (arcsec)
     587  float            Sky;                  // local estimate of sky flux (counts/sec)
     588  float            dSky;                 // local estimate of sky flux (counts/sec)
     589  int              t;                    // time in seconds (UNIX)
     590  unsigned int     averef;               // reference to average entry     
     591  unsigned int     detID;                // detection ID
     592  unsigned int     objID;                // unique ID for object in table
     593  unsigned int     catID;                // unique ID for table in which object was first realized
     594  uint64_t         extID;                // external ID (eg PSPS detID)
     595  unsigned int     imageID;              // reference to DVO image ID
     596  float            psfQF;                // psf coverage/quality factor
     597  float            psfQFperf;            // psf coverage / quality factor (all mask bits)
     598  float            psfChisq;             // psf fit chisq
     599  int              psfNdof;              // psf degrees of freedom
     600  int              psfNpix;              // psf number of pixels
     601  int              photFlags2;           // flags supplied by photometry program
     602  float            extNsigma;            // Nsigma deviation towards EXT
     603  short            FWx;                  // object fwhm major axis (1/100 of pixels)
     604  short            FWy;                  // object fwhm minor axis (1/100 of pixels )
     605  short            theta;                // angle wrt ccd X dir ((0xffff/360) deg)
     606  short            Mxx;                  // second moments in pixel coords (1/100 of pixels)
     607  short            Mxy;                  // second moments in pixel coords (1/100 of pixels)
     608  short            Myy;                  // second moments in pixel coords (1/100 of pixels)
     609  unsigned short   t_msec;               // time fraction of second (milliseconds)
     610  unsigned short   photcode;             // photcode
     611  short            dXccd;                // X coord error on chip (1/100 of pixels)
     612  short            dYccd;                // Y coord error on chip (1/100 of pixels)
     613  short            dRsys;                // systematic error from astrom (1/100 of pixels)
     614  short            posangle;             // position angle sky to chip ((0xffff/360) deg)
     615  float            pltscale;             // plate scale (arcsec/pixel)
     616  unsigned int     dbFlags;              // flags supplied by analysis in database
     617  unsigned int     photFlags;            // flags supplied by photometry program
     618  int              padding;              // padding to ensure 8byte blocks
     619} Measure_PS1_V5alt;
     620
     621Measure *Measure_PS1_V5alt_ToInternal (Average *ave, Measure_PS1_V5alt *in, off_t Nvalues);
     622int gfits_convert_Measure_PS1_V5alt (Measure_PS1_V5alt *data, off_t size, off_t nitems);
     623Measure_PS1_V5alt *gfits_table_get_Measure_PS1_V5alt (FTable *ftable, off_t *Ndata, char *swapped);
     624
    557625// alternate version of PS1_V5 (old dev version)
    558626typedef struct {
Note: See TracChangeset for help on using the changeset viewer.