/usr/include/BALL/MATHS/fftwCommon.h is in libball1.4-dev 1.4.1+20111206-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | // -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#ifndef BALL_MATHS_FFTWCOMMON_H
#define BALL_MATHS_FFTWCOMMON_H
#ifndef BALL_COMMON_H
# include <BALL/common.h>
#endif
#include <fftw3.h>
namespace BALL
{
struct BALL_EXPORT DoubleTraits
{
typedef double ComplexPrecision;
typedef fftw_plan FftwPlan;
};
struct BALL_EXPORT FloatTraits
{
typedef float ComplexPrecision;
typedef fftwf_plan FftwPlan;
};
struct BALL_EXPORT LongDoubleTraits
{
typedef long double ComplexPrecision;
typedef fftwl_plan FftwPlan;
};
}
#endif
|