mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-11 04:17:15 +02:00
binaries in, merge fix
This commit is contained in:
@ -7,7 +7,7 @@ timingMode = slsDetectorDefs.timingMode
|
||||
speedLevel = slsDetectorDefs.speedLevel
|
||||
dacIndex = slsDetectorDefs.dacIndex
|
||||
detectorType = slsDetectorDefs.detectorType
|
||||
ethernetInterface = slsDetectorDefs.ethernetInterface
|
||||
streamingInterface = slsDetectorDefs.streamingInterface
|
||||
|
||||
defs = slsDetectorDefs
|
||||
|
||||
@ -2433,7 +2433,7 @@ class Detector(CppDetectorApi):
|
||||
Note
|
||||
----
|
||||
Default: both off
|
||||
Options: NONE, I3GBE, 10GBE (debugging)
|
||||
Options: NONE, LOW_LATENCY_LINK, 10GBE (debugging)
|
||||
Debugging interface also enables second interface in receiver (separate file), which also restarts zmq streaming if enabled.
|
||||
"""
|
||||
return self.getVetoStream()
|
||||
@ -2449,10 +2449,10 @@ class Detector(CppDetectorApi):
|
||||
"""[Gotthard2] Algorithm used for veto
|
||||
Example
|
||||
----------
|
||||
>>> d.vetoalg = defs.DEFAULT_ALGORITHM, defs.I10GBE
|
||||
>>> d.vetoalg = defs.DEFAULT_ALGORITHM, defs.ETHERNET_10GB
|
||||
"""
|
||||
result = {}
|
||||
interface = [ethernetInterface.I3GBE, ethernetInterface.I10GBE]
|
||||
interface = [streamingInterface.LOW_LATENCY_LINK, streamingInterface.ETHERNET_10GB]
|
||||
for eth in interface:
|
||||
result[eth] = element_if_equal(self.getVetoAlgorithm(eth))
|
||||
return result
|
||||
|
Reference in New Issue
Block a user