#ifdef FIX_CLASS
FixStyle(wall/reflect/kk,FixWallReflectKokkos<LMPDeviceType>)
FixStyle(wall/reflect/kk/device,FixWallReflectKokkos<LMPDeviceType>)
FixStyle(wall/reflect/kk/host,FixWallReflectKokkos<LMPHostType>)
#else
#ifndef LMP_FIX_WALL_REFLECT_KOKKOS_H
#define LMP_FIX_WALL_REFLECT_KOKKOS_H
#include "fix_wall_reflect.h"
#include "kokkos_type.h"
namespace LAMMPS_NS {
struct TagFixWallReflectPostIntegrate{};
template<class DeviceType>
class FixWallReflectKokkos : public FixWallReflect {
public:
typedef DeviceType device_type;
typedef ArrayTypes<DeviceType> AT;
FixWallReflectKokkos(class LAMMPS *, int, char **);
void post_integrate();
KOKKOS_INLINE_FUNCTION
void operator()(TagFixWallReflectPostIntegrate, const int&) const;
protected:
typename AT::t_x_array x;
typename AT::t_v_array v;
typename AT::t_int_1d_randomread mask;
int dim,side;
X_FLOAT coord;
};
}
#endif
#endif