Simpatico  v1.10
mcMd/chemistry/Mask.h
1 #ifndef MCMD_MASK_H
2 #define MCMD_MASK_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 namespace McMd
12 {
13 
14  class Atom;
15 
28  class Mask
29  {
30 
31  public:
32 
36  Mask();
37 
41  void clear();
42 
48  void append(const Atom& atom);
49 
56  bool isMasked(const Atom& atom) const;
57 
61  int size() const;
62 
63  private:
64 
66  static const int Capacity = 4;
67 
69  const Atom* atomPtrs_[Capacity];
70 
72  int size_;
73 
75  Mask(const Mask& other);
76 
77  };
78 
79  // Inline member functions.
80 
81  /*
82  * Check if an Atom is in the masked set.
83  */
84  inline bool Mask::isMasked(const Atom& atom) const
85  {
86  const Atom* ptr = &atom;
87  for (int i=0; i < size_ ; ++i) {
88  if (atomPtrs_[i] == ptr) return true;
89  }
90  return false;
91  }
92 
93  /*
94  * Return the number of masked atoms.
95  */
96  inline int Mask::size() const
97  { return size_; }
98 
99 }
100 #endif
Set of Atoms for which pair interactions with a target Atom are "masked".
bool isMasked(const Atom &atom) const
True if the atom is in the masked set for the target Atom.
Mask()
Constructor.
A point particle within a Molecule.
void clear()
Clear the mask set (remove all atoms).
int size() const
Return the number of masked atoms.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
void append(const Atom &atom)
Add an Atom to the masked set.