public class BreitWigner extends AbstractContinousDoubleDistribution
Instance methods operate on a user supplied uniform random number generator; they are unsynchronized.
Implementation: This is a port of RandBreitWigner used in CLHEP 1.4.0 (C++).
Constructor and Description |
---|
BreitWigner(double mean,
double gamma,
double cut,
DoubleRandomEngine randomGenerator)
Constructs a BreitWigner distribution.
|
Modifier and Type | Method and Description |
---|---|
double |
nextDouble()
Returns a random number from the distribution.
|
double |
nextDouble(double mean,
double gamma,
double cut)
Returns a random number from the distribution; bypasses the internal
state.
|
void |
setState(double mean,
double gamma,
double cut)
Sets the mean, gamma and cut parameters.
|
static double |
staticNextDouble(double mean,
double gamma,
double cut)
Returns a random number from the distribution.
|
String |
toString()
Returns a String representation of the receiver.
|
apply, apply, clone, makeDefaultGenerator, nextInt
public BreitWigner(double mean, double gamma, double cut, DoubleRandomEngine randomGenerator)
cut
- cut==Double.NEGATIVE_INFINITY indicates "don't cut".public double nextDouble()
nextDouble
in class AbstractDoubleDistribution
public double nextDouble(double mean, double gamma, double cut)
cut
- cut==Double.NEGATIVE_INFINITY indicates "don't cut".public void setState(double mean, double gamma, double cut)
cut
- cut==Double.NEGATIVE_INFINITY indicates "don't cut".public static double staticNextDouble(double mean, double gamma, double cut)
cut
- cut==Double.NEGATIVE_INFINITY indicates "don't cut".Jump to the Parallel Colt Homepage