26 |
|
{ |
27 |
|
char * shape_arg; /* shape file name. */ |
28 |
|
char * output_arg; /* output file name. */ |
29 |
< |
int grid_arg; /* number of grid points in each coordinate (default='51'). */ |
29 |
> |
int grid_arg; /* number of grid points in each coordinate (default='101'). */ |
30 |
> |
double range_arg; /* the sample range for the points in Angstroms (Ex: 10 = -10 to 10) (default='10'). */ |
31 |
|
|
32 |
|
int help_given ; /* Whether help was given. */ |
33 |
|
int version_given ; /* Whether version was given. */ |
34 |
|
int shape_given ; /* Whether shape was given. */ |
35 |
|
int output_given ; /* Whether output was given. */ |
36 |
|
int grid_given ; /* Whether grid was given. */ |
37 |
+ |
int range_given ; /* Whether range was given. */ |
38 |
|
|
39 |
|
} ; |
40 |
|
|