Source code for desispec.pipeline.tasks.fibermap

#
# See top-level LICENSE.rst file for Copyright information
#
# -*- coding: utf-8 -*-
"""
desispec.pipeline.tasks.fibermap
================================

"""

from __future__ import absolute_import, division, print_function

from collections import OrderedDict

from ..defs import (task_name_sep, task_state_to_int, task_int_to_state)

from ...util import option_list

from ...io import findfile

from .base import BaseTask


# NOTE: only one class in this file should have a name that starts with "Task".

[docs]class TaskFibermap(BaseTask): """Class containing the properties of one fibermap. Since fibermaps have no dependencies and are not created by the pipeline, this class is just used to specify names, etc. """ def __init__(self): # do that first super(TaskFibermap, self).__init__() # then put int the specifics of this class # _cols must have a state self._type = "fibermap" self._cols = [ "night", "expid", "flavor", "state" ] self._coltypes = [ "integer", "integer", "text", "integer" ] # _name_fields must also be in _cols self._name_fields = ["night","expid"] self._name_formats = ["08d","08d"]
[docs] def _paths(self, name): """See BaseTask.paths. """ props = self.name_split(name) return [ findfile("fibermap", night=props["night"], expid=props["expid"]) ]
[docs] def _deps(self, name, db, inputs): """See BaseTask.deps. """ return dict()
def _run_max_procs(self): # This is a serial task. return 1 def _run_time(self, name, procs, db): # Run time on one proc on machine with scale factor == 1.0 return 1
[docs] def _run_defaults(self): """See BaseTask.run_defaults. """ return dict()
[docs] def _run_cli(self, name, opts, procs, db): """See BaseTask.run_cli. """ return ""
[docs] def _run(self, name, opts, comm, db): """See BaseTask.run. """ return