OpenMS
LayerData1DIonMobility.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2023.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Chris Bielow $
32 // $Authors: Chris Bielow $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
39 
40 namespace OpenMS
41 {
42 
43  class OPENMS_GUI_DLLAPI LayerData1DIonMobility : public LayerDataIonMobility, public LayerData1DBase
44  {
45  public:
47  : LayerDataBase(DT_PEAK)
48  {
49  }
50 
52  {
53  }
54 
55 
56  std::unique_ptr<LayerStoreData> storeVisibleData(const RangeAllType& visible_range, const DataFilters& layer_filters) const override;
57  std::unique_ptr<LayerStoreData> storeFullData() const override;
58 
59  std::unique_ptr<Painter1DBase> getPainter1D() const override;
60 
61  bool hasIndex(Size index) const override
62  {
63  return index == 0;
64  }
65 
66  RangeAllType getRangeForArea(const RangeAllType partial_range) const override
67  {
68  const auto& spec = getCurrentMobilogram();
69  auto spec_filtered = Mobilogram();
70  spec_filtered.insert(spec_filtered.begin(), spec.MBBegin(partial_range.getMinMobility()), spec.MBEnd(partial_range.getMaxMobility()));
71  spec_filtered.updateRanges();
72  return RangeAllType().assign(spec_filtered.getRange());
73  }
74 
75  RangeAllType getRange1D() const override
76  {
77  return RangeAllType().assign(getCurrentMobilogram().getRange());
78  }
79 
81  {
82  return LayerDataIonMobility::getMobilogram(this->getCurrentIndex());
83  }
84 
85  void updateRanges() override
86  {
88  }
89 
90  RangeAllType getRange() const override
91  {
92  // do NOT change the behaviour of getRange() for 1D, since we want the full IM range across all mbs
93  // when scrolling in the list of mbs
95  }
96 
97  // docu in base class
98  QMenu* getContextMenuAnnotation(Annotation1DItem* annot_item, bool& need_repaint) override;
99 
100  PeakIndex findClosestDataPoint(const RangeAllType& area) const override;
101 
102  // docu in base class
103  Annotation1DItem* addPeakAnnotation(const PeakIndex& peak_index, const QString& text, const QColor& color) override;
104 
105  protected:
106  };
107 
108 }// namespace OpenMS
An abstract class acting as an interface for the different 1D annotation items.
Definition: Annotation1DItem.h:62
DataFilter array providing some convenience functions.
Definition: DataFilters.h:53
Base class for all 1D layers, a special case of LayerData.
Definition: LayerData1DBase.h:54
Definition: LayerData1DIonMobility.h:44
RangeAllType getRangeForArea(const RangeAllType partial_range) const override
Given a partial_range for the current 1D layer (e.g. an m/z range), fill in the other dimensions (usu...
Definition: LayerData1DIonMobility.h:66
LayerData1DIonMobility()
Definition: LayerData1DIonMobility.h:46
LayerData1DIonMobility(const LayerDataIonMobility &base)
Definition: LayerData1DIonMobility.h:51
std::unique_ptr< LayerStoreData > storeFullData() const override
Returns a visitor which contains the the full data of the layer and can write the data to disk in the...
std::unique_ptr< Painter1DBase > getPainter1D() const override
Obtain a painter which can draw the layer on a canvas.
QMenu * getContextMenuAnnotation(Annotation1DItem *annot_item, bool &need_repaint) override
Get a context menu (with lambda actions included) for this 1D layer, when a Annotation1DItem was righ...
RangeAllType getRange() const override
Definition: LayerData1DIonMobility.h:90
bool hasIndex(Size index) const override
Does the layer have at least index items (e.g. spectra, chroms, etc), so a call to setCurrentIndex() ...
Definition: LayerData1DIonMobility.h:61
PeakIndex findClosestDataPoint(const RangeAllType &area) const override
Find the closest datapoint within the given range and return a proxy to that datapoint.
std::unique_ptr< LayerStoreData > storeVisibleData(const RangeAllType &visible_range, const DataFilters &layer_filters) const override
Returns a visitor which contains the current visible data and can write the data to disk.
void updateRanges() override
Update ranges of the underlying data.
Definition: LayerData1DIonMobility.h:85
const Mobilogram & getCurrentMobilogram() const
Definition: LayerData1DIonMobility.h:80
Annotation1DItem * addPeakAnnotation(const PeakIndex &peak_index, const QString &text, const QColor &color) override
Add a Annotation1DPeakItem to getCurrentAnnotations(). The specific type is determined by the derived...
RangeAllType getRange1D() const override
Definition: LayerData1DIonMobility.h:75
Class that stores the data for one layer.
Definition: LayerDataBase.h:195
Class that stores the data for one layer of type IonMobility.
Definition: LayerDataIonMobility.h:54
const Mobilogram & getMobilogram(Size index) const
Definition: LayerDataIonMobility.h:100
RangeAllType getRange() const override
Definition: LayerDataIonMobility.h:87
void updateRanges() override
Update ranges of the underlying data.
Definition: LayerDataIonMobility.h:81
The representation of a 1D ion mobilogram.
Definition: Mobilogram.h:55
auto & assign(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:612
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:48
RangeManager< RangeRT, RangeMZ, RangeIntensity, RangeMobility > RangeAllType
Range which contains all known dimensions.
Definition: RangeManager.h:923
Index of a peak or feature.
Definition: PeakIndex.h:51