Skip to content
Snippets Groups Projects
Commit cd453cac authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

remove internal GSL tar file

git-svn-id: http://root.cern.ch/svn/root/trunk@15719 27541ba8-7e3a-0410-8455-c3a389f83636
parent ccee2ef1
No related branches found
No related tags found
No related merge requests found
// @(#)root/mathmore:$Name: $:$Id: GSLInterpolator.cxx,v 1.2 2005/10/18 10:11:51 moneta Exp $
// @(#)root/mathmore:$Name: $:$Id: GSLInterpolator.cxx,v 1.3 2006/06/16 10:34:08 moneta Exp $
// Authors: L. Moneta, A. Zsenei 08/2005
/**********************************************************************
......@@ -38,10 +38,10 @@ namespace Math {
GSLInterpolator::GSLInterpolator (const Interpolation::Type type, const std::vector<double> & x, const std::vector<double> & y)
{
{
// constructor given type and vectors of (x,y) points
const gsl_interp_type* interpType = 0 ;
switch ( type )
switch ( type )
{
case ROOT::Math::Interpolation::LINEAR :
interpType = gsl_interp_linear;
......@@ -51,15 +51,15 @@ GSLInterpolator::GSLInterpolator (const Interpolation::Type type, const std::vec
interpType = gsl_interp_polynomial;
fName = "Polynomial";
break ;
// to be implemented : dpened on GSL linear algebra
// case ROOT::Math::Interpolation::CSPLINE :
// interpType = gsl_interp_cspline ;
// fName = "Cspline";
// break ;
// case ROOT::Math::Interpolation::CSPLINE_PERIODIC :
// interpType = gsl_interp_cspline_periodic ;
// fName = "Cspline_Periodic";
// break ;
// dpened on GSL linear algebra
case ROOT::Math::Interpolation::CSPLINE :
interpType = gsl_interp_cspline ;
fName = "Cspline";
break ;
case ROOT::Math::Interpolation::CSPLINE_PERIODIC :
interpType = gsl_interp_cspline_periodic ;
fName = "Cspline_Periodic";
break ;
case ROOT::Math::Interpolation::AKIMA :
interpType = gsl_interp_akima;
fName = "Akima";
......@@ -69,8 +69,8 @@ GSLInterpolator::GSLInterpolator (const Interpolation::Type type, const std::vec
fName = "Akima_Periodic";
break ;
default :
// interpType = gsl_interp_cspline
interpType = gsl_interp_akima;
interpType = gsl_interp_cspline;
// interpType = gsl_interp_akima;
fName = "Akima";
break ;
}
......
// @(#)root/mathmore:$Name: $:$Id: GSLRndmEngines.cxx,v 1.2 2006/05/26 14:30:17 moneta Exp $
// @(#)root/mathmore:$Name: $:$Id: GSLRndmEngines.cxx,v 1.3 2006/06/19 08:44:08 moneta Exp $
// Authors: L. Moneta, A. Zsenei 08/2005
/**********************************************************************
......@@ -186,7 +186,7 @@ namespace Math {
double GSLRandomEngine::Gaussian(double sigma)
{
// Gaussian distribution
//#define HAVE_GSL18
#define HAVE_GSL18
#ifdef HAVE_GSL18
return gsl_ran_gaussian_ziggurat( fRng->Rng(), sigma);
#else
......
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment