1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Tests/Unit/GUI/Utils.cpp
//! @brief Implements auxiliary test functions in a namespace.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2015
//! @authors Scientific Computing Group at MLZ Garching
//
// ************************************************************************************************
#include "Tests/Unit/GUI/Utils.h"
#include "Base/Axis/MakeScale.h"
#include "Device/Data/Datafield.h"
#include "Device/IO/IOFactory.h"
#include "GUI/Model/Data/DataItem.h"
#include "GUI/Model/File/DatafileItem.h"
#include "GUI/Model/File/DatafilesSet.h"
#include "GUI/Model/Project/ProjectUtil.h"
void UTest::GUI::create_dir(const QString& dir_name)
{
if (QFile::exists(dir_name))
QDir(dir_name).removeRecursively();
if (!QDir(".").mkdir(dir_name))
throw std::runtime_error("Cannot create '" + dir_name.toStdString()
+ "' in parent directory '.'.");
}
Datafield UTest::GUI::makeData1D(double value, int nx, double x_min, double x_max)
{
std::vector<const Scale*> axes;
axes.emplace_back(newEquiDivision("x", nx, x_min, x_max));
Datafield result(axes);
result.setAllTo(value);
return result;
}
Datafield UTest::GUI::makeData2D(double value, int nx, double x_min, double x_max, int ny,
double y_min, double y_max)
{
std::vector<const Scale*> axes;
axes.emplace_back(newEquiDivision("x", nx, x_min, x_max));
axes.emplace_back(newEquiDivision("y", ny, y_min, y_max));
Datafield result(axes);
result.setAllTo(value);
return result;
}
DatafileItem* UTest::GUI::createRealData1D(const QString& name, DatafilesSet& set, double value)
{
auto* dfi = new DatafileItem(name, makeData1D(value));
set.add_item(dfi);
return dfi;
}
DatafileItem* UTest::GUI::createRealData2D(const QString& name, DatafilesSet& set, double value)
{
auto* dfi = new DatafileItem(name, makeData2D(value));
set.add_item(dfi);
return dfi;
}
|