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

copy edit while reading

parent cf44658e
No related branches found
No related tags found
No related merge requests found
...@@ -229,9 +229,10 @@ SampleBuilderFactory::SampleBuilderFactory() ...@@ -229,9 +229,10 @@ SampleBuilderFactory::SampleBuilderFactory()
"LayersWithAbsorptionBuilder", "LayersWithAbsorptionBuilder",
build<LayersWithAbsorptionBuilder>, build<LayersWithAbsorptionBuilder>,
"3 layer system with absorption"); "3 layer system with absorption");
} }
//! Retrieves a SampleBuilder from the registry, does the build, and returns the result.
ISample *SampleBuilderFactory::createSample(const std::string& name) ISample *SampleBuilderFactory::createSample(const std::string& name)
{ {
return createItem(name)->buildSample(); return createItem(name)->buildSample();
......
...@@ -13,7 +13,11 @@ ...@@ -13,7 +13,11 @@
// //
// ************************************************************************** // // ************************************************************************** //
#include "PyScriptFutest.h" #include <memory>
#include <fstream>
#include <cstdio>
#include <cassert>
#include "SimulationFactory.h" #include "SimulationFactory.h"
#include "IntensityDataIOFactory.h" #include "IntensityDataIOFactory.h"
#include "IntensityDataFunctions.h" #include "IntensityDataFunctions.h"
...@@ -21,9 +25,7 @@ ...@@ -21,9 +25,7 @@
#include "BAPython.h" #include "BAPython.h"
#include "FileSystem.h" #include "FileSystem.h"
#include "Utils.h" #include "Utils.h"
#include <memory> #include "PyScriptFutest.h"
#include <fstream>
#include <cstdio>
namespace { namespace {
const std::string directory_name_for_failed_tests = "00_failed_tests"; const std::string directory_name_for_failed_tests = "00_failed_tests";
...@@ -50,10 +52,7 @@ PyScriptFutest::~PyScriptFutest() ...@@ -50,10 +52,7 @@ PyScriptFutest::~PyScriptFutest()
void PyScriptFutest::runTest() void PyScriptFutest::runTest()
{ {
if (!m_reference_simulation) assert(m_reference_simulation);
throw NullPointerException(
"AdvancedGUIFutest::runTest() -> Error. Uninitialized simulation object.");
m_reference_simulation->runSimulation(); m_reference_simulation->runSimulation();
// Generate contents of Python script // Generate contents of Python script
...@@ -70,7 +69,7 @@ void PyScriptFutest::runTest() ...@@ -70,7 +69,7 @@ void PyScriptFutest::runTest()
pythonFile << ostr.str(); pythonFile << ostr.str();
pythonFile.close(); pythonFile.close();
std::string command = std::string(BORNAGAIN_PYTHON_EXE ) + " " + m_pyscript_filename; std::string command = std::string(BORNAGAIN_PYTHON_EXE) + " " + m_pyscript_filename;
std::cout << "Core simulation will be compared with " << m_output_filename << std::cout << "Core simulation will be compared with " << m_output_filename <<
" generated by command '" << command << "'\n"; " generated by command '" << command << "'\n";
std::system(command.c_str()); // run python script, ignore return value std::system(command.c_str()); // run python script, ignore return value
...@@ -80,18 +79,15 @@ int PyScriptFutest::analyseResults() ...@@ -80,18 +79,15 @@ int PyScriptFutest::analyseResults()
{ {
const std::unique_ptr<OutputData<double> > P_domain_data( const std::unique_ptr<OutputData<double> > P_domain_data(
IntensityDataIOFactory::readOutputData(m_output_filename+".int")); IntensityDataIOFactory::readOutputData(m_output_filename+".int"));
const std::unique_ptr<OutputData<double> > P_reference_data( const std::unique_ptr<OutputData<double> > P_reference_data(
m_reference_simulation->getDetectorIntensity()); m_reference_simulation->getDetectorIntensity());
m_difference = IntensityDataFunctions::getRelativeDifference(*P_domain_data, *P_reference_data); m_difference = IntensityDataFunctions::getRelativeDifference(*P_domain_data, *P_reference_data);
m_result = m_difference > m_threshold ? FAILED_DIFF : SUCCESS; m_result = m_difference > m_threshold ? FAILED_DIFF : SUCCESS;
if (m_result != SUCCESS) { if (m_result != SUCCESS) {
// Move failed Python script to failed tests directory // Move failed Python script to failed tests directory
Utils::FileSystem::CreateDirectory(directory_name_for_failed_tests); Utils::FileSystem::CreateDirectory(directory_name_for_failed_tests);
std::rename( m_pyscript_filename.c_str(), getPyScriptFileNameAndPath().c_str()); std::rename( m_pyscript_filename.c_str(), getPyScriptFileNameAndPath().c_str());
} }
return m_result; return m_result;
} }
......
...@@ -26,7 +26,7 @@ namespace PyGenTools { ...@@ -26,7 +26,7 @@ namespace PyGenTools {
class GISASSimulation* simulation, const std::string& output_filename); class GISASSimulation* simulation, const std::string& output_filename);
BA_CORE_API_ std::string getRepresentation(const class IDistribution1D* distribution); BA_CORE_API_ std::string getRepresentation(const class IDistribution1D* distribution);
BA_CORE_API_ std::string getRepresentation( BA_CORE_API_ std::string getRepresentation(
const std::string &indent, const class Geometry::IShape2D* ishape, bool mask_value); const std::string& indent, const class Geometry::IShape2D* ishape, bool mask_value);
BA_CORE_API_ std::string printBool(double value); BA_CORE_API_ std::string printBool(double value);
BA_CORE_API_ std::string printDouble(double input); BA_CORE_API_ std::string printDouble(double input);
BA_CORE_API_ std::string printNm(double input); BA_CORE_API_ std::string printNm(double input);
......
...@@ -80,7 +80,7 @@ int IMinimizerFutest::analyseResults() ...@@ -80,7 +80,7 @@ int IMinimizerFutest::analyseResults()
% m_parameters[i].m_found_value % diff; % m_parameters[i].m_found_value % diff;
} }
std::cout << getName() << " | " << getDescription() << " | " << getTestResultString() << std::endl; std::cout << getName() << " | " << getDescription() << " | " << getTestResultString() << "\n";
return m_result; return m_result;
} }
...@@ -100,10 +100,10 @@ std::unique_ptr<FitSuite> IMinimizerFutest::createFitSuite() ...@@ -100,10 +100,10 @@ std::unique_ptr<FitSuite> IMinimizerFutest::createFitSuite()
minimizer->getOptions()->setMaxIterations(200); minimizer->getOptions()->setMaxIterations(200);
result->setMinimizer(minimizer); result->setMinimizer(minimizer);
for (size_t i = 0; i < m_parameters.size(); ++i) { for (size_t i = 0; i < m_parameters.size(); ++i) {
result->addFitParameter(m_parameters[i].m_name, m_parameters[i].m_start_value, result->addFitParameter(
AttLimits::lowerLimited(0.01), m_parameters[i].m_start_value / 100.); m_parameters[i].m_name, m_parameters[i].m_start_value,
AttLimits::lowerLimited(0.01), m_parameters[i].m_start_value / 100.);
} }
return std::move(result); return std::move(result);
} }
......
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