Skip to content
Snippets Groups Projects
Commit d7a92bed authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm unused fct

parent 8fc7feb9
No related branches found
No related tags found
1 merge request!1303simplifications of resolution handling; resolve warnings
......@@ -40,12 +40,6 @@ std::vector<double> ScanResolution::stdDevs(double, size_t n_times) const
return std::vector<double>(n_times, m_stddev);
}
std::vector<double> ScanResolution::stdDevs(const std::vector<double>& mean) const
{
ASSERT(!mean.empty());
return std::vector<double>(mean.size(), m_stddev);
}
size_t ScanResolution::nSamples() const
{
return m_distr ? m_distr->nSamples() : 1L;
......
......@@ -39,7 +39,6 @@ public:
std::vector<ParameterSample> resolutionSamples(double mean) const;
std::vector<double> stdDevs(double mean, size_t n_times) const;
std::vector<double> stdDevs(const std::vector<double>& mean) const;
//... For export:
double delta() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment