All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GSLAdaptersTest.cpp File Reference

test file for GSLFunAdapters More...

#include <stdio.h>
#include <iostream>
#include "GaudiMath/GaudiMath.h"
#include "gsl/gsl_sf_bessel.h"
Include dependency graph for GSLAdaptersTest.cpp:

Go to the source code of this file.

Functions

int main ()
 

Detailed Description

test file for GSLFunAdapters

Date
2004-03-06 Vanya BELYAEV Ivan..nosp@m.Bely.nosp@m.aev@i.nosp@m.tep..nosp@m.ru

Definition in file GSLAdaptersTest.cpp.

Function Documentation

int main ( )

regular bessel function I0 with simplest adaptor

regular bessel function I1 with 'result' frm of adaptor

Definition at line 25 of file GSLAdaptersTest.cpp.

26 {
27 
29  const GaudiMath::Function& I0 = GaudiMath::adapter( gsl_sf_bessel_I0 ) ;
31  const GaudiMath::Function& I1 = GaudiMath::adapter( gsl_sf_bessel_I1_e ) ;
32 
33  for( int i = 0 ; i < 20 ; ++i )
34  {
35  const double x = double(i) * 1 / 20.0 ;
36  const double x0 = I0( x ) ;
37  const double x1 = I1( x ) ;
38  printf( " x = %+8.4f I0=%15.8f I1=%15.8f \n" , x , x0 , x1 );
39  };
40 
41 
42  exit(0);
43 }
Genfun::AbsFunction Function
Definition: GaudiMath.h:26
GAUDI_API AIDAFunction adapter(const AIDA::IFunction &function)
Definition: Adapters.cpp:28
list i
Definition: ana.py:128