Set the peak file options
| 61 | |
| 62 | /// Set the peak file options |
| 63 | void MzMLHandler::setOptions(const PeakFileOptions& opt) |
| 64 | { |
| 65 | options_ = opt; |
| 66 | spectrum_data_.reserve(options_.getMaxDataPoolSize()); |
| 67 | chromatogram_data_.reserve(options_.getMaxDataPoolSize()); |
| 68 | } |
| 69 | |
| 70 | /// Get the peak file options |
| 71 | PeakFileOptions& MzMLHandler::getOptions() |
nothing calls this directly
no test coverage detected