TYCHO  1.3.0
 All Data Structures Files Functions Variables Enumerations Enumerator
/home/kapf/tycho_docu/volume.c
Go to the documentation of this file.
1 /*
2  * volume.c
3  *
4  * Author: Wolfgang Kapferer
5  */
6 
7 #include <stdio.h>
8 #include <stdlib.h>
9 
10 #include "prototypes.h"
11 #include "variables_global.h"
12 
13 /*
14  Fills the dvol, dvol0 arrays
15  */
16 int volume(int nmin, int nmax, double *dvol, double *dx, double *dvol0, double *dx0) {
17  int i;
18 
19  for (i = nmin - 3; i <= nmax + 4; i++) {
20  dvol[i] = dx[i];
21  dvol0[i] = dx0[i];
22  }
23 
24  return 0;
25 }