PSCF v1.1
Iterator.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 "Iterator.h"
9#include <fd1d/System.h>
10#include <fd1d/domain/Domain.h>
11#include <fd1d/solvers/Mixture.h>
12
13namespace Pscf {
14namespace Fd1d
15{
16
17 using namespace Util;
18
20 { setClassName("Iterator"); }
21
23 : SystemAccess(system)
24 { setClassName("Iterator"); }
25
27 {}
28
29} // namespace Fd1d
30} // namespace Pscf
Iterator()
Default constructor.
Definition: Iterator.cpp:19
~Iterator()
Destructor.
Definition: Iterator.cpp:26
Concise accesss to an associated System.
Definition: SystemAccess.h:28
Main class in SCFT simulation of one system.
Definition: fd1d/System.h:63
void setClassName(const char *className)
Set class name string.
C++ namespace for polymer self-consistent field theory (PSCF).
Utility classes for scientific computation.
Definition: accumulators.mod:1