PAPRECA hybrid off-lattice kMC/MD simulator  2.0.0 (17 September 2024)
fix_papreca.h
Go to the documentation of this file.
1 #ifdef FIX_CLASS
2 FixStyle(papreca, FixPAPRECA)
3 #else
4 
5 #ifndef LMP_FIX_PAPRECA_H
6 #define LMP_FIX_PAPRECA_H
7 
8 #include "fix.h"
9 
10 namespace LAMMPS_NS {
11 
12 class FixPAPRECA : public Fix {
13  public:
14  FixPAPRECA(class LAMMPS *, int, char **);
15  ~FixPAPRECA();
16  int setmask() override;
17  void init() override;
18  void init_list(int id, NeighList *ptr) override;
19  private:
20  class NeighList *nlist_half;
21  class NeighList *nlist_full;
22 };
23 
24 }
25 
26 #endif
27 #endif
28 
Definition: fix_papreca.h:12
class NeighList * nlist_half
Definition: fix_papreca.h:20
~FixPAPRECA()
Definition: fix_papreca.cpp:20
int setmask() override
Definition: fix_papreca.cpp:26
void init_list(int id, NeighList *ptr) override
Definition: fix_papreca.cpp:44
class NeighList * nlist_full
Definition: fix_papreca.h:21
void init() override
Definition: fix_papreca.cpp:34
FixPAPRECA(class LAMMPS *, int, char **)
Definition: fix_papreca.cpp:12
Definition: fix_papreca.h:10