Skip to content

Commit

Permalink
Merge ff5625e into 87568b1
Browse files Browse the repository at this point in the history
  • Loading branch information
geordie666 committed Nov 2, 2019
2 parents 87568b1 + ff5625e commit 2966f98
Show file tree
Hide file tree
Showing 7 changed files with 1,087 additions and 204 deletions.
5 changes: 3 additions & 2 deletions bin/select_cmx_targets
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ ap.add_argument("--cmxdir", type=str,
default=None)
ap.add_argument("--noresolve", action='store_true',
help="Do NOT resolve into northern targets in northern regions and southern targets in southern regions")

ap.add_argument("--nobackup", action='store_true',
help="Do NOT run the Gaia-only backup targets (which require the GAIA_DIR environment variable to be set).")

ns = ap.parse_args()

Expand Down Expand Up @@ -109,7 +110,7 @@ if pixlist is not None:
pixlist = [int(pix) for pix in pixlist.split(',')]

targets = select_targets(infiles, numproc=ns.numproc,
resolvetargs=not(ns.noresolve),
resolvetargs=not(ns.noresolve), backup=not(ns.nobackup),
nside=ns.nside, pixlist=pixlist, extra=extra,
bundlefiles=ns.bundlefiles, cmxdir=ns.cmxdir)

Expand Down
3 changes: 3 additions & 0 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ desitarget Change Log
0.33.2 (2019-10-17)
-------------------

* Update SV0 (BGS, ELG, LRG, QSO) classes for commissioning [`PR #560`_].
* Also add new ``STD_DITHER`` target class for commissioning.
* Add FIBERFLUX_IVAR_G/R/Z to mock skies when merging [`PR #556`_].
* Fix minor bugs in `select_mock_targets` [`PR #555`_].
* Update the ELG selections for SV [`PR #553`_]. Includes:
Expand All @@ -37,6 +39,7 @@ desitarget Change Log
.. _`PR #553`: https://github.com/desihub/desitarget/pull/553
.. _`PR #555`: https://github.com/desihub/desitarget/pull/555
.. _`PR #556`: https://github.com/desihub/desitarget/pull/556
.. _`PR #560`: https://github.com/desihub/desitarget/pull/560

0.33.1 (2019-10-13)
-------------------
Expand Down

0 comments on commit 2966f98

Please sign in to comment.