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
3b01893c
Commit
3b01893c
authored
6 years ago
by
Yurov, Dmitry
Browse files
Options
Downloads
Patches
Plain Diff
Add SpecularSimulation::setScan method
parent
24472220
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
Core/Simulation/SpecularSimulation.cpp
+19
-0
19 additions, 0 deletions
Core/Simulation/SpecularSimulation.cpp
Core/Simulation/SpecularSimulation.h
+3
-0
3 additions, 0 deletions
Core/Simulation/SpecularSimulation.h
with
22 additions
and
0 deletions
Core/Simulation/SpecularSimulation.cpp
+
19
−
0
View file @
3b01893c
...
...
@@ -89,6 +89,25 @@ SimulationResult SpecularSimulation::result() const
return
SimulationResult
(
*
data
,
*
converter
);
}
void
SpecularSimulation
::
setScan
(
const
ISpecularScan
&
scan
)
{
// TODO: move inside AngularSpecScan when pointwise resolution is implemented
if
(
scan
.
coordinateAxis
()
->
getMin
()
<
0.0
)
throw
std
::
runtime_error
(
"Error in SpecularSimulation::setScan: minimum value on coordinate axis is negative."
);
m_data_handler
.
reset
(
scan
.
clone
());
SpecularDetector1D
detector
(
*
scan
.
coordinateAxis
());
m_instrument
.
setDetector
(
detector
);
// TODO: remove when pointwise resolution is implemented
if
(
scan
.
dataType
()
==
ISpecularScan
::
angle
)
{
const
auto
&
angular_scan
=
static_cast
<
const
AngularSpecScan
&>
(
scan
);
m_instrument
.
setBeamParameters
(
angular_scan
.
wavelength
(),
zero_alpha_i
,
zero_phi_i
);
}
}
void
SpecularSimulation
::
setBeamParameters
(
double
lambda
,
const
IAxis
&
alpha_axis
,
const
IFootprintFactor
*
beam_shape
)
{
...
...
This diff is collapsed.
Click to expand it.
Core/Simulation/SpecularSimulation.h
+
3
−
0
View file @
3b01893c
...
...
@@ -53,6 +53,9 @@ public:
//! zeros.
SimulationResult
result
()
const
override
;
//! Sets chosen specular scan to the simulation.
void
setScan
(
const
ISpecularScan
&
scan
);
void
setBeamParameters
(
double
lambda
,
int
nbins
,
double
alpha_i_min
,
double
alpha_i_max
,
const
IFootprintFactor
*
beam_shape
=
nullptr
);
void
setBeamParameters
(
double
lambda
,
std
::
vector
<
double
>
incident_angle_values
,
...
...
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