BOSS 7.1.1
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtStdlibRandomEngine.hh
Go to the documentation of this file.
1/*******************************************************************************
2 * Project: BaBar detector at the SLAC PEP-II B-factory
3 * Package: EvtGenBase
4 * File: $Id: EvtStdlibRandomEngine.hh,v 1.1.1.2 2007/10/26 05:03:14 pingrg Exp $
5 * Author: Alexei Dvoretskii, [email protected], 2001-2002
6 *
7 * Copyright (C) 2002 Caltech
8 *******************************************************************************/
9
10/*
11 * Interface to stdlib's random number generator
12 */
13
14#ifndef EVT_STDLIB_RANDOM_ENGINE_HH
15#define EVT_STDLIB_RANDOM_ENGINE_HH
16
17#include <stdlib.h>
19
21public:
22
23 void setSeed(unsigned int seed)
24 {
25 srand(seed);
26 }
27
28 virtual double random()
29 {
30 double x = rand();
31 double y = RAND_MAX;
32 return x/y;
33 }
34};
35
36#endif
37
38
Double_t x[10]
void setSeed(unsigned int seed)
double y[1000]