move data type enum to header so it can be used in dump netcdf

This commit is contained in:
Axel Kohlmeyer
2021-07-18 17:41:14 -04:00
parent 418acea543
commit 2eff15d1e6
2 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,6 @@ using namespace MathConst;
#define MULTI "etotal ke temp pe ebond eangle edihed eimp evdwl ecoul elong press" #define MULTI "etotal ke temp pe ebond eangle edihed eimp evdwl ecoul elong press"
enum{ONELINE,MULTILINE}; enum{ONELINE,MULTILINE};
enum{INT,FLOAT,BIGINT};
enum{SCALAR,VECTOR,ARRAY}; enum{SCALAR,VECTOR,ARRAY};

View File

@ -31,6 +31,7 @@ class Thermo : protected Pointers {
int lostbond; // ditto for atoms in bonds int lostbond; // ditto for atoms in bonds
enum { IGNORE, WARN, ERROR }; enum { IGNORE, WARN, ERROR };
enum { INT, FLOAT, BIGINT };
Thermo(class LAMMPS *, int, char **); Thermo(class LAMMPS *, int, char **);
~Thermo(); ~Thermo();