Source code for desispec.pipeline.tasks.qadata

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

"""

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, task_classes)

from desiutil.log import get_logger

import sys,re,os,copy

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

[docs]class TaskQAData(BaseTask): """Class containing the properties of a sky fit task. """ def __init__(self): super(TaskQAData, self).__init__() # then put int the specifics of this class # _cols must have a state self._type = "qadata" self._cols = [ "night", "band", "spec", "expid", "state" ] self._coltypes = [ "integer", "text", "integer", "integer", "integer" ] # _name_fields must also be in _cols self._name_fields = ["night","band","spec","expid"] self._name_formats = ["08d","s","d","08d"]
[docs] def _paths(self, name): """See BaseTask.paths. """ props = self.name_split(name) camera = "{}{}".format(props["band"], props["spec"]) return [ findfile("qa_data", night=props["night"], expid=props["expid"], camera=camera) ] # Add qaprod_dir here to have QA land somewhere else?
[docs] def _deps(self, name, db, inputs): """See BaseTask.deps. """ from .base import task_classes props = self.name_split(name) deptasks = { "cframe" : task_classes["cframe"].name_join(props), } return deptasks
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 2.0
[docs] def _run_defaults(self): """See BaseTask.run_defaults. """ opts = {} return opts
[docs] def _option_list(self, name, opts): """Build the full list of options. This includes appending the filenames and incorporating runtime options. """ from .base import task_classes, task_type props = self.name_split(name) options = {} options["frame_file"] = task_classes["extract"].paths( task_classes["extract"].name_join(props)) options.update(opts) return option_list(options)
[docs] def _run_cli(self, name, opts, procs, db): """See BaseTask.run_cli. """ entry = "desi_qa_frame" optlist = self._option_list(name, opts) com = "{} {}".format(entry, " ".join(optlist)) return com
[docs] def _run(self, name, opts, comm, db): """See BaseTask.run. """ from ...scripts import qa_frame optlist = self._option_list(name, opts) args = qa_frame.parse(optlist) qa_frame.main(args) return
[docs] def postprocessing(self, db, name, cur): """For successful runs, postprocessing on DB""" # run getready on all fierflatnight with same night,band,spec pass