some initial foo checkin of posic (posic reimplemantation)
[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 #include <stdio.h>
16 #include <stdlib.h>
17 #include <string.h>
18 #include <unistd.h>
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <fcntl.h>
22
23 #include <math.h>
24
25 #include "math/math.h"
26 #include "list/list.h"
27 #include "visual/visual.h"
28 #include "random/random.h"
29
30 #include "potentials/harmonic_oscillator.h"
31 #include "potentials/lennard_jones.h"
32 #include "potentials/albe.h"
33 #include "potentials/tersoff_orig.h"    // obsolete & wrong! ;)
34 #include "potentials/tersoff.h"
35
36 /* defines */
37
38 #endif