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

rm unused fct

parent f0d36ec7
No related branches found
No related tags found
1 merge request!48Comments and simplifications in loader context
......@@ -49,16 +49,16 @@ int rank(const InstrumentItem& item)
return static_cast<int>(item.shape().size());
}
std::unique_ptr<OutputData<double>>
ImportDataUtils::ImportKnownData(const QString& fileName,
IntensityDataIOFactory::LoaderSelector loader)
std::unique_ptr<OutputData<double>> ImportKnownData(
const QString& fileName,
IntensityDataIOFactory::LoaderSelector loader = IntensityDataIOFactory::automatic)
{
// Try to use the canonical tools for importing data
std::unique_ptr<OutputData<double>> result;
try {
std::unique_ptr<OutputData<double>> data(
IntensityDataIOFactory::readOutputData(fileName.toStdString(), loader));
result = CreateSimplifiedOutputData(*data);
result = ImportDataUtils::CreateSimplifiedOutputData(*data);
} catch (std::exception& ex) {
QString message = QString("Error while trying to read file\n\n'%1'\n\n%2")
.arg(fileName)
......@@ -71,23 +71,6 @@ ImportDataUtils::ImportKnownData(const QString& fileName,
} // namespace
std::unique_ptr<OutputData<double>>
ImportDataUtils::ImportReflectometryData(const QString& fileName)
{
std::unique_ptr<OutputData<double>> result;
try {
std::unique_ptr<OutputData<double>> data(
IntensityDataIOFactory::readReflectometryData(fileName.toStdString()));
result.swap(data);
} catch (std::exception& ex) {
QString message = QString("Error while trying to read file\n\n'%1'\n\n%2")
.arg(fileName)
.arg(QString::fromStdString(std::string(ex.what())));
QMessageBox::warning(nullptr, "IO Problem", message);
}
return result;
}
std::unique_ptr<OutputData<double>>
ImportDataUtils::Import2dData(const QString& fileName,
IntensityDataIOFactory::LoaderSelector loader)
......
......@@ -24,7 +24,6 @@
template <class T> class OutputData;
class RealDataItem;
class InstrumentItem;
class GISASInstrumentItem;
class AbstractDataLoader;
//! Provides utility methods to import data files.
......@@ -45,8 +44,6 @@ std::unique_ptr<OutputData<double>> Import2dData(const QString& fileName,
//! (or null if none selected).
QString Import1dData(RealDataItem* realDataItem, const AbstractDataLoader* selectedLoader);
std::unique_ptr<OutputData<double>> ImportReflectometryData(const QString& fileName);
//! Creates OutputData with bin-valued axes.
std::unique_ptr<OutputData<double>> CreateSimplifiedOutputData(const OutputData<double>& data);
......
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