ProteoWizard
PeakExtractor.hpp
Go to the documentation of this file.
1 //
2 // $Id: PeakExtractor.hpp 1191 2009-08-14 19:33:05Z chambm $
3 //
4 //
5 // Original author: Darren Kessner <darren@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 #ifndef _PEAKEXTRACTOR_HPP_
24 #define _PEAKEXTRACTOR_HPP_
25 
26 
27 #include "PeakFinder.hpp"
28 #include "PeakFitter.hpp"
32 #include "boost/shared_ptr.hpp"
33 #include <vector>
34 
35 
36 namespace pwiz {
37 namespace analysis {
38 
39 
40 ///
41 /// Class for extracting Peak objects from an array of ordered pairs;
42 /// in design pattern lingo, this is a "template method" delegating
43 /// peak finding and peak fitting to "strategies".
44 ///
46 {
47  public:
48 
50 
51  PeakExtractor(boost::shared_ptr<PeakFinder> peakFinder,
52  boost::shared_ptr<PeakFitter> peakFitter);
53 
55  std::vector<Peak>& result) const;
56 
57  private:
58 
59  boost::shared_ptr<PeakFinder> peakFinder_;
60  boost::shared_ptr<PeakFitter> peakFitter_;
61 };
62 
63 
64 } // namespace analysis
65 } // namespace pwiz
66 
67 
68 #endif // _PEAKEXTRACTOR_HPP_
69