From 4b7035338f9c5e990f1c96c6432f344b32d4a9ac Mon Sep 17 00:00:00 2001 From: David Hammer <dhammer@mailbox.org> Date: Thu, 25 Feb 2021 16:18:28 +0100 Subject: [PATCH] Adding enum encoding AGIPD gain mode --- cal_tools/cal_tools/enums.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cal_tools/cal_tools/enums.py b/cal_tools/cal_tools/enums.py index a516dee2f..27ce86511 100644 --- a/cal_tools/cal_tools/enums.py +++ b/cal_tools/cal_tools/enums.py @@ -49,3 +49,11 @@ class SnowResolution(Enum): NONE = "none" INTERPOLATE = "interpolate" + +class AgipdGainMode(Enum): + """Encoding added to distinguish between adaptive and fixed gain""" + + ADAPTIVE_GAIN = 0 # adaptive is default (if gain mode missing in slow data) + FIXED_HIGH_GAIN = 1 # non-zero means fixed gain + FIXED_MEDIUM_GAIN = 2 + FIXED_LOW_GAIN = 3 -- GitLab