From adedf0fa4fa4d5f5de0776cfe1550e18196aa4c0 Mon Sep 17 00:00:00 2001 From: x01dc Date: Mon, 5 Jan 2026 15:17:09 +0100 Subject: [PATCH] initial version of fil_trans --- csaxs_bec/bec_ipython_client/plugins/cSAXS/cSAXS.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/csaxs_bec/bec_ipython_client/plugins/cSAXS/cSAXS.py b/csaxs_bec/bec_ipython_client/plugins/cSAXS/cSAXS.py index 0fe94a1..3c8193e 100644 --- a/csaxs_bec/bec_ipython_client/plugins/cSAXS/cSAXS.py +++ b/csaxs_bec/bec_ipython_client/plugins/cSAXS/cSAXS.py @@ -15,19 +15,20 @@ from typeguard import typechecked from csaxs_bec.bec_ipython_client.plugins.cSAXS.smaract import cSAXSInitSmaractStages from csaxs_bec.bec_ipython_client.plugins.cSAXS.smaract import cSAXSSmaract from csaxs_bec.bec_ipython_client.plugins.omny.omny_general_tools import OMNYTools - +from csaxs_bec.bec_ipython_client.plugins.cSAXS.filter_transmission import cSAXSFilterTransmission class cSAXSError(Exception): pass class cSAXS( cSAXSInitSmaractStages, cSAXSSmaract, + cSAXSFilterTransmission, ): def __init__(self, client): - super().__init__(client) self.client = client self.device_manager = client.device_manager self.OMNYTools = OMNYTools(self.client) + super().__init__(client=client) # this is the csaxs master file that imports all routines from csaxs