| 100 | } |
| 101 | |
| 102 | void Adduct::setAmount(const Int& amount) |
| 103 | { |
| 104 | if (amount < 0) |
| 105 | { |
| 106 | std::cerr << "Warning: Adduct received negative amount! (" << amount << ")\n"; |
| 107 | } |
| 108 | amount_ = amount; |
| 109 | } |
| 110 | |
| 111 | const double& Adduct::getSingleMass() const |
| 112 | { |
no outgoing calls
no test coverage detected