pymodaq 4.3.5__py3-none-any.whl → 4.3.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pymodaq might be problematic. Click here for more details.
- pymodaq/control_modules/move_utility_classes.py +11 -2
- pymodaq/control_modules/viewer_utility_classes.py +3 -1
- pymodaq/resources/VERSION +1 -1
- {pymodaq-4.3.5.dist-info → pymodaq-4.3.7.dist-info}/METADATA +1 -1
- {pymodaq-4.3.5.dist-info → pymodaq-4.3.7.dist-info}/RECORD +8 -8
- {pymodaq-4.3.5.dist-info → pymodaq-4.3.7.dist-info}/WHEEL +0 -0
- {pymodaq-4.3.5.dist-info → pymodaq-4.3.7.dist-info}/entry_points.txt +0 -0
- {pymodaq-4.3.5.dist-info → pymodaq-4.3.7.dist-info}/licenses/LICENSE +0 -0
|
@@ -236,6 +236,12 @@ class DAQ_Move_base(QObject):
|
|
|
236
236
|
self._title = parent.title
|
|
237
237
|
else:
|
|
238
238
|
self._title = "myactuator"
|
|
239
|
+
|
|
240
|
+
if isinstance(self._controller_units, list):
|
|
241
|
+
# for backcompatibility
|
|
242
|
+
# in case an actuator has multiple units properly handled in future version of pymodaq
|
|
243
|
+
self._controller_units = self._controller_units[self.axis_names.index(self.axis_name)]
|
|
244
|
+
|
|
239
245
|
self._current_value = DataActuator(self._title,
|
|
240
246
|
data=[np.zeros(self.data_shape, dtype=float)],
|
|
241
247
|
units=self.controller_units)
|
|
@@ -294,7 +300,7 @@ class DAQ_Move_base(QObject):
|
|
|
294
300
|
""" To be subclassed, in order to init specific attributes needed by the real implementation"""
|
|
295
301
|
self.controller = None
|
|
296
302
|
|
|
297
|
-
def ini_stage_init(self, old_controller=None, new_controller=None):
|
|
303
|
+
def ini_stage_init(self, old_controller=None, new_controller=None, slave_controller=None):
|
|
298
304
|
"""Manage the Master/Slave controller issue
|
|
299
305
|
|
|
300
306
|
First initialize the status dictionary
|
|
@@ -312,8 +318,11 @@ class DAQ_Move_base(QObject):
|
|
|
312
318
|
The particular object that allow the communication with the hardware, in general a python wrapper around the
|
|
313
319
|
hardware library. In case of Master it is the new instance of your plugin controller
|
|
314
320
|
"""
|
|
321
|
+
if old_controller is None and slave_controller is not None:
|
|
322
|
+
old_controller = slave_controller
|
|
323
|
+
|
|
315
324
|
self.status.update(edict(info="", controller=None, initialized=False))
|
|
316
|
-
if self.settings['multiaxes', 'ismultiaxes'] and self.
|
|
325
|
+
if self.settings['multiaxes', 'ismultiaxes'] and not self.is_master:
|
|
317
326
|
if old_controller is None:
|
|
318
327
|
raise Exception('no controller has been defined externally while this axe is a slave one')
|
|
319
328
|
else:
|
|
@@ -227,7 +227,7 @@ class DAQ_Viewer_base(QObject):
|
|
|
227
227
|
"""
|
|
228
228
|
pass
|
|
229
229
|
|
|
230
|
-
def ini_detector_init(self, old_controller=None, new_controller=None):
|
|
230
|
+
def ini_detector_init(self, old_controller=None, new_controller=None, slave_controller=None):
|
|
231
231
|
"""Manage the Master/Slave controller issue
|
|
232
232
|
|
|
233
233
|
First initialize the status dictionary
|
|
@@ -245,6 +245,8 @@ class DAQ_Viewer_base(QObject):
|
|
|
245
245
|
The particular object that allow the communication with the hardware, in general a python wrapper around the
|
|
246
246
|
hardware library. In case of Master it is the new instance of your plugin controller
|
|
247
247
|
"""
|
|
248
|
+
if old_controller is None and slave_controller is not None:
|
|
249
|
+
old_controller = slave_controller
|
|
248
250
|
self.status.update(edict(info="", controller=None, initialized=False))
|
|
249
251
|
if self.settings['controller_status'] == "Slave":
|
|
250
252
|
if old_controller is None:
|
pymodaq/resources/VERSION
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
version = '4.3.
|
|
1
|
+
version = '4.3.7'
|
|
2
2
|
|
|
@@ -8,9 +8,9 @@ pymodaq/control_modules/daq_move_ui.py,sha256=euA8_utFfiscd9ahZxRTqqTiCSrNB4CKCL
|
|
|
8
8
|
pymodaq/control_modules/daq_viewer.py,sha256=5CYmdWHGE7sQApeMfdWNV3zbPyoxxYtzFlQ1PaEw4fI,57883
|
|
9
9
|
pymodaq/control_modules/daq_viewer_ui.py,sha256=FWP3jdIOR9vTgYqNaaodteGZ3dwgQ1GdWKrOpOAuSrs,15693
|
|
10
10
|
pymodaq/control_modules/mocks.py,sha256=hh_xSWp9g1UV3NAQVD9Ft9tNWfTsSvKU0OU0trgzP2w,1956
|
|
11
|
-
pymodaq/control_modules/move_utility_classes.py,sha256=
|
|
11
|
+
pymodaq/control_modules/move_utility_classes.py,sha256=g_Q8eOPetwFuVbQfWTk4gX5XMsJoTvf_a7vdOrR5DoU,35731
|
|
12
12
|
pymodaq/control_modules/utils.py,sha256=5YdSwq_lFJm7IalYWe_Hn1U4LUoUmo1gedvV9UguU0Y,20016
|
|
13
|
-
pymodaq/control_modules/viewer_utility_classes.py,sha256=
|
|
13
|
+
pymodaq/control_modules/viewer_utility_classes.py,sha256=OHxwue1t3z2AXyeqNjnwPT2pMc8yXhnqyiWc9IdCI2c,26841
|
|
14
14
|
pymodaq/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
pymodaq/examples/custom_app.py,sha256=2wQR0hlPWjZrWK0abNF6ASv8iQyJqRn2CKnBa_nAgN4,10452
|
|
16
16
|
pymodaq/examples/custom_viewer.py,sha256=nUj5n6l7DSyh-qaXboNBfXKa9mAiXrHSiOcuFL1ayRE,4814
|
|
@@ -58,7 +58,7 @@ pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.py,sha256=1u7hWDaiwsZ
|
|
|
58
58
|
pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.ui,sha256=PyzbCWPMkh5oIYYteZczXyWMeHKW9EJmM1QlzXhnyTk,7037
|
|
59
59
|
pymodaq/post_treatment/daq_measurement/daq_measurement_main.py,sha256=CAKwcWMOD86aXB8mbdxOK7e8nZRos5d59FzDtqK1QoY,17093
|
|
60
60
|
pymodaq/post_treatment/daq_measurement/process_from_QtDesigner_DAQ_Measurement_GUI.bat,sha256=e1tu2A67MS9fk3jhriF6saQgRxWIucIvNW92iWXFP6E,164
|
|
61
|
-
pymodaq/resources/VERSION,sha256=
|
|
61
|
+
pymodaq/resources/VERSION,sha256=fP37ke9RfdHBjYyyxWc1kXW6-Gg-gr80uqzn0qTdrE8,19
|
|
62
62
|
pymodaq/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
63
|
pymodaq/resources/config_template.toml,sha256=d3pofgIK5FxaRMELAI1qEsRcMD3GlYd87zZjDj9G9m0,3210
|
|
64
64
|
pymodaq/resources/preset_default.xml,sha256=Dt8iWLwPPOPtcG00JCVP-mh-G7KC6B0YN8hd8RQdnNI,27256
|
|
@@ -438,8 +438,8 @@ pymodaq/utils/tcp_ip/__init__.py,sha256=1e_EK0AgvdoLAD_CSGGEaITZdy6OWCO7ih9IAIp7
|
|
|
438
438
|
pymodaq/utils/tcp_ip/mysocket.py,sha256=StAWj8dzHeMnbLj68Sel81uWFy-YkKVNRnVf7gXrESI,3452
|
|
439
439
|
pymodaq/utils/tcp_ip/serializer.py,sha256=oTQ24JNln_vRX4YADitTYiJplwFIdsta1ZDp6TOGMCA,27562
|
|
440
440
|
pymodaq/utils/tcp_ip/tcp_server_client.py,sha256=xIMTNgVW_rKK0yTi4FDNFLf85-Akb27Jz2LdrvOrP68,30660
|
|
441
|
-
pymodaq-4.3.
|
|
442
|
-
pymodaq-4.3.
|
|
443
|
-
pymodaq-4.3.
|
|
444
|
-
pymodaq-4.3.
|
|
445
|
-
pymodaq-4.3.
|
|
441
|
+
pymodaq-4.3.7.dist-info/METADATA,sha256=jrLMgm6DJyOZdZaK-32Cxe4h_-ikdS4vDVKW6e8ozRc,7657
|
|
442
|
+
pymodaq-4.3.7.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
443
|
+
pymodaq-4.3.7.dist-info/entry_points.txt,sha256=RAzdYNjvUT28I2eiCKki_g2NzXq0woWxhev6lwzwRv8,348
|
|
444
|
+
pymodaq-4.3.7.dist-info/licenses/LICENSE,sha256=VKOejxexXAe3XwfhAhcFGqeXQ12irxVHdeAojZwFEI8,1108
|
|
445
|
+
pymodaq-4.3.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|