Chemical Data Processing Library C++ API - Version 1.1.1
MMFF94OutOfPlaneBendingParameterTable.hpp
Go to the documentation of this file.
1 /*
2  * MMFF94OutOfPlaneBendingParameterTable.hpp
3  *
4  * This file is part of the Chemical Data Processing Toolkit
5  *
6  * Copyright (C) 2003 Thomas Seidel <thomas.seidel@univie.ac.at>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this library; see the file COPYING. If not, write to
20  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23 
29 #ifndef CDPL_FORCEFIELD_MMFF94OUTOFPLANEBENDINGPARAMETERTABLE_HPP
30 #define CDPL_FORCEFIELD_MMFF94OUTOFPLANEBENDINGPARAMETERTABLE_HPP
31 
32 #include <cstddef>
33 #include <cstdint>
34 #include <iosfwd>
35 #include <unordered_map>
36 #include <memory>
37 #include <functional>
38 
39 #include <boost/iterator/transform_iterator.hpp>
40 
42 
43 
44 namespace CDPL
45 {
46 
47  namespace ForceField
48  {
49 
51  {
52 
53  public:
54  class Entry;
55 
56  private:
57  typedef std::unordered_map<std::uint32_t, Entry> DataStorage;
58 
59  public:
60  typedef std::shared_ptr<MMFF94OutOfPlaneBendingParameterTable> SharedPointer;
61 
63  {
64 
65  public:
66  Entry();
67 
68  Entry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type,
69  unsigned int oop_atom_type, double force_const);
70 
71  unsigned int getTerminalAtom1Type() const;
72 
73  unsigned int getTerminalAtom2Type() const;
74 
75  unsigned int getCenterAtomType() const;
76 
77  unsigned int getOutOfPlaneAtomType() const;
78 
79  double getForceConstant() const;
80 
81  operator bool() const;
82 
83  private:
84  unsigned int termAtom1Type;
85  unsigned int ctrAtomType;
86  unsigned int termAtom2Type;
87  unsigned int oopAtomType;
88  double forceConst;
89  bool initialized;
90  };
91 
92  typedef boost::transform_iterator<std::function<const Entry&(const DataStorage::value_type&)>,
93  DataStorage::const_iterator>
95 
96  typedef boost::transform_iterator<std::function<Entry&(DataStorage::value_type&)>,
97  DataStorage::iterator>
99 
101 
102  void addEntry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type,
103  unsigned int oop_atom_type, double force_const);
104 
105  const Entry& getEntry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type,
106  unsigned int oop_atom_type) const;
107 
108  std::size_t getNumEntries() const;
109 
110  void clear();
111 
112  bool removeEntry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type,
113  unsigned int oop_atom_type);
114 
116 
118 
120 
122 
124 
126 
128 
130 
132 
133  void load(std::istream& is);
134 
135  void loadDefaults(unsigned int param_set);
136 
137  static void set(const SharedPointer& table, unsigned int param_set);
138 
139  static const SharedPointer& get(unsigned int param_set);
140 
141  private:
142  static SharedPointer defaultDynTable;
143  static SharedPointer defaultStatTable;
144  static SharedPointer defaultStatExtTable;
145  DataStorage entries;
146  };
147  } // namespace ForceField
148 } // namespace CDPL
149 
150 #endif // CDPL_FORCEFIELD_MMFF94OUTOFPLANEBENDINGPARAMETERTABLE_HPP
APIPrefix.hpp
Definition of the preprocessor macro CDPL_FORCEFIELD_API.
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::end
EntryIterator end()
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::getEntriesBegin
EntryIterator getEntriesBegin()
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry::getCenterAtomType
unsigned int getCenterAtomType() const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::getEntriesEnd
EntryIterator getEntriesEnd()
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::MMFF94OutOfPlaneBendingParameterTable
MMFF94OutOfPlaneBendingParameterTable()
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::getEntriesEnd
ConstEntryIterator getEntriesEnd() const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::removeEntry
bool removeEntry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type, unsigned int oop_atom_type)
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::addEntry
void addEntry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type, unsigned int oop_atom_type, double force_const)
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry::getTerminalAtom2Type
unsigned int getTerminalAtom2Type() const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::clear
void clear()
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::ConstEntryIterator
boost::transform_iterator< std::function< const Entry &(const DataStorage::value_type &)>, DataStorage::const_iterator > ConstEntryIterator
Definition: MMFF94OutOfPlaneBendingParameterTable.hpp:94
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry::Entry
Entry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type, unsigned int oop_atom_type, double force_const)
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry::getTerminalAtom1Type
unsigned int getTerminalAtom1Type() const
bool
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry::Entry
Entry()
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry::getForceConstant
double getForceConstant() const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::set
static void set(const SharedPointer &table, unsigned int param_set)
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry::getOutOfPlaneAtomType
unsigned int getOutOfPlaneAtomType() const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::load
void load(std::istream &is)
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::get
static const SharedPointer & get(unsigned int param_set)
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::end
ConstEntryIterator end() const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::getEntry
const Entry & getEntry(unsigned int term_atom1_type, unsigned int ctr_atom_type, unsigned int term_atom2_type, unsigned int oop_atom_type) const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::begin
ConstEntryIterator begin() const
CDPL
The namespace of the Chemical Data Processing Library.
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::Entry
Definition: MMFF94OutOfPlaneBendingParameterTable.hpp:63
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::loadDefaults
void loadDefaults(unsigned int param_set)
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable
Definition: MMFF94OutOfPlaneBendingParameterTable.hpp:51
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::begin
EntryIterator begin()
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::getNumEntries
std::size_t getNumEntries() const
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::removeEntry
EntryIterator removeEntry(const EntryIterator &it)
CDPL_FORCEFIELD_API
#define CDPL_FORCEFIELD_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::SharedPointer
std::shared_ptr< MMFF94OutOfPlaneBendingParameterTable > SharedPointer
Definition: MMFF94OutOfPlaneBendingParameterTable.hpp:60
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::EntryIterator
boost::transform_iterator< std::function< Entry &(DataStorage::value_type &)>, DataStorage::iterator > EntryIterator
Definition: MMFF94OutOfPlaneBendingParameterTable.hpp:98
CDPL::ForceField::MMFF94OutOfPlaneBendingParameterTable::getEntriesBegin
ConstEntryIterator getEntriesBegin() const