OpenMS  2.4.0
SpectrumSettings.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2018.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Timo Sachsenberg $
32 // $Authors: Marc Sturm $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
45 
46 #include <map>
47 #include <vector>
48 
49 namespace OpenMS
50 {
63  class OPENMS_DLLAPI SpectrumSettings :
64  public MetaInfoInterface
65  {
66 
67 public:
68 
71  {
75  SIZE_OF_SPECTRUMTYPE
76  };
78  static const std::string NamesOfSpectrumType[SIZE_OF_SPECTRUMTYPE];
79 
83  SpectrumSettings(const SpectrumSettings & source);
86 
87  // Assignment operator
88  SpectrumSettings & operator=(const SpectrumSettings & source);
89 
91  bool operator==(const SpectrumSettings & rhs) const;
93  bool operator!=(const SpectrumSettings & rhs) const;
94 
96  void unify(const SpectrumSettings & rhs);
97 
99  SpectrumType getType() const;
101  void setType(SpectrumType type);
102 
104  const String & getNativeID() const;
106  void setNativeID(const String & native_id);
107 
109  const String & getComment() const;
111  void setComment(const String & comment);
112 
114  const InstrumentSettings & getInstrumentSettings() const;
116  InstrumentSettings & getInstrumentSettings();
118  void setInstrumentSettings(const InstrumentSettings & instrument_settings);
119 
121  const AcquisitionInfo & getAcquisitionInfo() const;
123  AcquisitionInfo & getAcquisitionInfo();
125  void setAcquisitionInfo(const AcquisitionInfo & acquisition_info);
126 
128  const SourceFile & getSourceFile() const;
130  SourceFile & getSourceFile();
132  void setSourceFile(const SourceFile & source_file);
133 
135  const std::vector<Precursor> & getPrecursors() const;
137  std::vector<Precursor> & getPrecursors();
139  void setPrecursors(const std::vector<Precursor> & precursors);
140 
142  const std::vector<Product> & getProducts() const;
144  std::vector<Product> & getProducts();
146  void setProducts(const std::vector<Product> & products);
147 
149  const std::vector<PeptideIdentification> & getPeptideIdentifications() const;
151  std::vector<PeptideIdentification> & getPeptideIdentifications();
153  void setPeptideIdentifications(const std::vector<PeptideIdentification> & identifications);
154 
156  void setDataProcessing(const std::vector< DataProcessingPtr > & data_processing);
157 
159  std::vector< DataProcessingPtr > & getDataProcessing();
160 
162  const std::vector< boost::shared_ptr<const DataProcessing > > getDataProcessing() const;
163 
164 protected:
165 
172  std::vector<Precursor> precursors_;
173  std::vector<Product> products_;
174  std::vector<PeptideIdentification> identification_;
175  std::vector< DataProcessingPtr > data_processing_;
176  };
177 
179  OPENMS_DLLAPI std::ostream & operator<<(std::ostream & os, const SpectrumSettings & spec);
180 
181 } // namespace OpenMS
182 
Description of the settings a MS Instrument was run with.
Definition: InstrumentSettings.h:47
A more convenient string class.
Definition: String.h:57
std::vector< Precursor > precursors_
Definition: SpectrumSettings.h:172
SpectrumType
Spectrum peak type.
Definition: SpectrumSettings.h:70
Description of the combination of raw data to a single spectrum.
Definition: AcquisitionInfo.h:52
profile data
Definition: SpectrumSettings.h:74
bool operator==(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:806
Representation of 1D spectrum settings.
Definition: SpectrumSettings.h:63
Description of a file location, used to store the origin of (meta) data.
Definition: SourceFile.h:46
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
Unknown spectrum type.
Definition: SpectrumSettings.h:72
InstrumentSettings instrument_settings_
Definition: SpectrumSettings.h:169
std::vector< DataProcessingPtr > data_processing_
Definition: SpectrumSettings.h:175
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
Interface for classes that can store arbitrary meta information (Type-Name-Value tuples).
Definition: MetaInfoInterface.h:55
SpectrumType type_
Definition: SpectrumSettings.h:166
SourceFile source_file_
Definition: SpectrumSettings.h:170
bool operator!=(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:824
AcquisitionInfo acquisition_info_
Definition: SpectrumSettings.h:171
String native_id_
Definition: SpectrumSettings.h:167
std::vector< Product > products_
Definition: SpectrumSettings.h:173
String comment_
Definition: SpectrumSettings.h:168
centroid data or stick data
Definition: SpectrumSettings.h:73
std::vector< PeptideIdentification > identification_
Definition: SpectrumSettings.h:174