corrected include
[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 "visual/visual.h"
30 #include "random/random.h"
31
32 // potentials
33 #include "potentials/harmonic_oscillator.h"
34 #include "potentials/lennard_jones.h"
35 #include "potentials/albe.h"
36 #ifdef TERSOFF_ORIG
37 #include "potentials/tersoff_orig.h"    // obsolete & wrong! ;)
38 #else
39 #include "potentials/tersoff.h"
40 #endif
41
42 /* defines */
43
44 #endif