Compatibility engine for Lüscher's ranlxs implementation written in C.
Definition at line 175 of file RanluxppEngine.h.
Public Member Functions | |
RanluxppCompatEngineLuescherRanlxs (uint64_t seed=314159265) | |
~RanluxppCompatEngineLuescherRanlxs () override | |
uint64_t | IntRndm () |
Generate a random integer value with 24 bits. | |
double | operator() () |
Generate a floating point random number (non-virtual method) | |
double | Rndm () override |
Generate a floating point random number with 24 bits of randomness. | |
void | SetSeed (uint64_t seed) |
Initialize and seed the state of the generator. | |
void | Skip (uint64_t n) |
Skip n random numbers without generating them. | |
Public Member Functions inherited from ROOT::Math::TRandomEngine | |
virtual | ~TRandomEngine () |
Static Public Member Functions | |
static const char * | Name () |
Get name of the generator. | |
Private Types | |
using | ImplType = RanluxppCompatEngineLuescherImpl< 24, p > |
Private Attributes | |
std::unique_ptr< ImplType > | fImpl |
#include <Math/RanluxppEngine.h>
|
private |
Definition at line 178 of file RanluxppEngine.h.
ROOT::Math::RanluxppCompatEngineLuescherRanlxs< p >::RanluxppCompatEngineLuescherRanlxs | ( | uint64_t | seed = 314159265 | ) |
Definition at line 663 of file RanluxppEngineImpl.cxx.
|
overridedefault |
uint64_t ROOT::Math::RanluxppCompatEngineLuescherRanlxs< p >::IntRndm |
Generate a random integer value with 24 bits.
Definition at line 684 of file RanluxppEngineImpl.cxx.
|
inlinestatic |
Get name of the generator.
Definition at line 198 of file RanluxppEngine.h.
double ROOT::Math::RanluxppCompatEngineLuescherRanlxs< p >::operator() |
Generate a floating point random number (non-virtual method)
Definition at line 678 of file RanluxppEngineImpl.cxx.
|
overridevirtual |
Generate a floating point random number with 24 bits of randomness.
Implements ROOT::Math::TRandomEngine.
Definition at line 672 of file RanluxppEngineImpl.cxx.
void ROOT::Math::RanluxppCompatEngineLuescherRanlxs< p >::SetSeed | ( | uint64_t | seed | ) |
Initialize and seed the state of the generator.
Definition at line 690 of file RanluxppEngineImpl.cxx.
void ROOT::Math::RanluxppCompatEngineLuescherRanlxs< p >::Skip | ( | uint64_t | n | ) |
Skip n
random numbers without generating them.
Definition at line 696 of file RanluxppEngineImpl.cxx.
|
private |
Definition at line 179 of file RanluxppEngine.h.