|
23 | 23 | #include <boost/optional.hpp> |
24 | 24 | #include <boost/variant.hpp> |
25 | 25 | #include "ReadoutCard/ParameterTypes/BufferParameters.h" |
26 | | -#include "ReadoutCard/ParameterTypes/GeneratorPattern.h" |
27 | 26 | #include "ReadoutCard/ParameterTypes/LoopbackMode.h" |
28 | 27 | #include "ReadoutCard/ParameterTypes/PciAddress.h" |
29 | 28 | #include "ReadoutCard/ParameterTypes/PciSequenceNumber.h" |
@@ -83,9 +82,6 @@ class Parameters |
83 | 82 | /// Type for the LoopbackMode parameter |
84 | 83 | using GeneratorLoopbackType = LoopbackMode::type; |
85 | 84 |
|
86 | | - /// Type for the generator pattern parameter |
87 | | - using GeneratorPatternType = GeneratorPattern::type; |
88 | | - |
89 | 85 | /// Type for the generator data size parameter |
90 | 86 | using GeneratorRandomSizeEnabledType = bool; |
91 | 87 |
|
@@ -227,19 +223,6 @@ class Parameters |
227 | 223 | /// \return Reference to this object for chaining calls |
228 | 224 | auto setGeneratorLoopback(GeneratorLoopbackType value) -> Parameters&; |
229 | 225 |
|
230 | | - /// Sets the GeneratorPattern parameter. |
231 | | - /// |
232 | | - /// Determines the content of the generated data. |
233 | | - /// Supported formats: |
234 | | - /// * C-RORC: all formats (I think...) |
235 | | - /// * CRU: Constant, Alternating, Incremental |
236 | | - /// |
237 | | - /// If not set, the driver will default to the incremental pattern (GeneratorPattern::Incremental). |
238 | | - /// |
239 | | - /// \param value The value to set |
240 | | - /// \return Reference to this object for chaining calls |
241 | | - auto setGeneratorPattern(GeneratorPatternType value) -> Parameters&; |
242 | | - |
243 | 226 | /// Sets the GeneratorRandomSizeEnabled parameter. |
244 | 227 | /// |
245 | 228 | /// If enabled, the content of the DMA pages will have a random size. |
@@ -407,10 +390,6 @@ class Parameters |
407 | 390 | /// \return The value wrapped in an optional if it is present, or an empty optional if it was not |
408 | 391 | auto getGeneratorLoopback() const -> boost::optional<GeneratorLoopbackType>; |
409 | 392 |
|
410 | | - /// Gets the GeneratorPattern parameter |
411 | | - /// \return The value wrapped in an optional if it is present, or an empty optional if it was not |
412 | | - auto getGeneratorPattern() const -> boost::optional<GeneratorPatternType>; |
413 | | - |
414 | 393 | /// Gets the GeneratorRandomSizeEnabled parameter |
415 | 394 | /// \return The value wrapped in an optional if it is present, or an empty optional if it was not |
416 | 395 | auto getGeneratorRandomSizeEnabled() const -> boost::optional<GeneratorRandomSizeEnabledType>; |
@@ -503,11 +482,6 @@ class Parameters |
503 | 482 | /// \return The value |
504 | 483 | auto getGeneratorLoopbackRequired() const -> GeneratorLoopbackType; |
505 | 484 |
|
506 | | - /// Gets the GeneratorPattern parameter |
507 | | - /// \exception ParameterException The parameter was not present |
508 | | - /// \return The value |
509 | | - auto getGeneratorPatternRequired() const -> GeneratorPatternType; |
510 | | - |
511 | 485 | /// Gets the GeneratorRandomSizeEnabled parameter |
512 | 486 | /// \exception ParameterException The parameter was not present |
513 | 487 | /// \return The value |
|
0 commit comments