added a workaround for gcc 4.6 higher, fftw 3.3 or higher and root 5.30.03 or lower. The problem is rootcint which doesn't know __float128
This commit is contained in:
parent
1f0ee0662d
commit
59eed0d84f
4
src/external/Nonlocal/PNL_PippardFitter.h
vendored
4
src/external/Nonlocal/PNL_PippardFitter.h
vendored
@ -32,6 +32,10 @@
|
||||
#ifndef _PNL_PIPPARDFITTER_H_
|
||||
#define _PNL_PIPPARDFITTER_H_
|
||||
|
||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||
#ifdef __CINT__
|
||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||
#endif
|
||||
#include <fftw3.h>
|
||||
|
||||
#include "PUserFcnBase.h"
|
||||
|
@ -35,6 +35,10 @@
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||
#ifdef __CINT__
|
||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||
#endif
|
||||
#include "fftw3.h"
|
||||
|
||||
/**
|
||||
|
@ -36,6 +36,10 @@
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||
#ifdef __CINT__
|
||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||
#endif
|
||||
#include "fftw3.h"
|
||||
|
||||
//--------------------
|
||||
|
5
src/external/libFitPofB/include/TPofTCalc.h
vendored
5
src/external/libFitPofB/include/TPofTCalc.h
vendored
@ -32,6 +32,11 @@
|
||||
#define _TPofTCalc_H_
|
||||
|
||||
#include "TPofBCalc.h"
|
||||
|
||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||
#ifdef __CINT__
|
||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||
#endif
|
||||
#include "fftw3.h"
|
||||
#include <string>
|
||||
|
||||
|
5
src/external/libLFRelaxation/TLFRelaxation.h
vendored
5
src/external/libLFRelaxation/TLFRelaxation.h
vendored
@ -39,6 +39,11 @@
|
||||
using namespace std;
|
||||
|
||||
#include "PUserFcnBase.h"
|
||||
|
||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||
#ifdef __CINT__
|
||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||
#endif
|
||||
#include "fftw3.h"
|
||||
#include "BMWIntegrator.h"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user