AAREDB: auto crystal centering failed event submission added

This commit is contained in:
2025-09-11 14:54:20 +02:00
parent 206bfcf2db
commit 8950435daa
+11
View File
@@ -133,6 +133,17 @@ class AareWrapper:
except Exception as e:
print(e)
def axc_failed(self, s: Optional[SampleShortInfo]):
if s is None:
return
try:
self.__sample_api.create_sample_event(
sample_id=s.db_id,
sample_event_create=SampleEventCreate(event_type="AXCFailed"),
)
except Exception as e:
print(e)
def alc_failed(self, s: Optional[SampleShortInfo]):
if s is None:
return