2014-07-30 22:59:20 +08:00
|
|
|
/* -*- c++ -*- ----------------------------------------------------------
|
2010-11-23 08:41:14 +08:00
|
|
|
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
|
|
|
http://lammps.sandia.gov, Sandia National Laboratories
|
|
|
|
Steve Plimpton, sjplimp@sandia.gov
|
|
|
|
|
|
|
|
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
|
|
|
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
2012-06-07 06:47:51 +08:00
|
|
|
certain rights in this software. This software is distributed under
|
2010-11-23 08:41:14 +08:00
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
2010-11-24 03:56:33 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
#ifdef NTOPO_CLASS
|
|
|
|
|
|
|
|
NTopoStyle(NTOPO_ANGLE_ALL,NTopoAngleAll)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifndef LMP_TOPO_ANGLE_ALL_H
|
|
|
|
#define LMP_TOPO_ANGLE_ALL_H
|
|
|
|
|
|
|
|
#include "ntopo.h"
|
2010-11-23 08:41:14 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
namespace LAMMPS_NS {
|
2012-02-10 05:03:50 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
class NTopoAngleAll : public NTopo {
|
|
|
|
public:
|
|
|
|
NTopoAngleAll(class LAMMPS *);
|
|
|
|
~NTopoAngleAll() {}
|
|
|
|
void build();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ERROR/WARNING messages:
|
2010-11-23 08:41:14 +08:00
|
|
|
|
2018-04-04 07:48:31 +08:00
|
|
|
E: Angle atoms %d %d %d missing on proc %d at step %ld
|
|
|
|
|
|
|
|
UNDOCUMENTED
|
|
|
|
|
|
|
|
W: Angle atoms missing at step %ld
|
|
|
|
|
|
|
|
UNDOCUMENTED
|
|
|
|
|
2011-12-16 09:37:13 +08:00
|
|
|
*/
|