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:
2011-10-26 13:15:42 +00:00
parent 1f0ee0662d
commit 59eed0d84f
5 changed files with 22 additions and 0 deletions

View File

@@ -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"