Skip to content

Commit

Permalink
Merge pull request #3 from vbertone/polarised
Browse files Browse the repository at this point in the history
Polarised
  • Loading branch information
vbertone authored Jun 20, 2021
2 parents 6915974 + 0ac02cd commit a52371f
Show file tree
Hide file tree
Showing 40 changed files with 6,058 additions and 2,814 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ BINRELOC_LIBS = @BINRELOC_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
Expand Down Expand Up @@ -375,6 +374,7 @@ pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
4 changes: 2 additions & 2 deletions aclocal.m4
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
[m4_warning([this file was generated for autoconf 2.69.
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.71],,
[m4_warning([this file was generated for autoconf 2.71.
You have another version of autoconf. It may work, but is not guaranteed to.
If you have problems, you may need to regenerate the build system entirely.
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
Expand Down
2 changes: 1 addition & 1 deletion bin/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ BINRELOC_LIBS = @BINRELOC_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
Expand Down Expand Up @@ -285,6 +284,7 @@ pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
75 changes: 75 additions & 0 deletions ccwrap/APFELobs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,81 @@ namespace APFEL {
return ff3total(&x);
}

double g1light(double x)
{
return fg1light(&x);
}

double g1charm(double x)
{
return fg1charm(&x);
}

double g1bottom(double x)
{
return fg1bottom(&x);
}

double g1top(double x)
{
return fg1top(&x);
}

double g1total(double x)
{
return fg1total(&x);
}

double gLlight(double x)
{
return fgllight(&x);
}

double gLcharm(double x)
{
return fglcharm(&x);
}

double gLbottom(double x)
{
return fglbottom(&x);
}

double gLtop(double x)
{
return fgltop(&x);
}

double gLtotal(double x)
{
return fgltotal(&x);
}

double g4light(double x)
{
return fg4light(&x);
}

double g4charm(double x)
{
return fg4charm(&x);
}

double g4bottom(double x)
{
return fg4bottom(&x);
}

double g4top(double x)
{
return fg4top(&x);
}

double g4total(double x)
{
return fg4total(&x);
}

double StructureFunctionxQ(const std::string& proc, const std::string& sf, const std::string& comp, double x, double Q)
{
std::vector<char> cproc(proc.c_str(), proc.c_str() + proc.size() + 1);
Expand Down
2 changes: 1 addition & 1 deletion ccwrap/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ BINRELOC_LIBS = @BINRELOC_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
Expand Down Expand Up @@ -310,6 +309,7 @@ pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
Expand Down
10 changes: 6 additions & 4 deletions config/config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
/* Define to 1 if you have the `pthread' library (-lpthread). */
#undef HAVE_LIBPTHREAD

/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H

/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H

/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

Expand Down Expand Up @@ -80,7 +80,9 @@
/* Define to the version of this package. */
#undef PACKAGE_VERSION

/* Define to 1 if you have the ANSI C header files. */
/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS

/* Version number of package */
Expand Down
Loading

0 comments on commit a52371f

Please sign in to comment.