source: pcp/src/riemann.h@ 5a78f5

Last change on this file since 5a78f5 was 79290f, checked in by Frederik Heber <heber@…>, 17 years ago

config.h is included in each and every file. After trying to compile on JUMP (with xlc).

  • Property mode set to 100644
File size: 814 bytes
Line 
1#ifndef riemann_h
2#define riemann_h
3/** \file riemann.h
4 * Header file for \ref riemann.c
5 *
6 * Contains declarations of the functions implemented in \ref riemann.c
7 *
8 Project: ParallelCarParrinello
9 Jan Hamaekers
10 2000
11
12 File: riemann.h
13 $Id: riemann.h,v 1.6 2006/03/30 22:19:52 foo Exp $
14*/
15
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20void CalculateRiemannLaplaceS(const struct Lattice *Lat, struct RiemannTensor *RT, fftw_complex *src, fftw_complex *Lap/*, const double FactorC_R, const double FactorR_C*/);
21void CalculateRiemannLaplace0(const struct Lattice *Lat, struct RiemannTensor *RT, fftw_complex *src, fftw_complex *Lap/*, const double FactorC_R, const double FactorR_C*/);
22void InitRiemannTensor(struct Problem *const P);
23void CalculateRiemannTensorData(struct Problem *const P);
24
25#endif
Note: See TracBrowser for help on using the repository browser.