Page MenuHomec4science

dihedral_class2_omp.h
No OneTemporary

File Metadata

Created
Tue, Jun 25, 09:08

dihedral_class2_omp.h

/* ----------------------------------------------------------------------
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
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
Contributing author: Axel Kohlmeyer (Temple U)
------------------------------------------------------------------------- */
#ifdef DIHEDRAL_CLASS
DihedralStyle(class2/omp,DihedralClass2OMP)
#else
#ifndef LMP_DIHEDRAL_CLASS2_OMP_H
#define LMP_DIHEDRAL_CLASS2_OMP_H
#include "dihedral_class2.h"
#include "thr_omp.h"
namespace LAMMPS_NS {
class DihedralClass2OMP : public DihedralClass2, public ThrOMP {
public:
DihedralClass2OMP(class LAMMPS *lmp) :
DihedralClass2(lmp), ThrOMP(lmp,DIHEDRAL) {};
virtual void compute(int, int);
private:
template <int EVFLAG, int EFLAG, int NEWTON_BOND>
void eval(double **f, int ifrom, int ito, int tid);
};
}
#endif
#endif

Event Timeline