From 6ad8e26bf08fd52a3dba8e39a97e0e380fd05953 Mon Sep 17 00:00:00 2001 From: sjplimp Date: Tue, 18 Aug 2009 15:27:23 +0000 Subject: [PATCH] git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@3078 f3b2605a-c512-4ea7-a41b-209d697bcdaa --- src/velocity.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/velocity.h b/src/velocity.h index 01661fdff9..26a3cb9fca 100644 --- a/src/velocity.h +++ b/src/velocity.h @@ -22,6 +22,9 @@ class Velocity : protected Pointers { public: Velocity(class LAMMPS *); void command(int, char **); + void init_external(char *); + void options(int, char **); + void create(double, int); private: int igroup,groupbit; @@ -30,7 +33,6 @@ class Velocity : protected Pointers { double xscale,yscale,zscale; class Compute *temperature; - void create(int, char **); void set(int, char **); void scale(int, char **); void ramp(int, char **); @@ -39,8 +41,6 @@ class Velocity : protected Pointers { void rescale(double, double); void zero_momentum(); void zero_rotation(); - - void options(int, char **); }; }