Changes between Version 7 and Version 8 of Dvo_tutorial
- Timestamp:
- May 7, 2009, 4:14:24 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Dvo_tutorial
v7 v8 159 159 cplot RA DEC 160 160 }}} 161 162 = Make a colour-colour plot to find a g-dropout quasar = 163 164 {{{ 165 166 region 14.84 0.05 1 167 skyregion -1 -1 1 1 168 avextract -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 170 set notext = (flag & 0x7c00) == 0 171 # Small errors only 172 set in = r:err < 0.1 173 # Select subsets satisfying both criteria 174 subset ri_psf = ri if (notext && (in)) 175 subset gr_psf = gr if (notext && in) 176 # can't do && !in ??? 177 # plot them 178 limits gr_psf ri_psf 179 clear;box;plot gr_psf ri_psf 180 }}} 181 See source:trunk/psModules/src/objects/pmSourceMasks.h for possible flag values 182 161 183 = Things we want to know/do = 162 184 … … 174 196 relphot -D CATDIR . -D CAMERA gpc1 -averages -update 175 197 }}} 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 179 200 The Relphot command comes from [wiki:IPPstripe82] 180 }}}* Pull out star/galaxy separation flag, restrict sample to stars201 * Pull out star/galaxy separation flag, restrict sample to stars 181 202 * Filter on magnitude errors 182 203 * Dump ra dec mag magerr stargalflag into ASCII file for customized analysis
