Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
MockObjects.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: Hannes Roest $
32 // $Authors: Hannes Roest $
33 // --------------------------------------------------------------------------
34 
35 #ifndef OPENMS_ANALYSIS_OPENSWATH_OPENSWATHALGO_DATAACCESS_MOCKOBJECTS_H
36 #define OPENMS_ANALYSIS_OPENSWATH_OPENSWATHALGO_DATAACCESS_MOCKOBJECTS_H
37 
38 #include <OpenMS/ANALYSIS/OPENSWATH/OPENSWATHALGO/OpenSwathAlgoConfig.h>
40 
41 #include <boost/shared_ptr.hpp>
42 #include <map>
43 #include <vector>
44 
45 namespace OpenSwath
46 {
47 
51  class OPENSWATHALGO_DLLAPI MockFeature :
52  public OpenSwath::IFeature
53  {
54 public:
55 
56  MockFeature();
57 
58  ~MockFeature();
59 
60  void getRT(std::vector<double>& rt);
61 
62  void getIntensity(std::vector<double>& intens);
63 
64  float getIntensity();
65 
66  double getRT();
67 
68  std::vector<double> m_rt_vec;
69  std::vector<double> m_intensity_vec;
70  float m_intensity;
71  double m_rt;
72  };
73 
77  class OPENSWATHALGO_DLLAPI MockMRMFeature :
79  {
80 public:
81 
83 
84  ~MockMRMFeature();
85 
86  boost::shared_ptr<OpenSwath::IFeature> getFeature(std::string nativeID);
87 
88  boost::shared_ptr<OpenSwath::IFeature> getPrecursorFeature(std::string nativeID);
89 
90  std::vector<std::string> getNativeIDs() const;
91 
92  std::vector<std::string> getPrecursorIDs() const;
93 
94  float getIntensity();
95 
96  double getRT();
97 
98  size_t size();
99 
100  std::map<std::string, boost::shared_ptr<MockFeature> > m_features;
101  std::map<std::string, boost::shared_ptr<MockFeature> > m_precursor_features;
102  float m_intensity;
103  double m_rt;
104  };
105 
109  class OPENSWATHALGO_DLLAPI MockTransitionGroup :
111  {
112 public:
113 
115 
117 
118  std::size_t size();
119 
120  std::vector<std::string> getNativeIDs();
121 
122  void getLibraryIntensities(std::vector<double>& intensities);
123 
124  std::size_t m_size;
125  std::vector<std::string> m_native_ids;
126  std::vector<double> m_library_intensities;
127  };
128 
129 
133  class OPENSWATHALGO_DLLAPI MockSignalToNoise :
135  {
136 public:
138 
139  double getValueAtRT(double /* RT */);
140 
141  double m_sn_value;
142  };
143 
144 } //end namespace OpenMS
145 
146 #endif // OPENMS_ANALYSIS_OPENSWATH_OPENSWATHALGO_DATAACCESS_MOCKOBJECTS_H
std::vector< double > m_intensity_vec
Definition: MockObjects.h:69
std::vector< std::string > m_native_ids
Definition: MockObjects.h:125
Mock object implementing IMRMFeature.
Definition: MockObjects.h:77
std::map< std::string, boost::shared_ptr< MockFeature > > m_precursor_features
Definition: MockObjects.h:101
Mock object implementing IFeature.
Definition: MockObjects.h:51
Definition: ITransition.h:69
float m_intensity
Definition: MockObjects.h:70
double m_sn_value
Definition: MockObjects.h:141
std::map< std::string, boost::shared_ptr< MockFeature > > m_features
Definition: MockObjects.h:100
Definition: ITransition.h:46
std::vector< double > m_library_intensities
Definition: MockObjects.h:126
Definition: MRMScoring.h:51
std::size_t m_size
Definition: MockObjects.h:124
double m_rt
Definition: MockObjects.h:71
Mock object implementing ITransitionGroup.
Definition: MockObjects.h:109
float m_intensity
Definition: MockObjects.h:102
Definition: ITransition.h:56
std::vector< double > m_rt_vec
Definition: MockObjects.h:68
double m_rt
Definition: MockObjects.h:103
Mock object implementing ISignalToNoise.
Definition: MockObjects.h:133
Definition: ITransition.h:77

OpenMS / TOPP release 2.3.0 Documentation generated on Tue Jan 9 2018 18:22:02 using doxygen 1.8.13