IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 16, 2015, 8:17:13 PM (11 years ago)
Author:
eugene
Message:

adding XoffCAM,YoffCAM to measure.d, measure-ps-v5.d (adding methods for PS1_V5alt)

File:
1 edited

Legend:

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

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