PSF photometry is one of the major ways to measure the flux of sources (detections) in PanSTARRS1 data.  It is based on fitting a predefined analytical shape to the counts reported for each detection, and then applying a zero point conversion to the total object count rate thus obtained.

Contents

The starting point for the PS1 data archive is at Pan-STARRS1 data archive home page.

PSF Photometry

Obtained from fitting a predefined PSF form to all detections. The quality of the fit can help determine whether a source is indeed a point source, it is extended, or it is spurious.  PSF photometry is performed on warps by a module called PSFPHOT and on stacks by PSPHOTSTACK. The result of the fit is reported in the Detection table (or StackDetection table for stacks).  Values reported include flux, uncertainty, position, elliptical size, and quality parameters.

The PSF Model

The PSF model takes the form of an analytical function plus residuals.  The fitted parameters and residuals vary with position, but are actually determined at 9 positions (in a regular 3x3 grid pattern) per skycell then interpolated to other positions.

Analytical functions tested include:

  • GAUSS : exp (-z)
  • PGAUSS : (1 + z + z2/2 + z3/6)-1
  • QGAUSS : (1 + kz + z2.25)-1
  • RGAUSS : (1 + z + zk)-1
  • PS1_V1 : (1 + kz + z1.67)-1

where z is the elliptical contour (akin to a radius squared):

  • z = x2/(2σ2xx) + y2/(2σ2yy) + σxyXY

The PS1_V1 model is the current default value for PS1 analysis.

Variability over the image is formally represented as:

  • PSF = F[dx,dy;ai(x,y)] + R0[dx,dy] + x Rx[dx,dy] + y Ry[dx,dy]

Existing documentation states that a global linear fit is performed in which the fluxes of all objects is fitted for simultaneously with the following considerations:

  • Simultaneous fit of fluxes for all objects in the image
  • Chi-square fit:
    • χ2 = Σ(fi - Σ (Aj Fj))2 Wi (i : pixels; j : objects)
    • Wi – weighting function
      • now constant (from mid-2012), was inv variance
      • using a constant weight removes a photometric bias found for faint sources
  • minimization of Aj requires inversion of large square matrix
    • N (number of objects) may be up to 100k
    • but, highly diagonal, so inversion is actually fast
  • ~ 1 second for 100k objects (unless they grow too large)

Photometric and astrometric parameters from PSF fitting

The PS1 Detection table fields table contains the following parameters related to PSF photometry:

xPosraw pixelsREAL4-999PSF x center location.
yPosraw pixelsREAL4-999PSF y center location.
xPosErrraw pixelsREAL4-999Error in PSF x center location.
yPosErrraw pixelsREAL4-999Error in PSF y center location.
psfFluxJanskysREAL4-999Flux from PSF fit.
psfFluxErrJanskysREAL4-999Error on flux from PSF fit.
psfMajorFWHMarcsecREAL4-999PSF major axis FWHM.
psfMinorFWHMarcsecREAL4-999PSF minor axis FWHM.
psfThetadegreesREAL4-999PSF major axis orientation.
psfCoredimensionlessREAL4-999PSF core parameter k, where F = F0 / (1 + k r^2 + r^3.33).
psfQfdimensionlessREAL4-999PSF coverage factor.
psfQfPerfectdimensionlessREAL4-999PSF weighted fraction of pixels totally unmasked.
psfChiSqdimensionlessREAL4-999Reduced chi squared value of the PSF model fit.
psfLikelihooddimensionlessREAL4-999Likelihood that this detection is best fit by a PSF.

The equivalent stack measurements are to be found in PS1 StackObjectAttributes table fields.

Note that psphot actually returns PSF_MAJOR and PSF_MINOR, whose relation to FWHM depends on the value of k (reported as psfCore) for the PS1_V1 profile. For k=0, FWHM=PSF_MAJOR*2*sqrt(2)*pixel_size.


  • No labels