Chemical Data Processing Library C++ API - Version 1.4.0
ForceField/AtomFunctions.hpp
Go to the documentation of this file.
1 /*
2  * AtomFunctions.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_ATOMFUNCTIONS_HPP
30 #define CDPL_FORCEFIELD_ATOMFUNCTIONS_HPP
31 
32 #include <string>
33 
35 
36 
37 namespace CDPL
38 {
39 
40  namespace Chem
41  {
42 
43  class Atom;
44  class MolecularGraph;
45  } // namespace Chem
46 
47  namespace ForceField
48  {
49 
55  CDPL_FORCEFIELD_API const std::string& getMMFF94SymbolicType(const Chem::Atom& atom);
56 
62  CDPL_FORCEFIELD_API void setMMFF94SymbolicType(Chem::Atom& atom, const std::string& type);
63 
69 
76 
77 
84 
90  CDPL_FORCEFIELD_API void setMMFF94NumericType(Chem::Atom& atom, unsigned int type);
91 
97 
104 
105 
112 
118  CDPL_FORCEFIELD_API void setMMFF94Charge(Chem::Atom& atom, double charge);
119 
125 
132 
133 
139  CDPL_FORCEFIELD_API unsigned int getUFFType(const Chem::Atom& atom);
140 
146  CDPL_FORCEFIELD_API void setUFFType(Chem::Atom& atom, unsigned int type);
147 
153 
160 
167  CDPL_FORCEFIELD_API unsigned int perceiveUFFType(const Chem::Atom& atom, const Chem::MolecularGraph& molgraph);
168  } // namespace ForceField
169 } // namespace CDPL
170 
171 #endif // CDPL_FORCEFIELD_ATOMFUNCTIONS_HPP
Definition of the preprocessor macro CDPL_FORCEFIELD_API.
#define CDPL_FORCEFIELD_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Abstract base class representing a chemical atom and its bonded neighborhood.
Definition: Atom.hpp:57
Abstract base class for representations of a chemical structure as a graph of bonded atoms.
Definition: MolecularGraph.hpp:57
CDPL_FORCEFIELD_API void clearMMFF94SymbolicType(Chem::Atom &atom)
Removes the ForceField::AtomProperty::MMFF94_SYMBOLIC_TYPE property from atom.
CDPL_FORCEFIELD_API void setMMFF94Charge(Chem::Atom &atom, double charge)
Sets the value of the ForceField::AtomProperty::MMFF94_CHARGE property of atom to charge.
CDPL_FORCEFIELD_API bool hasMMFF94Charge(const Chem::Atom &atom)
Tells whether atom carries an explicit ForceField::AtomProperty::MMFF94_CHARGE property.
CDPL_FORCEFIELD_API unsigned int getUFFType(const Chem::Atom &atom)
Returns the value of the ForceField::AtomProperty::UFF_TYPE property of atom.
CDPL_FORCEFIELD_API void setMMFF94SymbolicType(Chem::Atom &atom, const std::string &type)
Sets the value of the ForceField::AtomProperty::MMFF94_SYMBOLIC_TYPE property of atom to type.
CDPL_FORCEFIELD_API void clearMMFF94Charge(Chem::Atom &atom)
Removes the ForceField::AtomProperty::MMFF94_CHARGE property from atom.
CDPL_FORCEFIELD_API void setMMFF94NumericType(Chem::Atom &atom, unsigned int type)
Sets the value of the ForceField::AtomProperty::MMFF94_NUMERIC_TYPE property of atom to type.
CDPL_FORCEFIELD_API bool hasUFFType(const Chem::Atom &atom)
Tells whether atom carries an explicit ForceField::AtomProperty::UFF_TYPE property.
CDPL_FORCEFIELD_API void clearUFFType(Chem::Atom &atom)
Removes the ForceField::AtomProperty::UFF_TYPE property from atom.
CDPL_FORCEFIELD_API double getMMFF94Charge(const Chem::Atom &atom)
Returns the value of the ForceField::AtomProperty::MMFF94_CHARGE property of atom.
CDPL_FORCEFIELD_API bool hasMMFF94NumericType(const Chem::Atom &atom)
Tells whether atom carries an explicit ForceField::AtomProperty::MMFF94_NUMERIC_TYPE property.
CDPL_FORCEFIELD_API void setUFFType(Chem::Atom &atom, unsigned int type)
Sets the value of the ForceField::AtomProperty::UFF_TYPE property of atom to type.
CDPL_FORCEFIELD_API bool hasMMFF94SymbolicType(const Chem::Atom &atom)
Tells whether atom carries an explicit ForceField::AtomProperty::MMFF94_SYMBOLIC_TYPE property.
CDPL_FORCEFIELD_API unsigned int perceiveUFFType(const Chem::Atom &atom, const Chem::MolecularGraph &molgraph)
Perceives the UFF atom type of atom in the context of the molecular graph molgraph.
CDPL_FORCEFIELD_API void clearMMFF94NumericType(Chem::Atom &atom)
Removes the ForceField::AtomProperty::MMFF94_NUMERIC_TYPE property from atom.
CDPL_FORCEFIELD_API const std::string & getMMFF94SymbolicType(const Chem::Atom &atom)
Returns the value of the ForceField::AtomProperty::MMFF94_SYMBOLIC_TYPE property of atom.
CDPL_FORCEFIELD_API unsigned int getMMFF94NumericType(const Chem::Atom &atom)
Returns the value of the ForceField::AtomProperty::MMFF94_NUMERIC_TYPE property of atom.
The namespace of the Chemical Data Processing Library.