mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-21 11:20:04 +02:00
not compiling
This commit is contained in:
parent
373cfad645
commit
ddfb66e999
@ -294,6 +294,47 @@ class Detector {
|
|||||||
*/
|
*/
|
||||||
void setReadNLines(const int value, Positions pos = {});
|
void setReadNLines(const int value, Positions pos = {});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get Receiver TCP port (for client communication with Receiver)
|
||||||
|
* @param pos detector position
|
||||||
|
* @returns receiver port
|
||||||
|
*/
|
||||||
|
//int getControlort(Positions pos = {}) const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set TCP Port of the detector (for client communication with Receiver)
|
||||||
|
* @param value port number
|
||||||
|
* @param pos detector position
|
||||||
|
*/
|
||||||
|
//void setControlPort(int port_number, Positions pos = {});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get Receiver TCP port (for client communication with Receiver)
|
||||||
|
* @param pos detector position
|
||||||
|
* @returns receiver port
|
||||||
|
*/
|
||||||
|
//int getStopPort(Positions pos = {}) const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set TCP Port of the detector (for client communication with Receiver)
|
||||||
|
* @param value port number
|
||||||
|
* @param pos detector position
|
||||||
|
*/
|
||||||
|
//void setStopPort(int port_number, Positions pos = {});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get Receiver TCP port (for client communication with Receiver)
|
||||||
|
* @param pos detector position
|
||||||
|
* @returns receiver port
|
||||||
|
*/
|
||||||
|
//int getReceiverPort(Positions pos = {}) const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set TCP Port of the detector (for client communication with Receiver)
|
||||||
|
* @param value port number
|
||||||
|
* @param pos detector position
|
||||||
|
*/
|
||||||
|
//void setReceiverPort(int port_number, Positions pos = {});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -447,7 +447,7 @@ class slsDetector : public virtual slsDetectorDefs {
|
|||||||
* Set Detector offset in shared memory
|
* Set Detector offset in shared memory
|
||||||
* @param value offset for detector
|
* @param value offset for detector
|
||||||
*/
|
*/
|
||||||
void setDetectorOffsets(slsDetectorDefs::coordinates value);
|
void setDetectorOffset(slsDetectorDefs::coordinates value);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set Detector offset in shared memory in dimension d
|
* Set Detector offset in shared memory in dimension d
|
||||||
|
@ -208,7 +208,7 @@ Result<defs::coordinates> Detector::getDetectorOffsets(Positions pos) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Detector::setDetectorOffsets(defs::coordinates value, Positions pos) {
|
void Detector::setDetectorOffsets(defs::coordinates value, Positions pos) {
|
||||||
return pimpl->Parallel(&slsDetector::setDetectorOffsets, pos, value);
|
return pimpl->Parallel(&slsDetector::setDetectorOffset, pos, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
Result<bool> Detector::getQuad(Positions pos) const {
|
Result<bool> Detector::getQuad(Positions pos) const {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user