source: pcp/src/energy.h@ f70c2a

Last change on this file since f70c2a was e08f45, checked in by Frederik Heber <heber@…>, 17 years ago

Merge branch 'ConcaveHull' of ../espack2 into ConcaveHull

Conflicts:

molecuilder/src/boundary.cpp
molecuilder/src/boundary.hpp
molecuilder/src/builder.cpp
molecuilder/src/linkedcell.cpp
molecuilder/src/linkedcell.hpp
molecuilder/src/vector.cpp
molecuilder/src/vector.hpp
util/src/NanoCreator.c

Basically, this resulted from a lot of conversions two from spaces to one tab, which is my standard indentation. The mess was caused by eclipse auto-indenting. And in espack2:ConcaveHull was the new stuff, so all from ConcaveHull was replaced in case of doubt.
Additionally, vector had ofstream << operator instead ostream << ...

  • Property mode set to 100755
File size: 890 bytes
Line 
1#ifndef energy_h
2#define energy_h
3/** \file energy.h
4 * Header file for \ref energy.c
5 *
6 * Contains declarations of the functions implemented in \ref energy.c
7 *
8 Project: ParallelCarParrinello
9 Jan Hamaekers
10 2000
11
12 File: energy.h
13 $Id: energy.h,v 1.11 2007/02/05 13:49:56 foo Exp $
14*/
15
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20void CalculatePsiEnergy(struct Problem *P, const int p, const int UseInitTime);
21void CalculateDensityEnergy(struct Problem *P, const int UseInitTime);
22void CalculateGapEnergy(struct Problem *P);
23void CalculateIonsEnergy(struct Problem *P);
24void InitPsiEnergyCalculation(struct Problem *P, enum PsiTypeTag type);
25void UpdatePsiEnergyCalculation(struct Problem *P);
26void InitEnergyArray(struct Problem *P);
27void UpdateEnergyArray(struct Problem *P);
28void EnergyAllReduce(struct Problem *P);
29void EnergyOutput(struct Problem *P, int doout);
30#endif
Note: See TracBrowser for help on using the repository browser.