GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
random-coll.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef random_coll_h
15#define random_coll_h
16
17 double p_dBeta (double a,double b, unsigned int *seed);
18 int p_iBinomial (double p,int n,unsigned int *seed);
19 double p_dExponential (double lambda,unsigned int *seed);
20 double p_dGammaInt (int a,unsigned int *seed);
21 double p_dGammaGen (double A,unsigned *seed);
22 int p_iGeometric (double p,unsigned int *seed);
23 double p_dNormal (double mean,double sigma, unsigned int *seed);
24 int p_iPoisson(double mu,unsigned *seed);
25 unsigned p_iUniform (unsigned *seed);
26 double p_dUniform(unsigned *seed);
27
28#endif
double p_dUniform(unsigned *seed)
double p_dNormal(double mean, double sigma, unsigned int *seed)
int p_iBinomial(double p, int n, unsigned int *seed)
unsigned p_iUniform(unsigned *seed)
double p_dGammaInt(int a, unsigned int *seed)
int p_iGeometric(double p, unsigned int *seed)
double p_dExponential(double lambda, unsigned int *seed)
int p_iPoisson(double mu, unsigned *seed)
double p_dGammaGen(double A, unsigned *seed)
double p_dBeta(double a, double b, unsigned int *seed)