PSCF v1.4.0
TrajectoryReader.cu
1/*
2* PSCF - Polymer Self-Consistent Field
3*
4* Copyright 2015 - 2025, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "TrajectoryReader.h"
9
10namespace Pscf {
11namespace Rpg {
12
13 /*
14 * Constructor.
15 */
16 template <int D>
20
21}
22}
23
24// Explicit instantiation declarations
25namespace Pscf {
26 namespace Rp {
27 template class TrajectoryReader<1, Rpg::Types<1> >;
28 template class TrajectoryReader<2, Rpg::Types<2> >;
29 template class TrajectoryReader<3, Rpg::Types<3> >;
30 }
31 namespace Rpg {
32 template class TrajectoryReader<1>;
33 template class TrajectoryReader<2>;
34 template class TrajectoryReader<3>;
35 }
36}
Main class, representing a complete physical system.
Trajectory file reader (base class).
TrajectoryReader(System< D > &system)
Constructor.
List of aliases for types used in the Rpg program-level namespace.
Class templates for real-valued periodic fields.
SCFT and PS-FTS with real periodic fields (GPU)
PSCF package top-level namespace.