PSCF v1.2
rpc/field/FieldIo.cpp
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 "FieldIo.tpp"
9#include <util/math/Constants.h>
10
11namespace Pscf {
12
13namespace Prdc {
14
15 using namespace Cpu;
16
17 // Explicit instantiation
18 template class FieldIoReal<1, RField<1>, RFieldDft<1>, FFT<1> >;
19 template class FieldIoReal<2, RField<2>, RFieldDft<2>, FFT<2> >;
20 template class FieldIoReal<3, RField<3>, RFieldDft<3>, FFT<3> >;
21}
22
23namespace Rpc {
24
25 using namespace Prdc::Cpu;
26
27 // Explicit instantiations
28 template class FieldIo<1>;
29 template class FieldIo<2>;
30 template class FieldIo<3>;
31
32}
33
34} // namespace Pscf
PSCF package top-level namespace.
Definition param_pc.dox:1