| 22 |
|
#define CMDLINE_PARSER_VERSION "0.99" |
| 23 |
|
#endif |
| 24 |
|
|
| 25 |
< |
struct gengetopt_args_info |
| 26 |
< |
{ |
| 27 |
< |
char * input_arg; /* input dump file. */ |
| 28 |
< |
char * output_arg; /* output file name. */ |
| 29 |
< |
int frame_arg; /* print every n frame (default='1'). */ |
| 30 |
< |
int water_flag; /* skip the the waters (default=off). */ |
| 31 |
< |
int periodicBox_flag; /* map to the periodic box (default=off). */ |
| 32 |
< |
int zconstraint_flag; /* replace the atom types of zconstraint molecules (default=off). */ |
| 33 |
< |
int rigidbody_flag; /* add a pseudo COM atom to rigidbody (default=off). */ |
| 34 |
< |
int watertype_flag; /* replace the atom type of water model (default=on). */ |
| 35 |
< |
char * selection_arg; /* general selection syntax. */ |
| 36 |
< |
char * originsele_arg; /* select origin. */ |
| 37 |
< |
char * refsele_arg; /* select reference. */ |
| 38 |
< |
int repeatX_arg; /* The number of images to repeat in the x direction (default='0'). */ |
| 39 |
< |
int repeatY_arg; /* The number of images to repeat in the y direction (default='0'). */ |
| 40 |
< |
int repeatZ_arg; /* The number of images to repeat in the z direction (default='0'). */ |
| 25 |
> |
struct gengetopt_args_info |
| 26 |
> |
{ |
| 27 |
> |
char * input_arg; /* input dump file. */ |
| 28 |
> |
char * output_arg; /* output file name. */ |
| 29 |
> |
int frame_arg; /* print every n frame (default='1'). */ |
| 30 |
> |
int water_flag; /* skip the the waters (default=off). */ |
| 31 |
> |
int periodicBox_flag; /* map to the periodic box (default=off). */ |
| 32 |
> |
int zconstraint_flag; /* replace the atom types of zconstraint molecules (default=off). */ |
| 33 |
> |
int rigidbody_flag; /* add a pseudo COM atom to rigidbody (default=off). */ |
| 34 |
> |
int watertype_flag; /* replace the atom type of water model (default=on). */ |
| 35 |
> |
char * selection_arg; /* general selection syntax. */ |
| 36 |
> |
char * originsele_arg; /* select origin. */ |
| 37 |
> |
char * refsele_arg; /* select reference. */ |
| 38 |
> |
int repeatX_arg; /* The number of images to repeat in the x direction (default='0'). */ |
| 39 |
> |
int repeatY_arg; /* The number of images to repeat in the y direction (default='0'). */ |
| 40 |
> |
int repeatZ_arg; /* The number of images to repeat in the z direction (default='0'). */ |
| 41 |
|
|
| 42 |
< |
int help_given ; /* Whether help was given. */ |
| 43 |
< |
int version_given ; /* Whether version was given. */ |
| 44 |
< |
int input_given ; /* Whether input was given. */ |
| 45 |
< |
int output_given ; /* Whether output was given. */ |
| 46 |
< |
int frame_given ; /* Whether frame was given. */ |
| 47 |
< |
int water_given ; /* Whether water was given. */ |
| 48 |
< |
int periodicBox_given ; /* Whether periodicBox was given. */ |
| 49 |
< |
int zconstraint_given ; /* Whether zconstraint was given. */ |
| 50 |
< |
int rigidbody_given ; /* Whether rigidbody was given. */ |
| 51 |
< |
int watertype_given ; /* Whether watertype was given. */ |
| 52 |
< |
int selection_given ; /* Whether selection was given. */ |
| 53 |
< |
int originsele_given ; /* Whether originsele was given. */ |
| 54 |
< |
int refsele_given ; /* Whether refsele was given. */ |
| 55 |
< |
int repeatX_given ; /* Whether repeatX was given. */ |
| 56 |
< |
int repeatY_given ; /* Whether repeatY was given. */ |
| 57 |
< |
int repeatZ_given ; /* Whether repeatZ was given. */ |
| 42 |
> |
int help_given ; /* Whether help was given. */ |
| 43 |
> |
int version_given ; /* Whether version was given. */ |
| 44 |
> |
int input_given ; /* Whether input was given. */ |
| 45 |
> |
int output_given ; /* Whether output was given. */ |
| 46 |
> |
int frame_given ; /* Whether frame was given. */ |
| 47 |
> |
int water_given ; /* Whether water was given. */ |
| 48 |
> |
int periodicBox_given ; /* Whether periodicBox was given. */ |
| 49 |
> |
int zconstraint_given ; /* Whether zconstraint was given. */ |
| 50 |
> |
int rigidbody_given ; /* Whether rigidbody was given. */ |
| 51 |
> |
int watertype_given ; /* Whether watertype was given. */ |
| 52 |
> |
int selection_given ; /* Whether selection was given. */ |
| 53 |
> |
int originsele_given ; /* Whether originsele was given. */ |
| 54 |
> |
int refsele_given ; /* Whether refsele was given. */ |
| 55 |
> |
int repeatX_given ; /* Whether repeatX was given. */ |
| 56 |
> |
int repeatY_given ; /* Whether repeatY was given. */ |
| 57 |
> |
int repeatZ_given ; /* Whether repeatZ was given. */ |
| 58 |
|
|
| 59 |
< |
} ; |
| 59 |
> |
} ; |
| 60 |
|
|
| 61 |
< |
int cmdline_parser (int argc, char * const *argv, struct gengetopt_args_info *args_info); |
| 61 |
> |
int cmdline_parser (int argc, char * const *argv, struct gengetopt_args_info *args_info); |
| 62 |
|
|
| 63 |
< |
void cmdline_parser_print_help(void); |
| 64 |
< |
void cmdline_parser_print_version(void); |
| 63 |
> |
void cmdline_parser_print_help(void); |
| 64 |
> |
void cmdline_parser_print_version(void); |
| 65 |
|
|
| 66 |
|
#ifdef __cplusplus |
| 67 |
|
} |