mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-12 12:57:13 +02:00
merge conflict
This commit is contained in:
@ -2229,7 +2229,7 @@ class Detector(CppDetectorApi):
|
||||
@element
|
||||
def veto(self):
|
||||
"""
|
||||
[Gotthard2] Enable or disable veto data streaming from detector.
|
||||
[Gotthard2] Enable or disable veto data from chip.
|
||||
Note
|
||||
----
|
||||
Default is 0.
|
||||
@ -2349,6 +2349,18 @@ class Detector(CppDetectorApi):
|
||||
ut.set_using_dict(self.setVetoReference, *args)
|
||||
|
||||
|
||||
@property
|
||||
@element
|
||||
def vetostream(self):
|
||||
return self.getVetoStream()
|
||||
|
||||
@vetostream.setter
|
||||
def vetostream(self, args):
|
||||
if not isinstance(args, tuple):
|
||||
args = (args,)
|
||||
ut.set_using_dict(self.setVetoStream, *args)
|
||||
|
||||
|
||||
"""
|
||||
Mythen3 specific
|
||||
"""
|
||||
|
Reference in New Issue
Block a user