BOSS 7.1.3
BESIII Offline Software System
Loading...
Searching...
No Matches
BabayagaNLORandom Class Reference

#include <BabayagaNLORandom.h>

Static Public Member Functions

static double Flat (double min, double max)
 
static double Flat (double max)
 
static double Flat ()
 
static void FlatArray (double *vect, const int size)
 
static void FlatArrayF (float *vect, const int size)
 
static double random ()
 
static void setRandomEngine (CLHEP::HepRandomEngine *randomEngine)
 

Detailed Description

Definition at line 27 of file BabayagaNLORandom.h.

Member Function Documentation

◆ Flat() [1/3]

double BabayagaNLORandom::Flat ( )
static

Definition at line 69 of file BabayagaNLORandom.cxx.

69 {
70
72
73 }
static double random()

◆ Flat() [2/3]

double BabayagaNLORandom::Flat ( double max)
static

Definition at line 63 of file BabayagaNLORandom.cxx.

63 {
64
66
67}

◆ Flat() [3/3]

double BabayagaNLORandom::Flat ( double min,
double max )
static

Definition at line 50 of file BabayagaNLORandom.cxx.

50 {
51
52 if ( min > max ) {
53 cerr<< "min>max in BabayagaNLORandom::Flat(" << min << "," << max << ")" <<endl;
54 double tmp = min;
55 min = max;
56 max = tmp;
57 }
58
59 return BabayagaNLORandom::random()*( max - min )+min;
60
61}

◆ FlatArray()

void BabayagaNLORandom::FlatArray ( double * vect,
const int size )
static

Definition at line 75 of file BabayagaNLORandom.cxx.

75 {
76 if(_randomEngine == 0)
77 cout<<"Can not get randomEngine pointer in BabayagaNLORandom::FlatArray"<<endl;
78 else {
79 _randomEngine->flatArray(size,vect);
80 }
81}

Referenced by babayaga_ranluxd_().

◆ FlatArrayF()

void BabayagaNLORandom::FlatArrayF ( float * vect,
const int size )
static

Definition at line 83 of file BabayagaNLORandom.cxx.

83 {
84
85 if(_randomEngine == 0) {
86 cout<<"Can not get randomEngine pointer in BabayagaNLORandom::FlatArray"<<endl;
87 return;
88 }
89 else {
90 for (int ir=0; ir<size; ir++)
91 vect[ir] = _randomEngine->flat();
92 }
93
94}

Referenced by babayaga_ranlux_().

◆ random()

double BabayagaNLORandom::random ( )
static

Definition at line 38 of file BabayagaNLORandom.cxx.

38 {
39
40 if (_randomEngine==0){
41 cerr <<"No random engine available in "
42 <<"BabayagaNLORandom::random()."<<endl;
43 }
44
45 return _randomEngine->flat();
46 }

Referenced by Flat(), Flat(), and Flat().

◆ setRandomEngine()

void BabayagaNLORandom::setRandomEngine ( CLHEP::HepRandomEngine * randomEngine)
static

Definition at line 33 of file BabayagaNLORandom.cxx.

33 {
34 _randomEngine=randomEngine;
35}

Referenced by BabayagaNLO::initialize().


The documentation for this class was generated from the following files: