Skip to content
Snippets Groups Projects

[AGIPD][TESTs]test_agipdlib AGIPDCtrl and get_bias_voltage for AGIPD1M and AGIPD500K

Merged Karim Ahmed requested to merge test/test_agipdlib into master
Compare and
4 files
+ 238
3
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 7
2
@@ -28,6 +28,7 @@ from cal_tools.h5_copy_except import h5_copy_except_paths
from cal_tools.tools import get_from_db
class AgipdCtrl:
def __init__(
self,
@@ -81,6 +82,9 @@ class AgipdCtrl:
# about bucketing the rate for managing meta-data.
return round(float(self.run_dc[rep_rate_src].as_single_value()), 1)
def _get_acq_rate_instr(self) -> Optional[float]:
"""Get acquisition (repetition rate) from INSTRUMENT source."""
def _get_acq_rate_instr(self) -> Optional[float]:
"""Get acquisition (repetition rate) from INSTRUMENT source."""
@@ -135,7 +139,7 @@ class AgipdCtrl:
Returns:
int: gain_setting value.
"""
setupr = self.run_dc[self.ctrl_src, "setupr.value"].as_single_value()
setupr = self.run_dc[self.ctrl_src, "setupr"].as_single_value()
pattern_type_idx = self.run_dc[
self.ctrl_src, "patternTypeIndex"].as_single_value()
@@ -218,7 +222,7 @@ class AgipdCtrl:
:param karabo_id_control: The karabo deviceId for the CONTROL device.
:param module: defaults to module 0
:return: voltage, a uint16
:return: bias voltage
"""
# TODO: Add a breaking fix by passing the source and key through
# get_bias_voltage arguments.
@@ -257,6 +261,7 @@ class AgipdCtrl:
raise ValueError(error)
return default_voltage
def get_integration_time(self) -> int:
"""Read integration time from the FPGA device.
Loading