-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
824a684
commit 433062c
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -914,13 +914,18 @@ def sigmaR ( self ) : | |
models.append ( Apollonios2_pdf ) | ||
# ============================================================================= | ||
## @class BifurcatedGauss_pdf | ||
# Aka a split normal distribution | ||
# @see https://en.wikipedia.org/wiki/Split_normal_distribution | ||
# simple wrapper over bifurcated-gaussian | ||
# @see RooGaussian | ||
# @author Vanya BELYAEV [email protected] | ||
# @date 2011-07-25 | ||
class BifurcatedGauss_pdf(PEAK) : | ||
"""Bifurcated Gauss function | ||
Aka a split normal distribution | ||
- see https://en.wikipedia.org/wiki/Split_normal_distribution | ||
f(x; mu, sigma_l, sigma_r ) ~ exp ( -0.5 * dx^2 ) | ||
with | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,9 @@ namespace Ostap | |
{ | ||
// ======================================================================== | ||
/** @class BifurcatedGauss | ||
* simple representation of bifurcated gaussian function | ||
* Aka a split normal distribution | ||
* @see https://en.wikipedia.org/wiki/Split_normal_distribution | ||
* simple representation of bifurcated gaussian function/ | ||
* @author Vanya Belyaev [email protected] | ||
* @date 2011-04-19 | ||
*/ | ||
|