#ifndef riemann_h #define riemann_h /** \file riemann.h * Header file for \ref riemann.c * * Contains declarations of the functions implemented in \ref riemann.c * Project: ParallelCarParrinello Jan Hamaekers 2000 File: riemann.h $Id: riemann.h,v 1.6 2006/03/30 22:19:52 foo Exp $ */ void CalculateRiemannLaplaceS(const struct Lattice *Lat, struct RiemannTensor *RT, fftw_complex *src, fftw_complex *Lap/*, const double FactorC_R, const double FactorR_C*/); void CalculateRiemannLaplace0(const struct Lattice *Lat, struct RiemannTensor *RT, fftw_complex *src, fftw_complex *Lap/*, const double FactorC_R, const double FactorR_C*/); void InitRiemannTensor(struct Problem *const P); void CalculateRiemannTensorData(struct Problem *const P); #endif