PSCF v1.4.0
AnalyzerManager.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 "AnalyzerManager.h" // class header
9#include "AnalyzerFactory.h"
10#include <rp/fts/analyzer/AnalyzerManager.tpp> // base class implementation
11
12namespace Pscf {
13namespace Rpg {
14
15 // Constructor.
16 template <int D>
18 System<D>& system)
19 : Rp::AnalyzerManager<D, Types<D> >(simulator, system)
20 {}
21
22}
23}
24
25// Explicit instantiation declarations
26namespace Pscf {
27 namespace Rp {
28 template class AnalyzerManager<1, Rpg::Types<1> >;
29 template class AnalyzerManager<2, Rpg::Types<2> >;
30 template class AnalyzerManager<3, Rpg::Types<3> >;
31 }
32 namespace Rpg {
33 template class AnalyzerManager<1>;
34 template class AnalyzerManager<2>;
35 template class AnalyzerManager<3>;
36 }
37}
Manager for a list of Analyzer objects.
AnalyzerManager(Simulator< D > &simulator, System< D > &system)
Constructor.
Field theoretic simulator (base class).
Main class, representing a complete physical system.
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.