Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
EmpiricalFormula.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-2017.
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: Chris Bielow $
32 // $Authors: Andreas Bertsch, Chris Bielow $
33 // --------------------------------------------------------------------------
34 //
35 #pragma once
36 
37 #include <iosfwd>
38 #include <map>
39 #include <set>
40 #include <algorithm>
41 
42 #include <OpenMS/CONCEPT/Types.h>
43 
44 namespace OpenMS
45 {
46  class String;
47  class Element;
48  class ElementDB;
49  class IsotopeDistribution;
50 
79  class OPENMS_DLLAPI EmpiricalFormula
80  {
81 
82 protected:
84  typedef std::map<const Element*, SignedSize> MapType_;
85 
86 public:
90  typedef MapType_::const_iterator ConstIterator;
92  typedef MapType_::const_iterator const_iterator;
94 
100 
103 
109  explicit EmpiricalFormula(const String& rhs);
110 
112  EmpiricalFormula(SignedSize number, const Element* element, SignedSize charge = 0);
113 
115  virtual ~EmpiricalFormula();
117 
121  double getMonoWeight() const;
123 
125  double getAverageWeight() const;
126 
140  bool estimateFromWeightAndComp(double average_weight, double C, double H, double N, double O, double S, double P);
141 
156  bool estimateFromWeightAndCompAndS(double average_weight, UInt S, double C, double H, double N, double O, double P);
157 
158 
166  IsotopeDistribution getIsotopeDistribution(UInt max_depth) const;
167 
177  IsotopeDistribution getConditionalFragmentIsotopeDist(const EmpiricalFormula& precursor, const std::set<UInt>& precursor_isotopes) const;
178 
180  SignedSize getNumberOf(const Element* element) const;
181 
183  SignedSize getNumberOfAtoms() const;
184 
186  SignedSize getCharge() const;
187 
189  void setCharge(SignedSize charge);
190 
192  String toString() const;
194 
198  EmpiricalFormula& operator=(const EmpiricalFormula& rhs);
200 
202  EmpiricalFormula& operator+=(const EmpiricalFormula& rhs);
203 
205  EmpiricalFormula operator*(const SignedSize& times) const;
206 
208  EmpiricalFormula operator+(const EmpiricalFormula& rhs) const;
209 
211  EmpiricalFormula& operator-=(const EmpiricalFormula& rhs);
212 
214  EmpiricalFormula operator-(const EmpiricalFormula& rhs) const;
215 
217 
221  bool isEmpty() const;
223 
225  bool isCharged() const;
226 
228  bool hasElement(const Element* element) const;
229 
231  bool contains(const EmpiricalFormula& ef);
232 
234  bool operator==(const EmpiricalFormula& rhs) const;
235 
237  bool operator!=(const EmpiricalFormula& rhs) const;
238 
240 
242  friend OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const EmpiricalFormula& formula);
243 
247  inline ConstIterator begin() const { return formula_.begin(); }
248 
249  inline ConstIterator end() const { return formula_.end(); }
251 
252 protected:
253 
255  void removeZeroedElements_();
256 
258 
260 
261  SignedSize parseFormula_(std::map<const Element*, SignedSize>& ef, const String& formula) const;
262 
263  };
264 
265  OPENMS_DLLAPI std::ostream& operator<<(std::ostream& os, const EmpiricalFormula& formula);
266 
267 } // namespace OpenMS
A more convenient string class.
Definition: String.h:57
SignedSize charge_
Definition: EmpiricalFormula.h:259
ConstIterator begin() const
Definition: EmpiricalFormula.h:247
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
Isotope distribution class.
Definition: IsotopeDistribution.h:61
bool operator==(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:806
ptrdiff_t SignedSize
Signed Size type e.g. used as pointer difference.
Definition: Types.h:134
MapType_::const_iterator ConstIterator
Iterators.
Definition: EmpiricalFormula.h:91
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
MapType_ formula_
Definition: EmpiricalFormula.h:257
ConstIterator end() const
Definition: EmpiricalFormula.h:249
Representation of an empirical formula.
Definition: EmpiricalFormula.h:79
Representation of an element.
Definition: Element.h:53
MapType_::const_iterator const_iterator
Definition: EmpiricalFormula.h:92
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
DPosition< D, TCoordinateType > operator*(DPosition< D, TCoordinateType > position, typename DPosition< D, TCoordinateType >::CoordinateType scalar)
Scalar multiplication (a bit inefficient)
Definition: DPosition.h:420
bool operator!=(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:824
std::map< const Element *, SignedSize > MapType_
Internal typedef for the used map type.
Definition: EmpiricalFormula.h:84
String toString(T i)
toString functions (single argument)
Definition: StringUtils.h:68

OpenMS / TOPP release 2.3.0 Documentation generated on Wed Apr 18 2018 19:29:04 using doxygen 1.8.14