Trisurf Monte Carlo simulator
Samo Penic
2014-02-11 23d807748be58e5178c04304d9cc788bf122eb12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** @file doxygentest.c
    @author Samo Penic
    @date 4.3.2010
*/
 
#include<stdio.h>
 
 
/** Defines the number of n/a items */
#define N_A 10
 
/** @brief Structure that holds some info on three members 
  *
  * This detailed description describes the structure more precisely.
  * One member is also extra documented!
  */
typedef struct{
    int i;  
    char *a; /**< If you think you don't understand this, add a note to member
*/
    long *ptr;
} test;
 
//typedef t_test test;
 
/** @brief This is a dummy function to test doxygen documentation 
 *
 *  Some further explanation of the testfunction comes in the next lines
 *  when the brief has been satisfied.
 *      @param param1 is an integer
 *      @param param2 is a float
 *      @return function returns nothing
 *
 *  TODO: Still not fully functional algorithm
 */
void testfunction(int param1, float param2){
 
 
    int i; /** This will add an extra line in the documentation block */
 
 
}
 
void main(){
    test i;
}