2. Set row col (#779)

* set row and column
This commit is contained in:
2023-07-18 15:51:22 +02:00
committed by GitHub
parent 7394833710
commit 71489b7106
21 changed files with 354 additions and 10 deletions

View File

@ -238,6 +238,16 @@ class Detector {
* channel list. */
void setBadChannels(const std::vector<std::vector<int>> list);
Result<int> getRow(Positions pos = {}) const;
/** Set it in udp header. Gui uses it to rearrange for complete image */
void setRow(const int value, Positions pos = {});
Result<int> getColumn(Positions pos = {}) const;
/** Set it in udp header. Gui uses it to rearrange for complete image */
void setColumn(const int value, Positions pos = {});
Result<bool> isVirtualDetectorServer(Positions pos = {}) const;
///@}