PSCF v1.2
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 <r1d/System.h>
10#include <r1d/domain/Domain.h>
11#include <r1d/solvers/Mixture.h>
12
13namespace Pscf {
14namespace R1d
15{
16
17 using namespace Util;
18
20 { setClassName("Iterator"); }
21
23 : SystemAccess(system)
24 { setClassName("Iterator"); }
25
28
29} // namespace R1d
30} // namespace Pscf
Iterator()
Default constructor.
Definition Iterator.cpp:19
~Iterator()
Destructor.
Definition Iterator.cpp:26
Concise accesss to an associated System.
Main class in SCFT simulation of one system.
Definition r1d/System.h:65
void setClassName(const char *className)
Set class name string.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.