1 /* -*- c++ -*- ----------------------------------------------------------
2    LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
3    https://www.lammps.org/, Sandia National Laboratories
4    Steve Plimpton, sjplimp@sandia.gov
5 
6    Copyright (2003) Sandia Corporation.  Under the terms of Contract
7    DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
8    certain rights in this software.  This software is distributed under
9    the GNU General Public License.
10 
11    See the README file in the top-level LAMMPS directory.
12 ------------------------------------------------------------------------- */
13 
14 #ifdef FIX_CLASS
15 // clang-format off
16 FixStyle(nvt,FixNVT);
17 // clang-format on
18 #else
19 
20 #ifndef LMP_FIX_NVT_H
21 #define LMP_FIX_NVT_H
22 
23 #include "fix_nh.h"
24 
25 namespace LAMMPS_NS {
26 
27 class FixNVT : public FixNH {
28  public:
29   FixNVT(class LAMMPS *, int, char **);
~FixNVT()30   ~FixNVT() {}
31 };
32 
33 }    // namespace LAMMPS_NS
34 
35 #endif
36 #endif
37 
38 /* ERROR/WARNING messages:
39 
40 E: Temperature control must be used with fix nvt
41 
42 Self-explanatory.
43 
44 E: Pressure control can not be used with fix nvt
45 
46 Self-explanatory.
47 
48 */
49