OpenMS
IsotopeDiffFilter.h
Go to the documentation of this file.
1 // Copyright (c) 2002-present, The OpenMS Team -- EKU Tuebingen, ETH Zurich, and FU Berlin
2 // SPDX-License-Identifier: BSD-3-Clause
3 //
4 // --------------------------------------------------------------------------
5 // $Maintainer: Timo Sachsenberg $
6 // $Authors: $
7 // --------------------------------------------------------------------------
8 //
9 #pragma once
10 
12 #include <cmath>
13 
14 namespace OpenMS
15 {
23  class OPENMS_DLLAPI IsotopeDiffFilter :
24  public FilterFunctor
25  {
26 
27 public:
28 
29  // @name Constructors and Destructors
30  // @{
33 
36 
38  ~IsotopeDiffFilter() override;
39  // @}
40 
41  // @name Operators
42  // @{
45  // @}
46 
47  // @name Accessors
48  // @{
49 
51  template <typename SpectrumType>
52  double apply(SpectrumType & spectrum)
53  {
54  double tolerance = (double)param_.getValue("tolerance");
55  double isodiff = 0;
56 
57  //iterate over all peaks
58  for (Size i = 0; i < spectrum.size(); ++i)
59  {
60  for (Size j = 1; i + j < spectrum.size(); ++j)
61  {
62  double pos_ij = spectrum[i + j].getPosition()[0];
63  double pos_i = spectrum[i].getPosition()[0];
64  if (std::fabs(pos_ij - pos_i + 1) < tolerance)
65  {
66  isodiff += spectrum[i].getIntensity() + spectrum[i + j].getIntensity();
67  }
68  else
69  {
70  if (std::fabs(spectrum[i + j].getPosition()[0] - spectrum[i].getPosition()[0]) > 1 + tolerance)
71  {
72  break;
73  }
74  }
75  }
76  }
77  return isodiff;
78  }
79 
80  // @}
81 
82 private:
83  };
84 }
A FilterFunctor extracts some spectrum characteristics for quality assessment.
Definition: FilterFunctor.h:20
IsotopeDiffFilter returns total intensity of peak pairs that could result from isotope peaks.
Definition: IsotopeDiffFilter.h:25
~IsotopeDiffFilter() override
destructor
IsotopeDiffFilter()
default constructor
IsotopeDiffFilter & operator=(const IsotopeDiffFilter &source)
assignment operator
IsotopeDiffFilter(const IsotopeDiffFilter &source)
copy constructor
double apply(SpectrumType &spectrum)
Definition: IsotopeDiffFilter.h:52
The representation of a 1D spectrum.
Definition: MSSpectrum.h:44
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:97
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19