Simpatico  v1.10
AtomIterator.h
1 #ifndef DDMD_ATOM_ITERATOR_H
2 #define DDMD_ATOM_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  class Atom;
18 
24  class AtomIterator : public PArrayIterator<Atom>
25  {};
26 
27 }
28 #endif
Parallel domain decomposition (DD) MD simulation.
Utility classes for scientific computation.
Definition: accumulators.mod:1
Forward iterator for a PArray.
Definition: ArraySet.h:19
Iterator for all atoms owned by an AtomStorage.
Definition: AtomIterator.h:24