ProteoWizard
SpectrumList_Agilent.hpp
Go to the documentation of this file.
1 //
2 // $Id: SpectrumList_Agilent.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_AGILENT_
24 #define _SPECTRUMLIST_AGILENT_
25 
26 
33 
34 
35 #ifdef PWIZ_READER_AGILENT
36 #include "pwiz_aux/msrc/utility/vendor_api/Agilent/MassHunterData.hpp"
38 using namespace pwiz::vendor_api::Agilent;
39 #endif // PWIZ_READER_AGILENT
40 
41 
42 namespace pwiz {
43 namespace msdata {
44 namespace detail {
45 
46 using boost::shared_ptr;
47 
49 {
50  public:
51 
52  virtual size_t size() const;
53  virtual const SpectrumIdentity& spectrumIdentity(size_t index) const;
54  virtual size_t find(const string& id) const;
55  virtual SpectrumPtr spectrum(size_t index, bool getBinaryData) const;
56  virtual SpectrumPtr spectrum(size_t index, DetailLevel detailLevel) const;
57  virtual SpectrumPtr spectrum(size_t index, bool getBinaryData, const pwiz::util::IntegerSet& msLevelsToCentroid) const;
58  virtual SpectrumPtr spectrum(size_t index, DetailLevel detailLevel, const pwiz::util::IntegerSet& msLevelsToCentroid) const;
59 
60 #ifdef PWIZ_READER_AGILENT
61  SpectrumList_Agilent(const MSData& msd, MassHunterDataPtr rawfile);
62 
63  private:
64 
65  const MSData& msd_;
66  MassHunterDataPtr rawfile_;
67  mutable size_t size_;
68 
69  mutable util::once_flag_proxy indexInitialized_;
70 
71  struct IndexEntry : public SpectrumIdentity
72  {
73  int rowNumber; // continguous 0-based index (not equal to SpectrumIdentity::index since some scan types are skipped)
74  int scanId; // unique but not contiguous
75  };
76 
77  mutable vector<IndexEntry> index_;
78  mutable map<string, size_t> idToIndexMap_;
79 
80  void createIndex() const;
81 #endif // PWIZ_READER_AGILENT
82 };
83 
84 
85 } // detail
86 } // msdata
87 } // pwiz
88 
89 #endif // _SPECTRUMLIST_AGILENT_