Chemical Data Processing Library C++ API - Version 1.2.1
AtomHydrophobicityCalculator.hpp
Go to the documentation of this file.
1 /*
2  * AtomHydrophobicityCalculator.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_MOLPROP_ATOMHYDROPHOBICITYCALCULATOR_HPP
30 #define CDPL_MOLPROP_ATOMHYDROPHOBICITYCALCULATOR_HPP
31 
32 #include <string>
33 #include <vector>
34 
36 #include "CDPL/Chem/Fragment.hpp"
37 #include "CDPL/Util/Array.hpp"
38 
39 
40 namespace CDPL
41 {
42 
43  namespace MolProp
44  {
45 
50  {
51 
52  public:
57 
63 
70 
75 
81  void calculate(const Chem::MolecularGraph& molgraph, Util::DArray& hyd_table);
82 
89 
90  private:
91  typedef std::vector<std::string> StringList;
92  typedef std::vector<unsigned int> UIntArray;
93 
94  void calcHydrophobicities(const Chem::MolecularGraph& molgraph, Util::DArray& atom_hyds);
95 
96  double calcAccessibleSurfaceFactor(const Chem::Atom& atom, const Chem::MolecularGraph& molgraph);
97 
98  Chem::Fragment atomEnvironment;
99  UIntArray cat9To11Counts;
100  UIntArray cat13Counts;
101  std::string atomDescr;
102  StringList atomEnvData;
103  };
104  } // namespace MolProp
105 } // namespace CDPL
106 
107 #endif // CDPL_MOLPROP_ATOMHYDROPHOBICITYCALCULATOR_HPP
Definition of the class CDPL::Util::Array.
Definition of the class CDPL::Chem::Fragment.
Definition of the preprocessor macro CDPL_MOLPROP_API.
#define CDPL_MOLPROP_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Atom.
Definition: Atom.hpp:52
Fragment.
Definition: Fragment.hpp:52
MolecularGraph.
Definition: MolecularGraph.hpp:52
Implements Greene's algorithm [CATA] for the calculation of atom hydrophobicities.
Definition: AtomHydrophobicityCalculator.hpp:50
AtomHydrophobicityCalculator(const AtomHydrophobicityCalculator &calculator)
Constructs a copy of the AtomHydrophobicityCalculator instance calculator.
AtomHydrophobicityCalculator & operator=(const AtomHydrophobicityCalculator &calculator)
Copies the AtomHydrophobicityCalculator instance calculator.
void calculate(const Chem::MolecularGraph &molgraph, Util::DArray &hyd_table)
Perceives the hydrophobicities of the atoms in the molecular graph a\ molgraph.
AtomHydrophobicityCalculator(const Chem::MolecularGraph &molgraph, Util::DArray &hyd_table)
Perceives the hydrophobicities of the atoms in the molecular graph a\ molgraph.
AtomHydrophobicityCalculator()
Constructs the AtomHydrophobicityCalculator instance.
Array< double > DArray
An array of double precision floating-point numbers.
Definition: Array.hpp:587
The namespace of the Chemical Data Processing Library.