31 #ifndef ROOT_Math_GSLIntegrationWorkspace
32 #define ROOT_Math_GSLIntegrationWorkspace
38 #include "gsl/gsl_math.h"
41 #include "gsl/gsl_integration.h"
44 class GSLIntegrationWorkspace {
48 GSLIntegrationWorkspace(
size_t n) {
49 fWs = gsl_integration_workspace_alloc( n);
51 ~GSLIntegrationWorkspace() {
52 gsl_integration_workspace_free( fWs);
55 gsl_integration_workspace * GetWS() {
return fWs; }
58 gsl_integration_workspace * fWs;