update comments about which files to keep synchronized for consistency

This commit is contained in:
Axel Kohlmeyer
2022-10-03 09:22:28 -04:00
parent f474b67c7c
commit ea512ce2bb
2 changed files with 12 additions and 11 deletions

View File

@ -22,7 +22,8 @@ LAMMPS_INT64 = 4
LAMMPS_INT64_2D = 5 LAMMPS_INT64_2D = 5
LAMMPS_STRING = 6 LAMMPS_STRING = 6
# these must be kept in sync with the enums in library.h # these must be kept in sync with the enums in src/library.h, tools/swig/lammps.i
# and the constants in fortran/lammps.f90
LMP_STYLE_GLOBAL = 0 LMP_STYLE_GLOBAL = 0
LMP_STYLE_ATOM = 1 LMP_STYLE_ATOM = 1
LMP_STYLE_LOCAL = 2 LMP_STYLE_LOCAL = 2

View File

@ -40,8 +40,8 @@
/** Data type constants for extracting data from atoms, computes and fixes /** Data type constants for extracting data from atoms, computes and fixes
* *
* Must be kept in sync with the equivalent constants in lammps/constants.py * Must be kept in sync with the equivalent constants in python/lammps/constants.py,
* and fortran/lammps.f90 */ * fortran/lammps.f90, and tools/swig/lammps.i */
enum _LMP_DATATYPE_CONST { enum _LMP_DATATYPE_CONST {
LAMMPS_INT = 0, /*!< 32-bit integer (array) */ LAMMPS_INT = 0, /*!< 32-bit integer (array) */
@ -55,8 +55,8 @@ enum _LMP_DATATYPE_CONST {
/** Style constants for extracting data from computes and fixes. /** Style constants for extracting data from computes and fixes.
* *
* Must be kept in sync with the equivalent constants in lammps/constants.py * Must be kept in sync with the equivalent constants in python/lammps/constants.py,
* and fortran/lammps.f90 */ * fortran/lammps.f90, and tools/swig/lammps.i */
enum _LMP_STYLE_CONST { enum _LMP_STYLE_CONST {
LMP_STYLE_GLOBAL = 0, /*!< return global data */ LMP_STYLE_GLOBAL = 0, /*!< return global data */
@ -66,8 +66,8 @@ enum _LMP_STYLE_CONST {
/** Type and size constants for extracting data from computes and fixes. /** Type and size constants for extracting data from computes and fixes.
* *
* Must be kept in sync with the equivalent constants in lammps/constants.py * Must be kept in sync with the equivalent constants in python/lammps/constants.py,
* and fortran/lammps.f90 */ * fortran/lammps.f90, and tools/swig/lammps.i */
enum _LMP_TYPE_CONST { enum _LMP_TYPE_CONST {
LMP_TYPE_SCALAR = 0, /*!< return scalar */ LMP_TYPE_SCALAR = 0, /*!< return scalar */
@ -80,8 +80,8 @@ enum _LMP_TYPE_CONST {
/** Error codes to select the suitable function in the Error class /** Error codes to select the suitable function in the Error class
* *
* Must be kept in sync with the equivalent constants in lammps/constants.py * Must be kept in sync with the equivalent constants in python/lammps/constants.py,
* and fortran/lammps.f90 */ * fortran/lammps.f90, and tools/swig/lammps.i */
enum _LMP_ERROR_CONST { enum _LMP_ERROR_CONST {
LMP_ERROR_WARNING = 0, /*!< call Error::warning() */ LMP_ERROR_WARNING = 0, /*!< call Error::warning() */
@ -93,8 +93,8 @@ enum _LMP_ERROR_CONST {
/** Variable style constants for extracting data from variables. /** Variable style constants for extracting data from variables.
* *
* Must be kept in sync with the equivalent constants in lammps/constants.py * Must be kept in sync with the equivalent constants in python/lammps/constants.py,
* and fortran/lammps.f90 */ * fortran/lammps.f90, and tools/swig/lammps.i */
enum _LMP_VAR_CONST { enum _LMP_VAR_CONST {
LMP_VAR_EQUAL = 0, /*!< compatible with equal-style variables */ LMP_VAR_EQUAL = 0, /*!< compatible with equal-style variables */