Simpatico  v1.10
getAtomGroups.h
1 #ifndef MCMD_GET_ATOM_GROUPS_H
2 #define MCMD_GET_ATOM_GROUPS_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/FSArray.h> // used in typedefs
12 #ifdef SIMP_BOND
13 #include <mcMd/chemistry/Bond.h> // typedef
14 #endif
15 #ifdef SIMP_ANGLE
16 #include <mcMd/chemistry/Angle.h> // typedef
17 #endif
18 #ifdef SIMP_DIHEDRAL
19 #include <mcMd/chemistry/Dihedral.h> // typedef
20 #endif
21 #include <simp/species/Species.h> // used in typedefs
22 
23 namespace McMd
24 {
25 
26  using namespace Util;
27  using namespace Simp;
28 
29  class Atom;
30  class Molecule;
31 
32  #ifdef SIMP_BOND
33 
38 
45  void getAtomBonds(const Atom& atom, AtomBondArray& bonds);
46  #endif
47 
48  #ifdef SIMP_ANGLE
49 
54 
61  void getAtomAngles(const Atom& atom, AtomAngleArray& angles);
62  #endif
63 
64  #ifdef SIMP_DIHEDRAL
65 
70 
77  void
78  getAtomDihedrals(const Atom& atom, AtomDihedralArray& dihedrals);
79  #endif
80 
81 }
82 #endif
Classes used by all simpatico molecular simulations.
void getAtomDihedrals(const Atom &atom, AtomDihedralArray &groups)
Fill an array of pointers to Dihedrals that contain an Atom.
A fixed capacity (static) contiguous array with a variable logical size.
Definition: FSArray.h:37
void getAtomAngles(const Atom &atom, AtomAngleArray &groups)
Fill an array of pointers to Angles that contain an Atom.
A point particle within a Molecule.
Utility classes for scientific computation.
Definition: accumulators.mod:1
FSArray< const Bond *, Species::MaxBondPerAtom > AtomBondArray
Array to hold pointers to bonds that contain a specific atom.
Definition: getAtomGroups.h:30
FSArray< const Angle *, Simp::Species::MaxAnglePerAtom > AtomAngleArray
Array to hold pointers to angles that contain a specific atom.
Definition: getAtomGroups.h:53
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
A physical molecule (a set of covalently bonded Atoms).
FSArray< const Dihedral *, Simp::Species::MaxDihedralPerAtom > AtomDihedralArray
Array to hold pointers to Dihedrals that contain a specific atom.
Definition: getAtomGroups.h:69
void getAtomBonds(const Atom &atom, AtomBondArray &groups)
Fill an array of pointers to Bonds that contain an Atom.