mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-21 17:18:00 +02:00
advanced down
This commit is contained in:
@ -410,6 +410,12 @@ class multiSlsDetector : public virtual slsDetectorDefs {
|
||||
*/
|
||||
int setOnline(int value = GET_ONLINE_FLAG, int detPos = -1);
|
||||
|
||||
/**
|
||||
* Get detector online status
|
||||
* @param detPos -1 for all detectors in list or specific detector position
|
||||
*/
|
||||
int getOnlineFlag(int detPos = -1);
|
||||
|
||||
/**
|
||||
* Checks if each of the detectors are online/offline
|
||||
* @param detPos -1 for all detectors in list or specific detector position
|
||||
@ -444,9 +450,10 @@ class multiSlsDetector : public virtual slsDetectorDefs {
|
||||
|
||||
/**
|
||||
* Get Receiver port
|
||||
* @param detPos -1 for all detectors in list or specific detector position
|
||||
* @returns vector of receiver port
|
||||
*/
|
||||
std::vector<int> getReceiverPort() const;
|
||||
int getReceiverPort(int detPos = -1) const;
|
||||
|
||||
/**
|
||||
* Lock server for this client IP
|
||||
@ -1613,6 +1620,12 @@ class multiSlsDetector : public virtual slsDetectorDefs {
|
||||
*/
|
||||
int setReceiverOnline(int value = GET_ONLINE_FLAG, int detPos = -1);
|
||||
|
||||
/**
|
||||
* Get receiver online status
|
||||
* @param detPos -1 for all detectors in list or specific detector position
|
||||
*/
|
||||
int getReceiverOnlineFlag(int detPos = -1);
|
||||
|
||||
/**
|
||||
* Checks if the receiver is really online
|
||||
* @param detPos -1 for all detectors in list or specific detector position
|
||||
|
@ -1519,7 +1519,7 @@ class slsDetector : public virtual slsDetectorDefs{
|
||||
*/
|
||||
int setReceiverOnline(int value = GET_ONLINE_FLAG);
|
||||
|
||||
int getReceiverOnline() const;
|
||||
int getReceiverOnlineFlag() const;
|
||||
|
||||
/**
|
||||
* Checks if the receiver is really online
|
||||
|
Reference in New Issue
Block a user