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

Adjust reflectometry fitting examples to the new interface

parent c5d0fca8
No related branches found
No related tags found
No related merge requests found
> API changes:
1) Python: major changes in SpecularSimulation interface. Please consult web-documentation for details.
BornAgain-1.15.0, released 2019.02.25
> API changes:
1) Python: method getAlphaAxis renamed into coordinateAxis in SpecularSimulation
......
......@@ -94,7 +94,8 @@ def get_simulation(params):
wavelength = 1.54 * ba.angstrom # beam wavelength
simulation = ba.SpecularSimulation()
simulation.setBeamParameters(wavelength, get_real_data_axis())
scan = ba.AngularSpecScan(wavelength, get_real_data_axis())
simulation.setScan(scan)
simulation.setSample(get_sample(params))
return simulation
......
......@@ -90,13 +90,15 @@ def create_simulation(arg_dict, bin_start, bin_end):
Creates and returns specular simulation
"""
simulation = ba.SpecularSimulation()
alpha_distr = ba.DistributionGaussian(0.0, arg_dict["divergence"])
scan = ba.AngularSpecScan(1.54 * ba.angstrom,
get_real_data_axis(bin_start, bin_end))
footprint = ba.FootprintFactorGaussian(arg_dict["footprint_factor"])
simulation.setBeamParameters(1.54 * ba.angstrom,
get_real_data_axis(bin_start, bin_end), footprint)
scan.setFootprintFactor(footprint)
simulation.setScan(scan)
simulation.setBeamIntensity(arg_dict["intensity"])
alpha_distr = ba.DistributionGaussian(0.0, arg_dict["divergence"])
simulation.addParameterDistribution("*/Beam/InclinationAngle", alpha_distr,
30, 3)
30, 3)
return simulation
......
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