Make PBC type enumeration into PbcType enum class
[alexxy/gromacs.git] / src / gromacs / listed_forces / gpubondedkernels.cu
index fbb6baee1f5e85caeeef6444da5eb22499f78e1b..a1c81514af0db6272a55b138c312db1fd66afa9f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2018,2019, by the GROMACS development team, led by
+ * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -870,7 +870,7 @@ void GpuBonded::Impl::launchKernel(const t_forcerec* fr, const matrix box)
                   "TPB_BONDED must be >= SHIFTS for the virial kernel (calcVir=true)");
 
     PbcAiuc pbcAiuc;
-    setPbcAiuc(fr->bMolPBC ? ePBC2npbcdim(fr->ePBC) : 0, box, &pbcAiuc);
+    setPbcAiuc(fr->bMolPBC ? numPbcDimensions(fr->pbcType) : 0, box, &pbcAiuc);
 
     int fTypeRangeEnd = kernelParams_.fTypeRangeEnd[numFTypesOnGpu - 1];