PSCF v1.4.0
cpu/RFieldComparison.h
1#ifndef PRDC_CPU_R_FIELD_COMPARISON_H
2#define PRDC_CPU_R_FIELD_COMPARISON_H
3
4/*
5* PSCF - Polymer Self-Consistent Field
6*
7* Copyright 2015 - 2025, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <pscf/math/FieldComparison.h> // base class template
12#include "RField.h" // base class template argument
13
14namespace Pscf {
15namespace Prdc {
16namespace Cpu {
17
18 using namespace Util;
19
25 template <int D>
26 class RFieldComparison : public FieldComparison< RField<D> >
27 {};
28
29 // Explicit instantiation declarations
30 extern template class RFieldComparison<1>;
31 extern template class RFieldComparison<2>;
32 extern template class RFieldComparison<3>;
33
34} // namespace Cpu
35} // namespace Prdc
36} // namespace Pscf
37#endif
Comparator for fields in real-space (r-grid) format.
Fields and FFTs for periodic boundary conditions (CPU)
Definition complex.cpp:12
Periodic fields and crystallography.
Definition complex.cpp:11
PSCF package top-level namespace.