ProteoWizard
WarpFunction.hpp
Go to the documentation of this file.
1 //
2 // $Id: WarpFunction.hpp 1539 2009-11-19 20:12:28Z khoff $
3 //
4 //
5 // Original author: Kate Hoff <katherine.hoff@proteowizard.org>
6 //
7 // Copyright 2009 Center for Applied Molecular Medicine
8 // University of Southern California, Los Angeles, CA
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 // http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 
23 ///
24 /// WarpFunction.hpp
25 ///
26 
27 #ifndef _WARP_FUNCTION_HPP_
28 #define _WARP_FUNCTION_HPP_
29 
30 #include <iostream>
31 #include <vector>
33 #include "boost/tuple/tuple_comparison.hpp"
34 
35 namespace pwiz {
36 namespace eharmony {
37 
39 
41 {
42 
43 public:
44 
45  WarpFunction(const std::vector<std::pair<double,double> >& anchors);
46  virtual void operator()(std::vector<double>& rt_vals, std::vector<double>& warped_rt_vals);
47  virtual ~WarpFunction() {}
48 
49 protected:
50 
51  std::vector<std::pair<double,double> > anchors_;
52 
53 };
54 
56 {
57 
58 public:
59 
60  LinearWarpFunction(std::vector<std::pair<double,double> >& anchors);
61  virtual void operator()(std::vector<double>& rt_vals, std::vector<double>& warped_rt_vals);
62 
63 private:
64 
65  std::vector<double> coefficients_;
66 
67 };
68 
70 {
71 
72 public:
73 
74  PiecewiseLinearWarpFunction(std::vector<std::pair<double,double> >& anchors);
75  virtual void operator()(std::vector<double>& rt_vals, std::vector<double>& warped_rt_vals);
76 
77 private:
78 
79  std::vector<std::pair<double,double> > coefficients_;
80 
81 };
82 
84 {
85 
86 public:
87 
88  SplineWarpFunction(std::vector<std::pair<double,double> >& anchors);
89  virtual void operator()(std::vector<double>& rt_vals, std::vector<double>& warped_rt_vals);
90 
91 
92 private:
93 
94  std::vector<boost::tuple<double,double,double,double> > coefficients_;
95 
96 };
97 
98 } // namespace eharmony
99 } // namespace pwiz
100 
101 #endif //_WARP_FUNCTION_HPP_