PSCF v1.2
rpg/scft/sweep/FieldState.tpp
1#ifndef RPG_FIELD_STATE_TPP
2#define RPG_FIELD_STATE_TPP
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "FieldState.h"
12
13#include <rpg/System.h>
14#include <prdc/cuda/FFT.h>
15#include <prdc/crystal/Basis.h>
16#include <pscf/mesh/Mesh.h>
17#include <util/misc/FileMaster.h>
18
19// #include <util/format/Str.h>
20// #include <util/format/Int.h>
21// #include <util/format/Dbl.h>
22
23namespace Pscf {
24namespace Rpg
25{
26
27 using namespace Util;
28 using namespace Pscf::Prdc;
29
30 /*
31 * Constructor.
32 */
33 template <int D, class FT>
35 : fields_(),
36 unitCell_(),
37 systemPtr_(0)
38 {}
39
40 /*
41 * Constructor.
42 */
43 template <int D, class FT>
45 : fields_(),
46 unitCell_(),
47 systemPtr_(0)
48 { setSystem(system); }
49
50 /*
51 * Destructor.
52 */
53 template <int D, class FT>
56
57 /*
58 * Set association with system, after default construction.
59 */
60 template <int D, class FT>
62 {
63 if (hasSystem()) {
64 UTIL_CHECK(systemPtr_ = &system);
65 } else {
66 systemPtr_ = &system;
67 }
68 }
69
70} // namespace Rpg
71} // namespace Pscf
72#endif
System< D > & system()
Get associated System by reference.
void setSystem(System< D > &system)
Set association with System, after default construction.
Main class for calculations that represent one system.
Definition rpg/System.h:107
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.