Simpatico  v1.10
Configuration.cpp
1 /*
2 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
3 *
4 * Copyright 2010 - 2017, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
7 
8 #include "Configuration.h"
9 
10 namespace Tools
11 {
12 
13  /*
14  * Constructor.
15  */
17  : atomCapacity_(0)
18  #ifdef SIMP_BOND
19  , bondCapacity_(0)
20  #endif
21  #ifdef SIMP_ANGLE
22  , angleCapacity_(0)
23  #endif
24  #ifdef SIMP_DIHEDRAL
25  , dihedralCapacity_(0)
26  , improperCapacity_(0)
27  #endif
28  , nSpecies_(0)
29  { setClassName("Configuration"); }
30 
31  /*
32  * Destructor.
33  */
35  {}
36 
37  /*
38  * Open, read and close a parameter file.
39  */
40  void Configuration::readParam(const char* filename)
41  {
42  std::ifstream in;
43  in.open(filename);
44  readParam(in);
45  in.close();
46  }
47 
48  /*
49  * Read parameters from file.
50  */
51  void Configuration::readParameters(std::istream& in)
52  {
53  read<int>(in, "atomCapacity", atomCapacity_);
54 
55  atoms_.allocate(atomCapacity_);
56 
57  #ifdef SIMP_BOND
58  bondCapacity_ = 0; // default value
59  readOptional<int>(in, "bondCapacity", bondCapacity_);
60  // If bondCapacity is absent, it is set to zero by default
61  if (bondCapacity_ > 0) {
62  bonds_.allocate(bondCapacity_);
63  }
64  #endif
65 
66  #ifdef SIMP_ANGLE
67  angleCapacity_ = 0; // default value
68  readOptional<int>(in, "angleCapacity", angleCapacity_);
69  if (angleCapacity_ > 0) {
70  angles_.allocate(angleCapacity_);
71  }
72  #endif
73 
74  #ifdef SIMP_DIHEDRAL
75  dihedralCapacity_ = 0; // default value
76  readOptional<int>(in, "dihedralCapacity", dihedralCapacity_);
77  if (dihedralCapacity_ > 0) {
78  dihedrals_.allocate(dihedralCapacity_);
79  }
80 
81  improperCapacity_ = 0; // default value
82  readOptional<int>(in, "improperCapacity", improperCapacity_);
83  if (improperCapacity_ > 0) {
84  impropers_.allocate(improperCapacity_);
85  }
86  #endif
87 
88  // Optionally read species info
89  nSpecies_ = 0; // default value
90  readOptional<int>(in, "nSpecies", nSpecies_);
91  if (nSpecies_ > 0) {
92  species_.allocate(nSpecies_);
93  for (int i = 0; i < nSpecies_; ++i) {
94  species_[i].setId(i);
95  }
96  readDArray<Species>(in, "species", species_, nSpecies_);
97  }
98 
99  }
100 
101  /*
102  * Remove all atoms and groups - set to empty state.
103  */
105  {
106  atoms_.clear();
107  #ifdef SIMP_BOND
108  if (bondCapacity_ > 0) {
109  bonds_.clear();
110  }
111  #endif
112  #ifdef SIMP_ANGLE
113  if (angleCapacity_ > 0) {
114  angles_.clear();
115  }
116  #endif
117  #ifdef SIMP_DIHEDRAL
118  if (dihedralCapacity_ > 0) {
119  dihedrals_.clear();
120  }
121  if (improperCapacity_ > 0) {
122  impropers_.clear();
123  }
124  #endif
125  }
126 
127 }
void allocate(int capacity)
Allocates the underlying C array.
Definition: DSArray.h:247
void readParam(const char *filename)
Open, read, and close parameter file.
Configuration()
Constructor.
Single-processor classes for pre- and post-processing MD trajectories.
void clear()
Clear all atoms and groups.
~Configuration()
Destructor.
void clear()
Clear all atoms and groups.
void clear()
Set logical size to zero.
Definition: DSArray.h:374
void allocate(int capacity)
Allocate and initialize memory.
void setClassName(const char *className)
Set class name string.
void readParameters(std::istream &in)
Read parameters.