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
0f3972ca
Commit
0f3972ca
authored
2 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
expand wl
parent
e9d8d640
No related branches found
No related tags found
1 merge request
!1296
In scan constructor, interpret limits as scan points, not as bin edges (#423)
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Sim/Scan/AlphaScan.h
+2
-2
2 additions, 2 deletions
Sim/Scan/AlphaScan.h
with
2 additions
and
2 deletions
Sim/Scan/AlphaScan.h
+
2
−
2
View file @
0f3972ca
...
...
@@ -26,13 +26,13 @@ class IScanResolution;
//! Features footprint correction.
class
AlphaScan
:
public
ISpecularScan
{
public:
AlphaScan
(
double
w
l
,
const
IAxis
&
inc_angle
);
AlphaScan
(
double
w
avelength
,
const
IAxis
&
inc_angle
);
//! Sets angle-defined specular scan. The first parameter is always a wavelength in nm.
//! Second parameter is either a numpy array of incident angles in radians or an IAxis object
//! with angle values. Alternatively an axis can be defined in-place, then
//! the second passed parameter is the number of bins, third - minimum on-axis angle value,
//! fourth - maximum on-axis angle value.
AlphaScan
(
double
w
l
,
int
nbins
,
double
alpha_i_min
,
double
alpha_i_max
);
AlphaScan
(
double
w
avelength
,
int
nbins
,
double
alpha_i_min
,
double
alpha_i_max
);
~
AlphaScan
()
override
;
AlphaScan
*
clone
()
const
override
;
...
...
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