ProteoWizard
SpectrumList_Bruker.hpp
Go to the documentation of this file.
1 //
2 // $Id: SpectrumList_Bruker.hpp 2844 2011-07-07 22:12:31Z chambm $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2009 Vanderbilt University - Nashville, TN 37232
8 //
9 // Licensed under the Apache License, Version 2.0 (the "License");
10 // you may not use this file except in compliance with the License.
11 // You may obtain a copy of the License at
12 //
13 // http://www.apache.org/licenses/LICENSE-2.0
14 //
15 // Unless required by applicable law or agreed to in writing, software
16 // distributed under the License is distributed on an "AS IS" BASIS,
17 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 // See the License for the specific language governing permissions and
19 // limitations under the License.
20 //
21 
22 
23 #ifndef _SPECTRUMLIST_BRUKER_HPP_
24 #define _SPECTRUMLIST_BRUKER_HPP_
25 
33 #include "Reader_Bruker_Detail.hpp"
34 
35 
36 namespace pwiz {
37 namespace msdata {
38 namespace detail {
39 
40 using boost::shared_ptr;
41 
42 //
43 // SpectrumList_Bruker
44 //
46 {
47  public:
48 
49  virtual size_t size() const;
50  virtual const SpectrumIdentity& spectrumIdentity(size_t index) const;
51  virtual size_t find(const string& id) const;
52  virtual SpectrumPtr spectrum(size_t index, bool getBinaryData) const;
53  SpectrumPtr spectrum(size_t index, bool getBinaryData, const pwiz::util::IntegerSet& msLevelsToCentroid) const;
54 
55 #ifdef PWIZ_READER_BRUKER
57  const string& rootpath,
59  CompassDataPtr compassDataPtr);
60 
61  MSSpectrumPtr getMSSpectrumPtr(size_t index) const;
62 
63  private:
64 
65  MSData& msd_;
66  bfs::path rootpath_;
67  Reader_Bruker_Format format_;
68  mutable CompassDataPtr compassDataPtr_;
69  size_t size_;
70  vector<bfs::path> sourcePaths_;
71 
72  struct IndexEntry : public SpectrumIdentity
73  {
74  int source;
75  int collection; // -1 for an MS spectrum
76  int scan;
77  };
78 
79  vector<IndexEntry> index_;
80 
81  // idToIndexMap_["scan=<#>" or "file=<sourceFile::id>"] == index
82  map<string, size_t> idToIndexMap_;
83 
84  void fillSourceList();
85  void createIndex();
86  //string findPrecursorID(int precursorMsLevel, size_t index) const;
87 #endif // PWIZ_READER_BRUKER
88 };
89 
90 } // detail
91 } // msdata
92 } // pwiz
93 
94 #endif // _SPECTRUMLIST_BRUKER_HPP_