IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 7 and Version 8 of Dvo_tutorial


Ignore:
Timestamp:
May 7, 2009, 4:14:24 AM (17 years ago)
Author:
Sebastian Jester
Comment:

add notes about making a CCD with flag-checking and error limit

Legend:

Unmodified
Added
Removed
Modified
  • Dvo_tutorial

    v7 v8  
    159159 cplot RA DEC
    160160}}}
     161
     162= Make a colour-colour plot to find a g-dropout quasar =
     163
     164{{{
     165
     166region 14.84 0.05 1
     167skyregion -1 -1 1 1
     168avextract -region RA DEC g g:err r r:err i i:err z z:err y y:err flag
     169# Not extended, not CR, not defect, not saturated, not bad PSF
     170set notext = (flag & 0x7c00) == 0
     171# Small errors only
     172set in = r:err < 0.1
     173# Select subsets satisfying both criteria
     174subset ri_psf = ri if (notext && (in))
     175subset gr_psf = gr if (notext && in)
     176# can't do && !in ???
     177# plot them
     178limits gr_psf ri_psf
     179clear;box;plot gr_psf ri_psf
     180}}}
     181See source:trunk/psModules/src/objects/pmSourceMasks.h for possible flag values
     182
    161183= Things we want to know/do =
    162184
     
    174196 relphot -D CATDIR . -D CAMERA gpc1 -averages -update
    175197}}}
    176 If you have gpc1 as your default camera in your ~/.ptolemyrc, you can omit the -D CAMERA gpc1.
    177 
    178 {{{
     198 If you have gpc1 as your default camera in your ~/.ptolemyrc, you can omit the -D CAMERA gpc1.
     199
    179200 The Relphot command comes from [wiki:IPPstripe82]
    180 }}} * Pull out star/galaxy separation flag, restrict sample to stars
     201 * Pull out star/galaxy separation flag, restrict sample to stars
    181202 * Filter on magnitude errors
    182203 * Dump ra dec mag magerr stargalflag into ASCII file for customized analysis