Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifdef FIX_CLASS
- FixStyle(set,FixSet)
- #else
- #ifndef LMP_FIX_SET_H
- #define LMP_FIX_SET_H
- #include "fix.h"
- #include <string>
- #include <vector>
- #include <map>
- using namespace std;
- namespace LAMMPS_NS {
- class FixSet : public Fix {
- public:
- FixSet(class LAMMPS *, int narg, char **arg);
- ~FixSet();
- virtual int setmask();
- //void final_integrate();
- void end_of_step();
- virtual void init(){};
- private:
- int iregion;
- float vx,vy,vz;
- };
- }
- #endif
- #endif
Advertisement
Add Comment
Please, Sign In to add comment