PSCF v1.2
WaveList.cu
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "WaveList.tpp"
9
10namespace Pscf {
11namespace Rpg
12{
13
14 using namespace Util;
15
16 // Explicit specializations
17 template <>
19 { return false; }
20
21 template <>
23 {
24 UTIL_CHECK(unitCell().lattice() != UnitCell<2>::Null);
25 if ((unitCell().lattice() == UnitCell<2>::Oblique) ||
26 (unitCell().lattice() == UnitCell<2>::Rhombic)) {
27 return true;
28 } else {
29 return false;
30 }
31 }
32
33 template <>
35 {
36 UTIL_CHECK(unitCell().lattice() != UnitCell<3>::Null);
37 if ((unitCell().lattice() == UnitCell<3>::Monoclinic) ||
38 (unitCell().lattice() == UnitCell<3>::Triclinic) ||
39 (unitCell().lattice() == UnitCell<3>::Rhombohedral)) {
40 return true;
41 } else {
42 return false;
43 }
44 }
45
46 template class WaveList<1>;
47 template class WaveList<2>;
48 template class WaveList<3>;
49
50}
51}
bool hasVariableAngle() const
Does this unit cell have an angle that can change?
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.