diff --git a/src/SPIN/compute_spin.cpp b/src/SPIN/compute_spin.cpp index 6a408b9db1..e1a0211371 100644 --- a/src/SPIN/compute_spin.cpp +++ b/src/SPIN/compute_spin.cpp @@ -58,7 +58,7 @@ ComputeSpin::ComputeSpin(LAMMPS *lmp, int narg, char **arg) : long_spin_flag = 0; precession_spin_flag = 0; - init(); + ComputeSpin::init(); allocate(); diff --git a/src/USER-MISC/compute_gyration_shape.cpp b/src/USER-MISC/compute_gyration_shape.cpp index aa8c038867..c2cc060048 100644 --- a/src/USER-MISC/compute_gyration_shape.cpp +++ b/src/USER-MISC/compute_gyration_shape.cpp @@ -44,7 +44,7 @@ ComputeGyrationShape::ComputeGyrationShape(LAMMPS *lmp, int narg, char **arg) : // ID of compute gyration id_gyration = utils::strdup(arg[3]); - init(); + ComputeGyrationShape::init(); vector = new double[6]; } diff --git a/src/USER-MISC/compute_gyration_shape_chunk.cpp b/src/USER-MISC/compute_gyration_shape_chunk.cpp index 0147ab6590..91c27bf218 100644 --- a/src/USER-MISC/compute_gyration_shape_chunk.cpp +++ b/src/USER-MISC/compute_gyration_shape_chunk.cpp @@ -40,7 +40,7 @@ ComputeGyrationShapeChunk::ComputeGyrationShapeChunk(LAMMPS *lmp, int narg, char // ID of compute gyration id_gyration_chunk = utils::strdup(arg[3]); - init(); + ComputeGyrationShapeChunk::init(); array_flag = 1; size_array_cols = 6; diff --git a/src/compute_angmom_chunk.cpp b/src/compute_angmom_chunk.cpp index 2616e5eec2..a24138f2e1 100644 --- a/src/compute_angmom_chunk.cpp +++ b/src/compute_angmom_chunk.cpp @@ -44,7 +44,7 @@ ComputeAngmomChunk::ComputeAngmomChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputeAngmomChunk::init(); // chunk-based data diff --git a/src/compute_com_chunk.cpp b/src/compute_com_chunk.cpp index 4778854f7a..93590b307b 100644 --- a/src/compute_com_chunk.cpp +++ b/src/compute_com_chunk.cpp @@ -46,7 +46,7 @@ ComputeCOMChunk::ComputeCOMChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputeCOMChunk::init(); // chunk-based data diff --git a/src/compute_dipole_chunk.cpp b/src/compute_dipole_chunk.cpp index cb0bb8d914..82d0686734 100644 --- a/src/compute_dipole_chunk.cpp +++ b/src/compute_dipole_chunk.cpp @@ -60,7 +60,7 @@ ComputeDipoleChunk::ComputeDipoleChunk(LAMMPS *lmp, int narg, char **arg) : else error->all(FLERR,"Illegal compute dipole/chunk command"); } - init(); + ComputeDipoleChunk::init(); // chunk-based data diff --git a/src/compute_gyration_chunk.cpp b/src/compute_gyration_chunk.cpp index 63ad555080..a0611356af 100644 --- a/src/compute_gyration_chunk.cpp +++ b/src/compute_gyration_chunk.cpp @@ -39,7 +39,7 @@ ComputeGyrationChunk::ComputeGyrationChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputeGyrationChunk::init(); // optional args diff --git a/src/compute_inertia_chunk.cpp b/src/compute_inertia_chunk.cpp index 936121ab11..c6d9b487fb 100644 --- a/src/compute_inertia_chunk.cpp +++ b/src/compute_inertia_chunk.cpp @@ -44,7 +44,7 @@ ComputeInertiaChunk::ComputeInertiaChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputeInertiaChunk::init(); // chunk-based data diff --git a/src/compute_msd_chunk.cpp b/src/compute_msd_chunk.cpp index f7eb70711c..099f8f6735 100644 --- a/src/compute_msd_chunk.cpp +++ b/src/compute_msd_chunk.cpp @@ -48,7 +48,7 @@ ComputeMSDChunk::ComputeMSDChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); firstflag = 1; - init(); + ComputeMSDChunk::init(); // create a new fix STORE style for reference positions // id = compute-ID + COMPUTE_STORE, fix group = compute group diff --git a/src/compute_omega_chunk.cpp b/src/compute_omega_chunk.cpp index 515d2290c2..8226263eaa 100644 --- a/src/compute_omega_chunk.cpp +++ b/src/compute_omega_chunk.cpp @@ -48,7 +48,7 @@ ComputeOmegaChunk::ComputeOmegaChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputeOmegaChunk::init(); // chunk-based data diff --git a/src/compute_property_chunk.cpp b/src/compute_property_chunk.cpp index 352cdb82fc..555af5e119 100644 --- a/src/compute_property_chunk.cpp +++ b/src/compute_property_chunk.cpp @@ -36,7 +36,7 @@ ComputePropertyChunk::ComputePropertyChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputePropertyChunk::init(); // parse values diff --git a/src/compute_temp_chunk.cpp b/src/compute_temp_chunk.cpp index fb4a95e7a4..9d165e54e8 100644 --- a/src/compute_temp_chunk.cpp +++ b/src/compute_temp_chunk.cpp @@ -48,7 +48,7 @@ ComputeTempChunk::ComputeTempChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); biasflag = 0; - init(); + ComputeTempChunk::init(); // optional per-chunk values diff --git a/src/compute_torque_chunk.cpp b/src/compute_torque_chunk.cpp index cebef7eeff..1397afdb9e 100644 --- a/src/compute_torque_chunk.cpp +++ b/src/compute_torque_chunk.cpp @@ -43,7 +43,7 @@ ComputeTorqueChunk::ComputeTorqueChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputeTorqueChunk::init(); // chunk-based data diff --git a/src/compute_vcm_chunk.cpp b/src/compute_vcm_chunk.cpp index 0d6ce38b05..b1b584ffe0 100644 --- a/src/compute_vcm_chunk.cpp +++ b/src/compute_vcm_chunk.cpp @@ -44,7 +44,7 @@ ComputeVCMChunk::ComputeVCMChunk(LAMMPS *lmp, int narg, char **arg) : idchunk = utils::strdup(arg[3]); - init(); + ComputeVCMChunk::init(); // chunk-based data