Mercurial > hg > svcore
comparison data/model/Dense3DModelPeakCache.h @ 1339:df59bf0b4236 3.0-integration
Doc comment
author | Chris Cannam |
---|---|
date | Thu, 05 Jan 2017 11:10:38 +0000 |
parents | 9884efa1f88a |
children | c01cbe41aeb5 |
comparison
equal
deleted
inserted
replaced
1338:8541563f1fd3 | 1339:df59bf0b4236 |
---|---|
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 |