Skip to content
Snippets Groups Projects
Commit 0f3972ca authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

expand wl

parent e9d8d640
No related branches found
No related tags found
1 merge request!1296In scan constructor, interpret limits as scan points, not as bin edges (#423)
......@@ -26,13 +26,13 @@ class IScanResolution;
//! Features footprint correction.
class AlphaScan : public ISpecularScan {
public:
AlphaScan(double wl, const IAxis& inc_angle);
AlphaScan(double wavelength, 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 wl, int nbins, double alpha_i_min, double alpha_i_max);
AlphaScan(double wavelength, int nbins, double alpha_i_min, double alpha_i_max);
~AlphaScan() override;
AlphaScan* clone() const override;
......
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