changes to start to make atom style hybrid work

This commit is contained in:
Steve Plimpton
2019-11-26 18:34:51 -07:00
parent 3736af0aaf
commit 6c18e366d7
24 changed files with 586 additions and 1432 deletions

View File

@ -27,12 +27,16 @@ namespace LAMMPS_NS {
class AtomVecSphere : public AtomVec {
public:
AtomVecSphere(class LAMMPS *);
void process_args(int, char **);
void init();
void create_atom(int, double *);
void data_atom(double *, imageint, char **);
void create_atom_post(int);
void data_atom_post(int);
void pack_data_pre(int);
void pack_data_post(int);
private:
int radvary;
double radius,rmass;
};
}