Mercurial > hg > svcore
comparison data/model/Dense3DModelPeakCache.h @ 1527:710e6250a401 zoom
Merge from default branch
author | Chris Cannam |
---|---|
date | Mon, 17 Sep 2018 13:51:14 +0100 |
parents | df59bf0b4236 |
children | c01cbe41aeb5 |
comparison
equal
deleted
inserted
replaced
1324:d4a28d1479a8 | 1527:710e6250a401 |
---|---|
71 | 71 |
72 virtual float getMaximumLevel() const { | 72 virtual float getMaximumLevel() const { |
73 return m_source->getMaximumLevel(); | 73 return m_source->getMaximumLevel(); |
74 } | 74 } |
75 | 75 |
76 virtual Column getColumn(int column) const; | 76 /** |
77 * Retrieve the peaks column at peak-cache column number col. This | |
78 * will consist of the peak values in the underlying model from | |
79 * columns (col * getColumnsPerPeak()) to ((col+1) * | |
80 * getColumnsPerPeak() - 1) inclusive. | |
81 */ | |
82 virtual Column getColumn(int col) const; | |
77 | 83 |
78 virtual float getValueAt(int column, int n) const; | 84 virtual float getValueAt(int col, int n) const; |
79 | 85 |
80 virtual QString getBinName(int n) const { | 86 virtual QString getBinName(int n) const { |
81 return m_source->getBinName(n); | 87 return m_source->getBinName(n); |
82 } | 88 } |
83 | 89 |