Merge branch 'leadoff'
[physik/posic.git] / posic.h
1 /*
2  * posic.h - precipitation process of silicon carbide in silicon
3  *
4  * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
5  *
6  */
7
8 #ifndef POSIC_H
9 #define POSIC_H
10
11 /* includes */
12
13 #define _GNU_SOURCE
14
15 // system
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <unistd.h>
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <fcntl.h>
23
24 #include <math.h>
25
26 // swapped out functions
27 #include "math/math.h"
28 #include "list/list.h"
29 #include "random/random.h"
30
31 // moldyn core functions
32 #include "moldyn.h"
33
34 // potentials
35 #include "potentials/harmonic_oscillator.h"
36 #include "potentials/lennard_jones.h"
37 #include "potentials/albe.h"
38 #ifdef TERSOFF_ORIG
39 #include "potentials/tersoff_orig.h"    // obsolete & wrong! ;)
40 #else
41 #include "potentials/tersoff.h"
42 #endif
43
44 /* defines */
45
46 #endif