From 68ae310ef8c32fcb454690c41f75db261b231b5a Mon Sep 17 00:00:00 2001 From: Philipp Schmidt <philipp.schmidt@xfel.eu> Date: Wed, 30 Jun 2021 09:59:34 +0200 Subject: [PATCH] Add AGIPD integration time condition to cal_tools tests --- tests/test_cal_tools.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_cal_tools.py b/tests/test_cal_tools.py index f17a29019..a2e14e866 100644 --- a/tests/test_cal_tools.py +++ b/tests/test_cal_tools.py @@ -21,6 +21,7 @@ from cal_tools.tools import ( ACQ_RATE = 1.1 BIAS_VOLTAGE = 300 GAIN_SETTING = 0 +INTEGRATION_TIME = 12 MEM_CELLS = 352 PHOTON_ENERGY = 9.2 @@ -357,6 +358,7 @@ def test_initialize_from_db(): photon_energy=PHOTON_ENERGY, gain_setting=GAIN_SETTING, acquisition_rate=ACQ_RATE, + integration_time=INTEGRATION_TIME, module_idx=0, only_dark=False, ) @@ -375,6 +377,7 @@ def test_initialize_from_db(): creation_time=creation_time, memory_cells=MEM_CELLS, bias_voltage=BIAS_VOLTAGE, photon_energy=PHOTON_ENERGY, gain_setting=GAIN_SETTING, + integration_time=INTEGRATION_TIME, acquisition_rate=ACQ_RATE, module_idx=0, only_dark=False, ) -- GitLab