Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
4c50b8f5
Commit
4c50b8f5
authored
6 years ago
by
Yurov, Dmitry
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/coregui/Models/DomainObjectBuilder.cpp
+38
-0
38 additions, 0 deletions
GUI/coregui/Models/DomainObjectBuilder.cpp
GUI/coregui/Models/DomainObjectBuilder.h
+5
-0
5 additions, 0 deletions
GUI/coregui/Models/DomainObjectBuilder.h
with
43 additions
and
0 deletions
GUI/coregui/Models/DomainObjectBuilder.cpp
+
38
−
0
View file @
4c50b8f5
...
@@ -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."
);
}
This diff is collapsed.
Click to expand it.
GUI/coregui/Models/DomainObjectBuilder.h
+
5
−
0
View file @
4c50b8f5
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment