|
27 | 27 | #include "ReadoutCard/ParameterTypes/LoopbackMode.h" |
28 | 28 | #include "ReadoutCard/ParameterTypes/PciAddress.h" |
29 | 29 | #include "ReadoutCard/ParameterTypes/PciSequenceNumber.h" |
30 | | -#include "ReadoutCard/ParameterTypes/ReadoutMode.h" |
31 | 30 | #include "ReadoutCard/ParameterTypes/Hex.h" |
32 | 31 |
|
33 | 32 | // CRU Specific |
@@ -90,9 +89,6 @@ class Parameters |
90 | 89 | /// Type for the generator data size parameter |
91 | 90 | using GeneratorRandomSizeEnabledType = bool; |
92 | 91 |
|
93 | | - /// Type for the readout mode parameter |
94 | | - using ReadoutModeType = ReadoutMode::type; |
95 | | - |
96 | 92 | /// Type for the link mask parameter |
97 | 93 | using LinkMaskType = std::set<uint32_t>; |
98 | 94 |
|
@@ -276,14 +272,6 @@ class Parameters |
276 | 272 | /// \return Reference to this object for chaining calls |
277 | 273 | auto setBufferParameters(BufferParametersType value) -> Parameters&; |
278 | 274 |
|
279 | | - /// Sets the ReadoutMode parameter |
280 | | - /// |
281 | | - /// This is a work-in-progress feature. Currently, only the C-RORC is supported in continuous readout mode. |
282 | | - /// |
283 | | - /// \param value The value to set |
284 | | - /// \return Reference to this object for chaining calls |
285 | | - auto setReadoutMode(ReadoutModeType value) -> Parameters&; |
286 | | - |
287 | 275 | /// Sets the LinkMask parameter |
288 | 276 | /// |
289 | 277 | /// The BAR channel may transfer data from multiple links. |
@@ -431,10 +419,6 @@ class Parameters |
431 | 419 | /// \return The value wrapped in an optional if it is present, or an empty optional if it was not |
432 | 420 | auto getBufferParameters() const -> boost::optional<BufferParametersType>; |
433 | 421 |
|
434 | | - /// Gets the ReadoutMode parameter |
435 | | - /// \return The value wrapped in an optional if it is present, or an empty optional if it was not |
436 | | - auto getReadoutMode() const -> boost::optional<ReadoutModeType>; |
437 | | - |
438 | 422 | /// Gets the LinkMask parameter |
439 | 423 | /// \return The value wrapped in an optional if it is present, or an empty optional if it was not |
440 | 424 | auto getLinkMask() const -> boost::optional<LinkMaskType>; |
@@ -534,11 +518,6 @@ class Parameters |
534 | 518 | /// \return The value |
535 | 519 | auto getBufferParametersRequired() const -> BufferParametersType; |
536 | 520 |
|
537 | | - /// Gets the ReadoutMode parameter |
538 | | - /// \exception ParameterException The parameter was not present |
539 | | - /// \return The value |
540 | | - auto getReadoutModeRequired() const -> ReadoutModeType; |
541 | | - |
542 | 521 | /// Gets the LinkMask parameter |
543 | 522 | /// \exception ParameterException The parameter was not present |
544 | 523 | /// \return The value |
|
0 commit comments