git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9379 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp 2013-02-01 14:51:11 +00:00
parent a1433bf82c
commit 9b7bd3e892
1 changed files with 2 additions and 16 deletions

View File

@ -14,6 +14,7 @@
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
Contributing author: Andrew Jewett (jewett.aij at g mail) Contributing author: Andrew Jewett (jewett.aij at g mail)
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
#ifdef DIHEDRAL_CLASS #ifdef DIHEDRAL_CLASS
DihedralStyle(table,DihedralTable) DihedralStyle(table,DihedralTable)
@ -22,17 +23,14 @@ DihedralStyle(table,DihedralTable)
#ifndef LMP_DIHEDRAL_TABLE_H #ifndef LMP_DIHEDRAL_TABLE_H
#define LMP_DIHEDRAL_TABLE_H #define LMP_DIHEDRAL_TABLE_H
#include <cassert> #include <cassert>
#include <cmath> #include <cmath>
#include "domain.h" #include "domain.h"
#include "dihedral.h" #include "dihedral.h"
using namespace std;
namespace LAMMPS_NS { namespace LAMMPS_NS {
class DihedralTable : public Dihedral { class DihedralTable : public Dihedral {
public: public:
DihedralTable(class LAMMPS *); DihedralTable(class LAMMPS *);
@ -158,18 +156,6 @@ class DihedralTable : public Dihedral {
}; //class DihedralTable }; //class DihedralTable
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
// The following auxiliary functions were left out of the // The following auxiliary functions were left out of the
// DihedralTable class either because they require template parameters, // DihedralTable class either because they require template parameters,