mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-07-13 19:31:49 +02:00
redundant getRxROI in Detector class for multi level and module level
This commit is contained in:
@ -989,12 +989,9 @@ class Detector {
|
||||
* every minute. Useful in 10G mode. */
|
||||
void setRxArping(bool value, Positions pos = {});
|
||||
|
||||
/** Returns multi level ROIs */
|
||||
std::vector<defs::ROI> getRxROI() const;
|
||||
|
||||
/** Returns port level ROIs. Max 2 ports and hence max 2 elements per
|
||||
* readout */
|
||||
std::vector<defs::ROI> getRxROI(int module_id) const;
|
||||
/** If module_id is -1, returns multi level ROIs. Else it returns port
|
||||
* level ROIs. Max 2 ports and hence max 2 elements per readout */
|
||||
std::vector<defs::ROI> getRxROI(int module_id = -1) const;
|
||||
|
||||
/** only at multi module level without gap pixels. If more than 1 ROI per
|
||||
* UDP port, it will throw. Setting number of udp interfaces will clear the
|
||||
|
@ -1383,8 +1383,6 @@ void Detector::setRxArping(bool value, Positions pos) {
|
||||
pimpl->Parallel(&Module::setRxArping, pos, value);
|
||||
}
|
||||
|
||||
std::vector<defs::ROI> Detector::getRxROI() const { return pimpl->getRxROI(); }
|
||||
|
||||
std::vector<defs::ROI> Detector::getRxROI(int module_id) const {
|
||||
return pimpl->getRxROI(module_id);
|
||||
}
|
||||
|
Reference in New Issue
Block a user