GSL, ROOT and Windows

Hello,

I am using ROOT 5.17 with Windows XP and I would like to use the function Erfc in my program. Even if I have included the library Math/SpecFunc.h, I am told that my function ROOT::Math::erfc() is declared but not defined.
I think it may be because ROOT does not include the gsl library. Indeed, when I tried to include gsl/gsl_sf_erf.h, I am told that it is also not defined.
Thus, my question is, how can I add the gsl library to ROOT with Windows XP ? I precise that I don’t have Cygwin.

Cheers,
JadA

root [0] gSystem.Load("libMathCore") root [1] ROOT::Math::erfc(0.5) (double)4.79500122186953481e-01

Rene

The problem, which is fixed in the svn trunk version, is due to include the file
Math/SpecFunc.h before using the function in CINT.
Do not therefore include the file when using CINT. Do in your macro:

#ifndef CINT
#include "Math/SpecFunc.h
#endif

For the erfc function, GSL is not needed. However it is needed for other math functions from MathMore. In that case, there are some sites offering GSL binaries for Windows compiled using Visual Studio.
For example, for the latest version, 1.10, the one I use is from

david.geldreich.free.fr/dev.html

Cheers

Lorenzo