| 46 | } |
| 47 | |
| 48 | std::unique_ptr<LayerStoreData> LayerDataChrom::storeFullData() const |
| 49 | { |
| 50 | auto ret = make_unique<LayerStoreDataPeakMapAll>(); |
| 51 | ret->storeFullExperiment(*chromatogram_map_.get()); |
| 52 | return ret; |
| 53 | } |
| 54 | |
| 55 | LayerDataChrom::ProjectionData LayerDataChrom::getProjection(const DIM_UNIT unit_x, const DIM_UNIT unit_y, const RangeAllType& /*area*/) const |
| 56 | { |
nothing calls this directly
no test coverage detected