Simpatico  v1.10
GroupIterator.h
1 #ifndef DDMD_GROUP_ITERATOR_H
2 #define DDMD_GROUP_ITERATOR_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <util/containers/PArrayIterator.h>
12 
13 namespace DdMd
14 {
15 
16  using namespace Util;
17  template <int N> class Group;
18 
24  template <int N>
25  class GroupIterator : public PArrayIterator< Group<N> >
26  {};
27 
28 }
29 #endif
Parallel domain decomposition (DD) MD simulation.
Iterator for all Group < N > objects owned by a GroupStorage< N >.
Definition: GroupIterator.h:25
Utility classes for scientific computation.
Definition: accumulators.mod:1
Forward iterator for a PArray.
Definition: ArraySet.h:19