| 14 | namespace OpenMS |
| 15 | { |
| 16 | SpectrumAlignment::SpectrumAlignment() : |
| 17 | DefaultParamHandler("SpectrumAlignment") |
| 18 | { |
| 19 | defaults_.setValue("tolerance", 0.3, "Defines the absolute (in Da) or relative (in ppm) tolerance"); |
| 20 | defaults_.setValue("is_relative_tolerance", "false", "If true, the 'tolerance' is interpreted as ppm-value"); |
| 21 | defaults_.setValidStrings("is_relative_tolerance", {"true","false"}); |
| 22 | defaultsToParam_(); |
| 23 | } |
| 24 | |
| 25 | SpectrumAlignment::SpectrumAlignment(const SpectrumAlignment & source) = default; |
| 26 |
no test coverage detected