PandaRoot
ranlxs.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 
14 /*******************************************************************************
15  *
16  * file ranlxs.h
17  *
18  * Copyright (C) 2005 Martin Luescher
19  *
20  * This software is distributed under the terms of the GNU General Public
21  * License (GPL)
22  *
23  *******************************************************************************/
24 
25 #ifndef RANLXS_H
26 #define RANLXS_H
27 
28 extern void ranlxs(float r[], int n);
29 extern void rlxs_init(int level, int seed);
30 extern int rlxs_size(void);
31 extern void rlxs_get(int state[]);
32 extern void rlxs_reset(int state[]);
33 
34 #endif
void ranlxs(float r[], int n)
void rlxs_init(int level, int seed)
void rlxs_get(int state[])
int rlxs_size(void)
void rlxs_reset(int state[])