Commit 2c643b7d authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@3655 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 18b20f9c
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -5,8 +5,6 @@

if ($1 == 1) then

  cp style_asphere.h ..

  cp atom_vec_ellipsoid.cpp ..
  cp compute_erotate_asphere.cpp ..
  cp compute_temp_asphere.cpp ..
@@ -27,9 +25,6 @@ if ($1 == 1) then

else if ($1 == 0) then

  rm ../style_asphere.h
  touch ../style_asphere.h

  rm ../atom_vec_ellipsoid.cpp
  rm ../compute_erotate_asphere.cpp
  rm ../compute_temp_asphere.cpp
@@ -48,7 +43,7 @@ else if ($1 == 0) then
  rm ../pair_gayberne.h
  rm ../pair_resquared.h

  if (! -z ../style_gpu.h) then
  if (-e ../pair_gayberne_gpu.h) then
    cd ../GPU; csh -f Install.csh 0; csh -f Install.csh 1
  endif

+9 −2
Original line number Diff line number Diff line
@@ -11,8 +11,14 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifndef ATOM_VEC_ELLIPSOID_H
#define ATOM_VEC_ELLIPSOID_H
#ifdef ATOM_CLASS

AtomStyle(ellipsoid,AtomVecEllipsoid)

#else

#ifndef LMP_ATOM_VEC_ELLIPSOID_H
#define LMP_ATOM_VEC_ELLIPSOID_H

#include "atom_vec.h"

@@ -62,3 +68,4 @@ class AtomVecEllipsoid : public AtomVec {
}

#endif
#endif
+9 −2
Original line number Diff line number Diff line
@@ -11,8 +11,14 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifndef COMPUTE_EROTATE_ASPHERE_H
#define COMPUTE_EROTATE_ASPHERE_H
#ifdef COMPUTE_CLASS

ComputeStyle(erotate/asphere,ComputeERotateAsphere)

#else

#ifndef LMP_COMPUTE_EROTATE_ASPHERE_H
#define LMP_COMPUTE_EROTATE_ASPHERE_H

#include "compute.h"

@@ -35,3 +41,4 @@ class ComputeERotateAsphere : public Compute {
}

#endif
#endif
+9 −2
Original line number Diff line number Diff line
@@ -11,8 +11,14 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifndef COMPUTE_TEMP_ASPHERE_H
#define COMPUTE_TEMP_ASPHERE_H
#ifdef COMPUTE_CLASS

ComputeStyle(temp/asphere,ComputeTempAsphere)

#else

#ifndef LMP_COMPUTE_TEMP_ASPHERE_H
#define LMP_COMPUTE_TEMP_ASPHERE_H

#include "compute.h"

@@ -43,3 +49,4 @@ class ComputeTempAsphere : public Compute {
}

#endif
#endif
+9 −2
Original line number Diff line number Diff line
@@ -11,8 +11,14 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifndef FIX_NPT_ASPHERE_H
#define FIX_NPT_ASPHERE_H
#ifdef FIX_CLASS

FixStyle(npt/asphere,FixNPTAsphere)

#else

#ifndef LMP_FIX_NPT_ASPHERE_H
#define LMP_FIX_NPT_ASPHERE_H

#include "fix_npt.h"

@@ -39,3 +45,4 @@ class FixNPTAsphere : public FixNPT {
}

#endif
#endif
Loading