Skip to content
Snippets Groups Projects
Commit 4c50b8f5 authored by Yurov, Dmitry's avatar Yurov, Dmitry
Browse files

Introduced DomainObjectBuilder::createUnitConverter

Redmine: #2030
For later use in JobItemUtils
parent eb8fa10e
No related branches found
No related tags found
No related merge requests found
...@@ -13,15 +13,22 @@ ...@@ -13,15 +13,22 @@
// ************************************************************************** // // ************************************************************************** //
#include "DomainObjectBuilder.h" #include "DomainObjectBuilder.h"
#include "AxesItems.h"
#include "BeamItems.h" #include "BeamItems.h"
#include "ComboProperty.h" #include "ComboProperty.h"
#include "GUIHelpers.h" #include "GUIHelpers.h"
#include "IDetector2D.h"
#include "InstrumentItems.h" #include "InstrumentItems.h"
#include "InterferenceFunctionItems.h" #include "InterferenceFunctionItems.h"
#include "LayerItem.h" #include "LayerItem.h"
#include "ParticleDistributionItem.h" #include "ParticleDistributionItem.h"
#include "ParticleLayoutItem.h" #include "ParticleLayoutItem.h"
#include "SimpleUnitConverters.h"
#include "SpecularBeamInclinationItem.h"
#include "TransformToDomain.h" #include "TransformToDomain.h"
#include "UnitConverter1D.h"
#include "UnitConverterUtils.h"
#include "Units.h"
std::unique_ptr<MultiLayer> DomainObjectBuilder::buildMultiLayer(const SessionItem& multilayer_item) std::unique_ptr<MultiLayer> DomainObjectBuilder::buildMultiLayer(const SessionItem& multilayer_item)
{ {
...@@ -123,3 +130,34 @@ DomainObjectBuilder::buildInstrument(const InstrumentItem& instrumentItem) ...@@ -123,3 +130,34 @@ DomainObjectBuilder::buildInstrument(const InstrumentItem& instrumentItem)
{ {
return instrumentItem.createInstrument(); return instrumentItem.createInstrument();
} }
std::unique_ptr<IUnitConverter>
DomainObjectBuilder::createUnitConverter(const InstrumentItem* instrumentItem)
{
const auto instrument = instrumentItem->createInstrument();
instrument->initDetector();
if (instrumentItem->modelType() == Constants::GISASInstrumentType)
return UnitConverterUtils::createConverterForGISAS(*instrument);
if (instrumentItem->modelType() == Constants::SpecularInstrumentType)
{
auto axis_item = dynamic_cast<BasicAxisItem*>(
instrumentItem->beamItem()
->getItem(SpecularBeamItem::P_INCLINATION_ANGLE)
->getItem(SpecularBeamInclinationItem::P_ALPHA_AXIS));
return std::make_unique<UnitConverter1D>(instrument->getBeam(),
*axis_item->createAxis(Units::degree));
}
if (instrumentItem->modelType() == Constants::OffSpecInstrumentType) {
auto axis_item = dynamic_cast<BasicAxisItem*>(
instrumentItem->getItem(OffSpecInstrumentItem::P_ALPHA_AXIS));
const auto detector2d = dynamic_cast<const IDetector2D*>(instrument->getDetector());
return std::make_unique<OffSpecularConverter>(*detector2d, instrument->getBeam(),
*axis_item->createAxis(Units::degree));
}
throw GUIHelpers::Error(
"Error in DomainObjectBuilder::createUnitConverter: unknown instrument type.");
}
...@@ -25,6 +25,7 @@ class ParticleLayout; ...@@ -25,6 +25,7 @@ class ParticleLayout;
class IInterferenceFunction; class IInterferenceFunction;
class SessionItem; class SessionItem;
class InstrumentItem; class InstrumentItem;
class IUnitConverter;
namespace DomainObjectBuilder namespace DomainObjectBuilder
{ {
...@@ -34,6 +35,10 @@ BA_CORE_API_ std::unique_ptr<ParticleLayout> buildParticleLayout(const SessionIt ...@@ -34,6 +35,10 @@ BA_CORE_API_ std::unique_ptr<ParticleLayout> buildParticleLayout(const SessionIt
BA_CORE_API_ std::unique_ptr<IInterferenceFunction> BA_CORE_API_ std::unique_ptr<IInterferenceFunction>
buildInterferenceFunction(const SessionItem& item); buildInterferenceFunction(const SessionItem& item);
BA_CORE_API_ std::unique_ptr<Instrument> buildInstrument(const InstrumentItem& instrumentItem); BA_CORE_API_ std::unique_ptr<Instrument> buildInstrument(const InstrumentItem& instrumentItem);
//! Creates a unit converter corresponding to the given instrument item
BA_CORE_API_ std::unique_ptr<IUnitConverter>
createUnitConverter(const InstrumentItem* instrumentItem);
}; };
#endif // DOMAINOBJECTBUILDER_H #endif // DOMAINOBJECTBUILDER_H
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