PSCF v1.2
MeshIteratorFortran.h
1#ifndef PSCF_MESH_ITERATOR_FORTRAN_H
2#define PSCF_MESH_ITERATOR_FORTRAN_H
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 <pscf/math/IntVec.h> // member
12
13namespace Pscf
14{
15
16 using namespace Util;
17
49 template <int D>
51 {
52
53 public:
54
59
71
82
88 void begin();
89
93 void operator ++ ();
94
98 bool atEnd() const;
99
103 int rank() const;
104
112 IntVec<D> const& position() const;
113
117 IntVec<D> const& dimensions() const;
118
122 int size() const;
123
127 IntVec<D> const& offsets() const;
128
129 private:
130
131 // Dimensions of associated Mesh<D> object
132 IntVec<D> dimensions_;
133
134 // Offsets associated with position components
135 IntVec<D> offsets_;
136
137 // Grid position - vector of integer components
138 IntVec<D> position_;
139
140 // Scalar rank of current node
141 int rank_;
142
143 // Mesh size
144 int size_;
145
146 // Has the iterator past the last grid point?
147 bool atEnd_;
148
149 };
150
151 template <int D>
153 { return atEnd_; }
154
155 template <int D>
157 { return rank_; }
158
159 template <int D>
161 { return position_; }
162
163 template <int D>
165 { return dimensions_; }
166
167 template <int D>
169 { return size_; }
170
171 template <int D>
173 { return offsets_; }
174
175 #ifndef PSCF_MESH_ITERATOR_FORTRAN_TPP
176 // Suppress implicit instantiation
177 extern template class MeshIteratorFortran<1>;
178 extern template class MeshIteratorFortran<2>;
179 extern template class MeshIteratorFortran<3>;
180 #endif
181
182}
183#endif
184
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Iterator over points in a mesh in "Fortran" order.
MeshIteratorFortran()
Default constructor.
int rank() const
Return the scalar array rank of the associated grid point.
int size() const
Return the mesh size (the number of grid points).
IntVec< D > const & position() const
Return a vector of coordinates of the associated grid point.
IntVec< D > const & offsets() const
Return the vector of offsets.
void setDimensions(IntVec< D > const &dimensions)
Set or reset the mesh dimensions, and initialize iterator.
void begin()
Initialize the iterator to the first grid point.
bool atEnd() const
Is this the end (i.e., past the last grid point)?
IntVec< D > const & dimensions() const
Return the mesh dimensions as an vector of integers.
void operator++()
Increment the iterator to the next grid point.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.