Source code for mxcubecore.HardwareObjects.ESRF.Transmission
# encoding: utf-8
#
# Project name: MXCuBE
# https://github.com/mxcube
#
# This file is part of MXCuBE software.
#
# MXCuBE is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# MXCuBE is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU General Lesser Public License
# along with MXCuBE. If not, see <http://www.gnu.org/licenses/>.
"""Transmission with bliss"""
from mxcubecore.HardwareObjects.abstract.AbstractTransmission import (
AbstractTransmission,
)
__copyright__ = """ Copyright © 2020 by the MXCuBE collaboration """
__license__ = "LGPLv3+"
[docs]class Transmission(AbstractTransmission):
"""Transmission class"""
unit = "%"
def __init__(self, name):
super(Transmission, self).__init__(name)
self._transmission = None
[docs] def init(self):
"""Initialise from the config"""
super(Transmission, self).init()
module_name = self.get_property("module_name")
ctrl = self.get_object_by_role("controller")
self._transmission = getattr(ctrl, module_name)
def _set_value(self, value):
"""Set the transmission.
Args:
value(float): Transmission [%]
"""
self.update_state(self.STATES.BUSY)
self._transmission.set(value)
self.update_state(self.STATES.READY)
[docs] def get_value(self):
"""Get the real transmission value
Returns:
(float): Transmission [%]
"""
return self._transmission.get()