cosmetic
This commit is contained in:
@ -48,9 +48,8 @@
|
||||
#include "colvarmodule.h"
|
||||
#include "colvarproxy.h"
|
||||
#include "colvarproxy_lammps.h"
|
||||
#include "colvarscript.h"
|
||||
#include "colvars_memstream.h"
|
||||
|
||||
#include "colvarscript.h"
|
||||
|
||||
/* struct for packed data communication of coordinates and forces. */
|
||||
struct LAMMPS_NS::commdata {
|
||||
@ -60,8 +59,7 @@ struct LAMMPS_NS::commdata {
|
||||
|
||||
inline std::ostream &operator<<(std::ostream &out, const LAMMPS_NS::commdata &cd)
|
||||
{
|
||||
out << " (" << cd.tag << "/" << cd.type << ": "
|
||||
<< cd.x << ", " << cd.y << ", " << cd.z << ") ";
|
||||
out << " (" << cd.tag << "/" << cd.type << ": " << cd.x << ", " << cd.y << ", " << cd.z << ") ";
|
||||
return out;
|
||||
}
|
||||
|
||||
@ -303,8 +301,7 @@ void FixColvars::set_thermostat_temperature()
|
||||
error->one(FLERR, "Could not find thermostat fix ID {}", tfix_name);
|
||||
}
|
||||
int tmp = 0;
|
||||
double *tt = reinterpret_cast<double *>(tstat_fix->extract("t_target",
|
||||
tmp));
|
||||
double *tt = reinterpret_cast<double *>(tstat_fix->extract("t_target", tmp));
|
||||
if (tt) {
|
||||
t_target = *tt;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user