Unverified Commit fa15bf5e authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

recover compilation of USER-COLVARS package

parent e63fe1fe
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -38,6 +38,12 @@ inline std::ostream & operator<< (std::ostream &out, const commdata &cd)
  return out;
}

// forward declarations
namespace LAMMPS_NS {
  class LAMMPS;
  class RanPark;
}

/// \brief Communication between colvars and LAMMPS
/// (implementation of \link colvarproxy \endlink)
class colvarproxy_lammps : public colvarproxy {
@@ -46,8 +52,8 @@ class colvarproxy_lammps : public colvarproxy {
 protected:

  // pointers to LAMMPS class instances
  class LAMMPS_NS::LAMMPS *_lmp;
  class LAMMPS_NS::RanPark *_random;
  LAMMPS_NS::LAMMPS *_lmp;
  LAMMPS_NS::RanPark *_random;

  // state of LAMMPS properties
  double t_target, my_timestep, my_boltzmann, my_angstrom;