From d37da984f5c02b764d724f07e5d529c9174a3225 Mon Sep 17 00:00:00 2001 From: Jaime Forero-Romero Date: Thu, 28 Jul 2016 16:41:22 -0700 Subject: [PATCH] changes default in make_mtl to trim=False --- py/desitarget/mtl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/py/desitarget/mtl.py b/py/desitarget/mtl.py index 9c2323dc4..222b45069 100644 --- a/py/desitarget/mtl.py +++ b/py/desitarget/mtl.py @@ -4,7 +4,7 @@ from .targetmask import desi_mask, obsmask from .targets import calc_numobs, calc_priority -def make_mtl(targets, zcat=None, trim=True): +def make_mtl(targets, zcat=None, trim=False): """Adds NUMOBS, PRIORITY, and GRAYLAYER columns to a targets table. Parameters @@ -15,8 +15,8 @@ def make_mtl(targets, zcat=None, trim=True): Redshift catalog table with columns ``TARGETID``, ``NUMOBS``, ``Z``, ``ZWARN``. trim : :class:`bool`, optional - If ``True`` (default), don't include targets that don't need - any more observations. If ``False``, include every input target. + If ``True``, don't include targets that don't need + any more observations. If ``False`` (default), include every input target. Returns -------