PSCF v1.2
TWave.h
1#ifndef PSSP_TWAVE_H
2#define PSSP_TWAVE_H
3/*
4* PSCF - Polymer Self-Consistent Field Theory
5*
6* Copyright 2016 - 2022, The Regents of the University of Minnesota
7* Distributed under the terms of the GNU General Public License.
8*/
9
10#include <pscf/math/IntVec.h>
11
12namespace Pscf {
13namespace Prdc {
14
15 using namespace Util;
16
22 template <int D>
23 struct TWave
24 {
25 double sqNorm;
26 double phase;
27 IntVec<D> indicesDft;
28 IntVec<D> indicesBz;
29 };
30
38 template <int D>
40
44 bool operator() (const TWave<D>& a, const TWave<D>& b) const
45 { return (a.sqNorm < b.sqNorm); }
46
47 };
48
56 template <int D>
57 struct TWaveDftComp {
58
62 bool operator() (const TWave<D>& a, const TWave<D>& b) const
63 { return (a.indicesDft < b.indicesDft); }
64
65 };
66
74 template <int D>
75 struct TWaveBzComp {
76
80 bool operator() (const TWave<D>& a, const TWave<D>& b) const
81 { return (a.indicesBz > b.indicesBz); }
82
83 };
84
85} // namespace Pscf::Prdc
86} // namespace Pscf
87#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
Comparator for TWave objects, based on TWave::indicesBz.
Definition TWave.h:75
bool operator()(const TWave< D > &a, const TWave< D > &b) const
Function (a, b) returns true iff a.indicesBz > b.indicesBz.
Definition TWave.h:80
Comparator for TWave objects, based on TWave::indicesDft.
Definition TWave.h:57
bool operator()(const TWave< D > &a, const TWave< D > &b) const
Function (a, b) returns true iff a.indicesDft < b.indicesDft.
Definition TWave.h:62
Comparator for TWave objects, based on TWave::sqNorm.
Definition TWave.h:39
bool operator()(const TWave< D > &a, const TWave< D > &b) const
Function (a, b) returns true iff a.sqNorm < b.sqNorm.
Definition TWave.h:44
Simple wave struct for use within Basis construction.
Definition TWave.h:24