mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-07 10:30:41 +02:00
adding fliprows to python (#625)
This commit is contained in:
parent
ac64afe747
commit
a6aaa2c3c6
@ -1565,6 +1565,20 @@ class Detector(CppDetectorApi):
|
|||||||
def trimval(self, value):
|
def trimval(self, value):
|
||||||
ut.set_using_dict(self.setAllTrimbits, value)
|
ut.set_using_dict(self.setAllTrimbits, value)
|
||||||
|
|
||||||
|
@property
|
||||||
|
@element
|
||||||
|
def fliprows(self):
|
||||||
|
"""
|
||||||
|
[Eiger] flips rows paramater sent to slsreceiver to stream as json parameter to flip rows in gui. \n
|
||||||
|
[Jungfrau] flips rows in the detector itself. For bottom module and number of interfaces must be set to 2. slsReceiver and slsDetectorGui does not handle.
|
||||||
|
"""
|
||||||
|
return self.getFlipRows()
|
||||||
|
|
||||||
|
@fliprows.setter
|
||||||
|
def fliprows(self, value):
|
||||||
|
ut.set_using_dict(self.setFlipRows, value)
|
||||||
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@element
|
@element
|
||||||
def master(self):
|
def master(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user