From b4e602c6180aa13cc19feae5355ca388f28c4070 Mon Sep 17 00:00:00 2001 From: Ananthakrishnan RAVINDRAN <132569562+Ananthu-Ravindran@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:49:58 +0200 Subject: [PATCH] Detector Operations Log (#133) --- xedocs/schemas/operations_reports/__init__.py | 1 + .../schemas/operations_reports/detector_operations.py | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 xedocs/schemas/operations_reports/detector_operations.py diff --git a/xedocs/schemas/operations_reports/__init__.py b/xedocs/schemas/operations_reports/__init__.py index bbdfa07..855e7ae 100644 --- a/xedocs/schemas/operations_reports/__init__.py +++ b/xedocs/schemas/operations_reports/__init__.py @@ -2,3 +2,4 @@ from .anode_ramp import AnodeRampReport from .anode_washing import AnodeWashingReport from .abnormal_rates import AbnormalDAQRate +from .detector_operations import DetectorOperations diff --git a/xedocs/schemas/operations_reports/detector_operations.py b/xedocs/schemas/operations_reports/detector_operations.py new file mode 100644 index 0000000..c7ce23b --- /dev/null +++ b/xedocs/schemas/operations_reports/detector_operations.py @@ -0,0 +1,11 @@ +from typing import Literal +from .base_report import BaseOperationsReport + +class DetectorOperations(BaseOperationsReport): + """ Detector Operations Reports """ + + _ALIAS="detector_operations" + + system:Literal["CRY", "PUR", "LXePUR", "RSX", "RSX_2", "DST", "RAD", "DAQ"] + subject: str + \ No newline at end of file