57 |
|
char * memory_arg; /**< @brief Available memory (defaults to 2G) (default='2G'). */ |
58 |
|
char * memory_orig; /**< @brief Available memory (defaults to 2G) original value given at command line. */ |
59 |
|
const char *memory_help; /**< @brief Available memory (defaults to 2G) help description. */ |
60 |
+ |
const char *selecorr_help; /**< @brief selection correlation function help description. */ |
61 |
|
const char *rcorr_help; /**< @brief rmsd help description. */ |
62 |
|
const char *vcorr_help; /**< @brief velocity correlation function help description. */ |
63 |
|
const char *dcorr_help; /**< @brief dipole correlation function help description. */ |
67 |
|
const char *thetacorr_help; /**< @brief Angular rmsd help description. */ |
68 |
|
const char *drcorr_help; /**< @brief Directional rmsd for particles with unit vectors help description. */ |
69 |
|
const char *helfandEcorr_help; /**< @brief Helfand moment for thermal conductvity help description. */ |
70 |
+ |
const char *momentum_help; /**< @brief Helfand momentum for viscosity help description. */ |
71 |
|
const char *stresscorr_help; /**< @brief Stress tensor correlation function help description. */ |
72 |
|
|
73 |
|
unsigned int help_given ; /**< @brief Whether help was given. */ |
78 |
|
unsigned int sele2_given ; /**< @brief Whether sele2 was given. */ |
79 |
|
unsigned int order_given ; /**< @brief Whether order was given. */ |
80 |
|
unsigned int memory_given ; /**< @brief Whether memory was given. */ |
81 |
+ |
unsigned int selecorr_given ; /**< @brief Whether selecorr was given. */ |
82 |
|
unsigned int rcorr_given ; /**< @brief Whether rcorr was given. */ |
83 |
|
unsigned int vcorr_given ; /**< @brief Whether vcorr was given. */ |
84 |
|
unsigned int dcorr_given ; /**< @brief Whether dcorr was given. */ |
88 |
|
unsigned int thetacorr_given ; /**< @brief Whether thetacorr was given. */ |
89 |
|
unsigned int drcorr_given ; /**< @brief Whether drcorr was given. */ |
90 |
|
unsigned int helfandEcorr_given ; /**< @brief Whether helfandEcorr was given. */ |
91 |
+ |
unsigned int momentum_given ; /**< @brief Whether momentum was given. */ |
92 |
|
unsigned int stresscorr_given ; /**< @brief Whether stresscorr was given. */ |
93 |
|
|
94 |
+ |
char **inputs ; /**< @brief unamed options (options without names) */ |
95 |
+ |
unsigned inputs_num ; /**< @brief unamed options number */ |
96 |
|
int dynamicProps_group_counter; /**< @brief Counter for group dynamicProps */ |
97 |
|
} ; |
98 |
|
|