Guest User

fix_set.h

a guest
Apr 3rd, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #ifdef FIX_CLASS
  2.  
  3. FixStyle(set,FixSet)
  4.  
  5. #else
  6.  
  7. #ifndef LMP_FIX_SET_H
  8. #define LMP_FIX_SET_H
  9.  
  10. #include "fix.h"
  11. #include <string>
  12. #include <vector>
  13. #include <map>
  14.  
  15. using namespace std;
  16. namespace LAMMPS_NS {
  17.  
  18. class FixSet : public Fix  {
  19.  public:
  20.   FixSet(class LAMMPS *, int narg, char **arg);
  21.   ~FixSet();
  22.  
  23.   virtual int setmask();
  24.   //void final_integrate();
  25.   void end_of_step();
  26.   virtual void init(){};
  27.  
  28.  private:
  29.  
  30.   int iregion;
  31.   float vx,vy,vz;
  32.  
  33.  };
  34.  
  35. }
  36.  
  37. #endif
  38. #endif
Advertisement
Add Comment
Please, Sign In to add comment