File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 33
33
__contact__ = "Jerome.Kieffer@ESRF.eu"
34
34
__license__ = "MIT"
35
35
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
36
- __date__ = "27/09/2024 "
36
+ __date__ = "26/05/2025 "
37
37
__satus__ = "Production"
38
38
39
39
import sys
@@ -72,7 +72,7 @@ def main(args=None):
72
72
window .show ()
73
73
sys .exit (app .exec_ ())
74
74
else :
75
- dt .configure_worker (config [ "ai" ] )
75
+ dt .configure_worker (config . ai )
76
76
dt .makeHDF5 ()
77
77
dt .process ()
78
78
dt .show_stats ()
Original file line number Diff line number Diff line change 31
31
__contact__ = "Jerome.Kieffer@ESRF.eu"
32
32
__license__ = "MIT"
33
33
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
34
- __date__ = "14 /05/2025"
34
+ __date__ = "26 /05/2025"
35
35
__status__ = "development"
36
36
__docformat__ = 'restructuredtext'
37
37
@@ -478,3 +478,21 @@ def slow_motor_range(self, value):
478
478
if self .slow_motor is None :
479
479
self .slow_motor = MotorRange ()
480
480
self .slow_motor .start , self .slow_motor .stop = value
481
+
482
+ @property
483
+ def slow_motor_points (self ):
484
+ return None if self .slow_motor is None else self .slow_motor .points
485
+ @slow_motor_points .setter
486
+ def slow_motor_points (self , value ):
487
+ if self .slow_motor is None :
488
+ self .slow_motor = MotorRange ()
489
+ self .slow_motor .points = value
490
+
491
+ @property
492
+ def fast_motor_points (self ):
493
+ return None if self .fast_motor is None else self .fast_motor .points
494
+ @fast_motor_points .setter
495
+ def fast_motor_points (self , value ):
496
+ if self .fast_motor is None :
497
+ self .fast_motor = MotorRange ()
498
+ self .fast_motor .points = value
You can’t perform that action at this time.
0 commit comments