OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
functions.h
Go to the documentation of this file.
1 /* functions.h
2  implementation of special functions
3 
4  Project: Beam Envelope Tracker (BET)
5 
6  Revision history
7  Date Description Programmer
8  ------------ -------------------------------------------- --------------
9  09-03-06 Created Rene Bakker
10 
11  Last Revision:
12  $Id: functions.h 29 2007-04-14 17:03:18Z l_bakker $
13 */
14 
15 
16 #ifndef _FUNCTIONS_DEF
17 #define _FUNCTIONS_DEF
18 
19 /* besselj()
20  Interger bessel function of the first kind
21  n = 0, 1, ......
22 */
23 double bessj(int n, double x);
24 
25 /* complementary error function */
26 double errfc(double x);
27 
28 #endif
double bessj(int n, double x)
Definition: functions.cpp:83
double errfc(double x)
Definition: functions.cpp:146