add support for storing a global scalar and global vector

This commit is contained in:
Axel Kohlmeyer
2020-08-09 00:03:43 -04:00
parent 4b5bc8f63b
commit 2edad432ce
4 changed files with 53 additions and 4 deletions

View File

@ -38,7 +38,6 @@ public:
void run_forces(const yaml_event_t &event);
void run_pos(const yaml_event_t &event);
void run_vel(const yaml_event_t &event);
void fix_style(const yaml_event_t &event);
void pair_style(const yaml_event_t &event);
void pair_coeff(const yaml_event_t &event);
void bond_style(const yaml_event_t &event);
@ -52,6 +51,8 @@ public:
void run_coul(const yaml_event_t &event);
void init_energy(const yaml_event_t &event);
void run_energy(const yaml_event_t &event);
void global_scalar(const yaml_event_t &event);
void global_vector(const yaml_event_t &event);
};
#endif