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
b080ec4d
Commit
b080ec4d
authored
6 years ago
by
Yurov, Dmitry
Browse files
Options
Downloads
Patches
Plain Diff
Make all the necessary constructors of ranged distributions visible from python
parent
8b55ffc6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Core/Parametrization/RangedDistributions.cpp
+70
-0
70 additions, 0 deletions
Core/Parametrization/RangedDistributions.cpp
Core/Parametrization/RangedDistributions.h
+46
-6
46 additions, 6 deletions
Core/Parametrization/RangedDistributions.h
with
116 additions
and
6 deletions
Core/Parametrization/RangedDistributions.cpp
+
70
−
0
View file @
b080ec4d
...
...
@@ -114,6 +114,20 @@ void RangedDistribution::checkInitialization()
"shall not exceed the upper one."
);
}
RangedDistributionGate
::
RangedDistributionGate
()
:
RangedDistribution
()
{}
RangedDistributionGate
::
RangedDistributionGate
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
limits
)
{
}
RangedDistributionGate
::
RangedDistributionGate
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
min
,
max
)
{
}
RangedDistributionGate
*
RangedDistributionGate
::
clone
()
const
{
return
makeCopy
(
*
this
).
release
();
...
...
@@ -132,6 +146,20 @@ RangedDistributionGate::distribution_impl(double mean, double stddev) const
return
std
::
make_unique
<
DistributionGate
>
(
x_min
,
x_max
);
}
RangedDistributionLorentz
::
RangedDistributionLorentz
()
:
RangedDistribution
()
{}
RangedDistributionLorentz
::
RangedDistributionLorentz
(
size_t
n_samples
,
double
hwhm_factor
,
const
RealLimits
&
limits
)
:
RangedDistribution
(
n_samples
,
hwhm_factor
,
limits
)
{
}
RangedDistributionLorentz
::
RangedDistributionLorentz
(
size_t
n_samples
,
double
hwhm_factor
,
double
min
,
double
max
)
:
RangedDistribution
(
n_samples
,
hwhm_factor
,
min
,
max
)
{
}
RangedDistributionLorentz
*
RangedDistributionLorentz
::
clone
()
const
{
return
makeCopy
(
*
this
).
release
();
...
...
@@ -148,6 +176,20 @@ RangedDistributionLorentz::distribution_impl(double median, double hwhm) const
return
std
::
make_unique
<
DistributionLorentz
>
(
median
,
hwhm
);
}
RangedDistributionGaussian
::
RangedDistributionGaussian
()
:
RangedDistribution
()
{}
RangedDistributionGaussian
::
RangedDistributionGaussian
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
limits
)
{
}
RangedDistributionGaussian
::
RangedDistributionGaussian
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
min
,
max
)
{
}
RangedDistributionGaussian
*
RangedDistributionGaussian
::
clone
()
const
{
return
makeCopy
(
*
this
).
release
();
...
...
@@ -164,6 +206,20 @@ RangedDistributionGaussian::distribution_impl(double mean, double stddev) const
return
std
::
make_unique
<
DistributionGaussian
>
(
mean
,
stddev
);
}
RangedDistributionLogNormal
::
RangedDistributionLogNormal
()
:
RangedDistribution
()
{}
RangedDistributionLogNormal
::
RangedDistributionLogNormal
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
limits
)
{
}
RangedDistributionLogNormal
::
RangedDistributionLogNormal
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
min
,
max
)
{
}
RangedDistributionLogNormal
*
RangedDistributionLogNormal
::
clone
()
const
{
return
makeCopy
(
*
this
).
release
();
...
...
@@ -187,6 +243,20 @@ RangedDistributionLogNormal::distribution_impl(double mean, double stddev) const
return
std
::
make_unique
<
DistributionLogNormal
>
(
median
,
scale
);
}
RangedDistributionCosine
::
RangedDistributionCosine
()
:
RangedDistribution
()
{}
RangedDistributionCosine
::
RangedDistributionCosine
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
limits
)
{
}
RangedDistributionCosine
::
RangedDistributionCosine
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
)
:
RangedDistribution
(
n_samples
,
sigma_factor
,
min
,
max
)
{
}
RangedDistributionCosine
*
RangedDistributionCosine
::
clone
()
const
{
return
makeCopy
(
*
this
).
release
();
...
...
This diff is collapsed.
Click to expand it.
Core/Parametrization/RangedDistributions.h
+
46
−
6
View file @
b080ec4d
...
...
@@ -41,7 +41,7 @@ public:
const
RealLimits
&
limits
=
RealLimits
::
limitless
());
//! Initializes Ranged distribution with given number of samples, sigma factor
//! (range in standard deviations to take into account during sample generation)
//! and limits (either RealLimits object or just min and max
values for such an object
).
//! and limits (either RealLimits object or just min and max
limits
).
//! By default _n_samples_ = 5, _sigma_factor_ = 2.0, while the limits are (-inf, +inf).
RangedDistribution
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
);
RangedDistribution
*
clone
()
const
override
=
0
;
...
...
@@ -97,7 +97,15 @@ private:
class
BA_CORE_API_
RangedDistributionGate
:
public
RangedDistribution
{
public:
using
RangedDistribution
::
RangedDistribution
;
RangedDistributionGate
();
RangedDistributionGate
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
=
RealLimits
::
limitless
());
//! Initializes Ranged distribution with given number of samples, sigma factor
//! (range in standard deviations to take into account during sample generation)
//! and limits (either RealLimits object or just min and max limits).
//! By default _n_samples_ = 5, _sigma_factor_ = 2.0, while the limits are (-inf, +inf).
RangedDistributionGate
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
);
RangedDistributionGate
*
clone
()
const
override
;
~
RangedDistributionGate
()
override
=
default
;
...
...
@@ -115,7 +123,15 @@ protected:
class
BA_CORE_API_
RangedDistributionLorentz
:
public
RangedDistribution
{
public:
using
RangedDistribution
::
RangedDistribution
;
RangedDistributionLorentz
();
RangedDistributionLorentz
(
size_t
n_samples
,
double
hwhm_factor
,
const
RealLimits
&
limits
=
RealLimits
::
limitless
());
//! Initializes Ranged distribution with given number of samples, sigma factor
//! (range in standard deviations to take into account during sample generation)
//! and limits (either RealLimits object or just min and max limits).
//! By default _n_samples_ = 5, _hwhm_factor_ = 2.0, while the limits are (-inf, +inf).
RangedDistributionLorentz
(
size_t
n_samples
,
double
hwhm_factor
,
double
min
,
double
max
);
RangedDistributionLorentz
*
clone
()
const
override
;
~
RangedDistributionLorentz
()
override
=
default
;
...
...
@@ -133,7 +149,15 @@ protected:
class
BA_CORE_API_
RangedDistributionGaussian
:
public
RangedDistribution
{
public:
using
RangedDistribution
::
RangedDistribution
;
RangedDistributionGaussian
();
RangedDistributionGaussian
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
=
RealLimits
::
limitless
());
//! Initializes Ranged distribution with given number of samples, sigma factor
//! (range in standard deviations to take into account during sample generation)
//! and limits (either RealLimits object or just min and max limits).
//! By default _n_samples_ = 5, _sigma_factor_ = 2.0, while the limits are (-inf, +inf).
RangedDistributionGaussian
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
);
RangedDistributionGaussian
*
clone
()
const
override
;
~
RangedDistributionGaussian
()
override
=
default
;
...
...
@@ -151,7 +175,15 @@ protected:
class
BA_CORE_API_
RangedDistributionLogNormal
:
public
RangedDistribution
{
public:
using
RangedDistribution
::
RangedDistribution
;
RangedDistributionLogNormal
();
RangedDistributionLogNormal
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
=
RealLimits
::
limitless
());
//! Initializes Ranged distribution with given number of samples, sigma factor
//! (range in standard deviations to take into account during sample generation)
//! and limits (either RealLimits object or just min and max limits).
//! By default _n_samples_ = 5, _sigma_factor_ = 2.0, while the limits are (-inf, +inf).
RangedDistributionLogNormal
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
);
RangedDistributionLogNormal
*
clone
()
const
override
;
~
RangedDistributionLogNormal
()
override
=
default
;
...
...
@@ -169,7 +201,15 @@ protected:
class
BA_CORE_API_
RangedDistributionCosine
:
public
RangedDistribution
{
public:
using
RangedDistribution
::
RangedDistribution
;
RangedDistributionCosine
();
RangedDistributionCosine
(
size_t
n_samples
,
double
sigma_factor
,
const
RealLimits
&
limits
=
RealLimits
::
limitless
());
//! Initializes Ranged distribution with given number of samples, sigma factor
//! (range in standard deviations to take into account during sample generation)
//! and limits (either RealLimits object or just min and max limits).
//! By default _n_samples_ = 5, _sigma_factor_ = 2.0, while the limits are (-inf, +inf).
RangedDistributionCosine
(
size_t
n_samples
,
double
sigma_factor
,
double
min
,
double
max
);
RangedDistributionCosine
*
clone
()
const
override
;
~
RangedDistributionCosine
()
override
=
default
;
...
...
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