Changeset 25085
- Timestamp:
- Aug 16, 2009, 7:15:43 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/sj_branches/sj_ippTests_branch_20080929/ippTests/compIPPphoto.py
r24069 r25085 64 64 # Note 253" - somewhere on the web as sun253.html 65 65 # 66 67 66 # 67 # 68 68 # XXX Todo: labels! group by runs? different colours for different 69 69 # bands; include seeing? plot things against seeing? 70 70 # 71 71 # Also: the plotcol lists need to be grouped into things that are to 72 72 # appear on the same page. For the beginning, that's the entire list 73 73 # (and that's probably quite enough anyway). 74 74 # 75 75 # Looking at the extended flag in PS1 vs. SDSS is done via d_pointsource. 76 76 # 77 # For running in earnest: 77 78 # os.chdir('/disk1/jester/IPP/data/SDSS/stripe82/coadd/compare') 78 79 # execfile('/disk1/jester/usrdevel/ipp_sj/ippTests/compIPPphoto.py') 79 80 # h1,h2=compIPPphoto('test.fits','new',workdir='/IPP/data/SDSS/stripe82/coadd/compare',runlist=[1056,1755]) 80 81 # 82 # For testing on laptop: 83 # os.chdir('/Users/jester/science/sdss/coadd/Hawaii/compare_tsObj') 84 # execfile('/Users/jester/usrdevel/ipp_ippTests_branch/ippTests/compIPPphoto.py') 85 # h1,h2=compIPPphoto('test.fits','new',workdir='/Users/jester/science/sdss/coadd/Hawaii/compare_tsObj',runlist=[1056,1755]) 86 # 81 87 # Here follow two specially formatted lists governing which plots are 82 88 # made. The first is for plots being done on a field-by-field basis, … … 276 282 """Make diagnostic plots for a single table, based on values in 277 283 values_hash""" 278 # XXX Todo: window commands instead of (or in addition to?) psnup279 # for putting plots on same paper280 284 from subprocess import call 281 285 from numpy import concatenate … … 633 637 goodcondition &= (col2 != val) 634 638 col1 = col1[goodcondition] 635 col2_good = col2[goodcondition] 639 # For some reason, the following line used to be 640 # col2_good = col2[goodcondition] 641 # which looks like an error 642 col2 = col2[goodcondition] 636 643 return col1,col2 637 644 #
Note:
See TracChangeset
for help on using the changeset viewer.
