forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9379 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
a1433bf82c
commit
9b7bd3e892
|
@ -14,6 +14,7 @@
|
|||
/* ----------------------------------------------------------------------
|
||||
Contributing author: Andrew Jewett (jewett.aij at g mail)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef DIHEDRAL_CLASS
|
||||
|
||||
DihedralStyle(table,DihedralTable)
|
||||
|
@ -22,17 +23,14 @@ DihedralStyle(table,DihedralTable)
|
|||
|
||||
#ifndef LMP_DIHEDRAL_TABLE_H
|
||||
#define LMP_DIHEDRAL_TABLE_H
|
||||
|
||||
#include <cassert>
|
||||
#include <cmath>
|
||||
#include "domain.h"
|
||||
#include "dihedral.h"
|
||||
using namespace std;
|
||||
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
|
||||
|
||||
class DihedralTable : public Dihedral {
|
||||
public:
|
||||
DihedralTable(class LAMMPS *);
|
||||
|
@ -158,18 +156,6 @@ class DihedralTable : public Dihedral {
|
|||
|
||||
}; //class DihedralTable
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// The following auxiliary functions were left out of the
|
||||
// DihedralTable class either because they require template parameters,
|
||||
|
|
Loading…
Reference in New Issue