#include "pwiz/utility/misc/Export.hpp"
#include <iosfwd>
Go to the source code of this file.
Functions |
PWIZ_API_DECL std::ostream & | pwiz::chemistry::operator<< (std::ostream &os, const MZTolerance &mzt) |
PWIZ_API_DECL std::istream & | pwiz::chemistry::operator>> (std::istream &is, MZTolerance &mzt) |
PWIZ_API_DECL bool | pwiz::chemistry::operator== (const MZTolerance &a, const MZTolerance &b) |
PWIZ_API_DECL bool | pwiz::chemistry::operator!= (const MZTolerance &a, const MZTolerance &b) |
PWIZ_API_DECL double & | pwiz::chemistry::operator+= (double &d, const MZTolerance &tolerance) |
PWIZ_API_DECL double & | pwiz::chemistry::operator-= (double &d, const MZTolerance &tolerance) |
PWIZ_API_DECL double | pwiz::chemistry::operator+ (double d, const MZTolerance &tolerance) |
PWIZ_API_DECL double | pwiz::chemistry::operator- (double d, const MZTolerance &tolerance) |
PWIZ_API_DECL bool | pwiz::chemistry::isWithinTolerance (double a, double b, const MZTolerance &tolerance) |
| returns true iff a is in (b-tolerance, b+tolerance)
|
PWIZ_API_DECL bool | pwiz::chemistry::lessThanTolerance (double a, double b, const MZTolerance &tolerance) |
| returns true iff b - a is greater than the value in tolerance (useful for matching sorted mass lists)
|