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

This commit is contained in:
sjplimp 2009-08-18 15:27:23 +00:00
parent d0b360b79f
commit 6ad8e26bf0
1 changed files with 3 additions and 3 deletions

View File

@ -22,6 +22,9 @@ class Velocity : protected Pointers {
public: public:
Velocity(class LAMMPS *); Velocity(class LAMMPS *);
void command(int, char **); void command(int, char **);
void init_external(char *);
void options(int, char **);
void create(double, int);
private: private:
int igroup,groupbit; int igroup,groupbit;
@ -30,7 +33,6 @@ class Velocity : protected Pointers {
double xscale,yscale,zscale; double xscale,yscale,zscale;
class Compute *temperature; class Compute *temperature;
void create(int, char **);
void set(int, char **); void set(int, char **);
void scale(int, char **); void scale(int, char **);
void ramp(int, char **); void ramp(int, char **);
@ -39,8 +41,6 @@ class Velocity : protected Pointers {
void rescale(double, double); void rescale(double, double);
void zero_momentum(); void zero_momentum();
void zero_rotation(); void zero_rotation();
void options(int, char **);
}; };
} }