ProteoWizard
RAMPAdapter.hpp
Go to the documentation of this file.
1 //
2 // $Id: RAMPAdapter.hpp 3003 2011-09-21 21:43:45Z pcbrefugee $
3 //
4 //
5 // Original author: Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2008 Spielberg Family Center for Applied Proteomics
8 // Cedars-Sinai Medical Center, Los Angeles, California 90048
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 #ifndef _RAMPADAPTER_HPP_
25 #define _RAMPADAPTER_HPP_
26 
27 #include <stdlib.h>
29 #include "ramp.h"
30 #include "boost/shared_ptr.hpp"
31 #include <string>
32 #include <vector>
33 
34 
35 namespace pwiz {
36 namespace msdata {
37 
38 
39 /// adapter to provide RAMP-friendly access to MSData library
41 {
42  public:
43 
44  /// constructor
45  RAMPAdapter(const std::string& filename);
46 
47  /// returns the number of scans stored in the data file
48  size_t scanCount() const;
49 
50  /// converts a scan number to a 0-based index;
51  /// returns scanCount() if scanNumber is not found
52  size_t index(int scanNumber) const;
53 
54  /// returns the scan number for a specified scan
55  int getScanNumber(size_t index) const;
56 
57  /// fills in RAMP ScanHeaderStruct for a specified scan
58  ///
59  /// you can optionally preload the peaklists too, but the
60  /// RAMP interface this emulates doesn't normally do that,
61  /// so defaulting reservePeaks to true would be a nasty surprise
62  /// performance-wise to anyone switching over from actual RAMP
63  void getScanHeader(size_t index, ScanHeaderStruct& result, bool reservePeaks = false) const;
64 
65  /// fills in m/z-intensity pair array for a specified scan
66  void getScanPeaks(size_t index, std::vector<double>& result) const;
67 
68  /// fills in RAMP RunHeaderStruct
69  void getRunHeader(RunHeaderStruct& result) const;
70 
71  /// fills in RAMP InstrumentHeaderStruct
72  void getInstrument(InstrumentStruct& result) const;
73 
74  private:
75  class Impl;
76  boost::shared_ptr<Impl> impl_;
77  RAMPAdapter(RAMPAdapter& that);
78  RAMPAdapter& operator=(RAMPAdapter& that);
79 };
80 
81 
82 } // namespace msdata
83 } // namespace pwiz
84 
85 
86 #endif // _RAMPADAPTER_HPP_
87