| 53 | } |
| 54 | |
| 55 | const std::vector<DataProcessing> MSQuantifications::getDataProcessingList() const |
| 56 | { |
| 57 | std::vector<DataProcessing> list = data_processings_; |
| 58 | |
| 59 | //This is one way street for dataprocessing - it probably wont get mapped back after write out and reading |
| 60 | for (std::vector<FeatureMap >::const_iterator fit = feature_maps_.begin(); fit != feature_maps_.end(); ++fit) |
| 61 | { |
| 62 | list.insert(list.end(), fit->getDataProcessing().begin(), fit->getDataProcessing().end()); |
| 63 | } |
| 64 | |
| 65 | for (std::vector<ConsensusMap>::const_iterator cit = consensus_maps_.begin(); cit != consensus_maps_.end(); ++cit) |
| 66 | { |
| 67 | list.insert(list.end(), cit->getDataProcessing().begin(), cit->getDataProcessing().end()); |
| 68 | } |
| 69 | |
| 70 | return list; |
| 71 | } |
| 72 | |
| 73 | const std::vector<MSQuantifications::Assay> & MSQuantifications::getAssays() const |
| 74 | { |