Chemical Data Processing Library C++ API - Version 1.1.1
Pharm/FeatureType.hpp
Go to the documentation of this file.
1 /*
2  * FeatureType.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_PHARM_FEATURETYPE_HPP
30 #define CDPL_PHARM_FEATURETYPE_HPP
31 
32 
33 namespace CDPL
34 {
35 
36  namespace Pharm
37  {
38 
42  namespace FeatureType
43  {
44 
45  const unsigned int UNKNOWN = 0;
46 
47  const unsigned int HYDROPHOBIC = 1;
48 
49  const unsigned int AROMATIC = 2;
50 
51  const unsigned int NEGATIVE_IONIZABLE = 3;
52 
53  const unsigned int POSITIVE_IONIZABLE = 4;
54 
55  const unsigned int H_BOND_DONOR = 5;
56 
57  const unsigned int H_BOND_ACCEPTOR = 6;
58 
59  const unsigned int HALOGEN_BOND_DONOR = 7;
60 
61  const unsigned int HALOGEN_BOND_ACCEPTOR = 8;
62 
63  const unsigned int EXCLUSION_VOLUME = 9;
64 
65  const unsigned int MAX_TYPE = EXCLUSION_VOLUME;
66  } // namespace FeatureType
67  } // namespace Pharm
68 } // namespace CDPL
69 
70 #endif // CDPL_PHARM_FEATURETYPE_HPP
CDPL::Pharm::FeatureType::AROMATIC
const unsigned int AROMATIC
Definition: Pharm/FeatureType.hpp:49
CDPL::Pharm::FeatureType::POSITIVE_IONIZABLE
const unsigned int POSITIVE_IONIZABLE
Definition: Pharm/FeatureType.hpp:53
CDPL::Pharm::FeatureType::MAX_TYPE
const unsigned int MAX_TYPE
Definition: Pharm/FeatureType.hpp:65
CDPL::Pharm::FeatureType::H_BOND_ACCEPTOR
const unsigned int H_BOND_ACCEPTOR
Definition: Pharm/FeatureType.hpp:57
CDPL::Pharm::FeatureType::UNKNOWN
const unsigned int UNKNOWN
Definition: Pharm/FeatureType.hpp:45
CDPL::Pharm::FeatureType::H_BOND_DONOR
const unsigned int H_BOND_DONOR
Definition: Pharm/FeatureType.hpp:55
CDPL::Pharm::FeatureType::HALOGEN_BOND_ACCEPTOR
const unsigned int HALOGEN_BOND_ACCEPTOR
Definition: Pharm/FeatureType.hpp:61
CDPL
The namespace of the Chemical Data Processing Library.
CDPL::Pharm::FeatureType::HALOGEN_BOND_DONOR
const unsigned int HALOGEN_BOND_DONOR
Definition: Pharm/FeatureType.hpp:59
CDPL::Pharm::FeatureType::HYDROPHOBIC
const unsigned int HYDROPHOBIC
Definition: Pharm/FeatureType.hpp:47
CDPL::Pharm::FeatureType::NEGATIVE_IONIZABLE
const unsigned int NEGATIVE_IONIZABLE
Definition: Pharm/FeatureType.hpp:51
CDPL::Pharm::FeatureType::EXCLUSION_VOLUME
const unsigned int EXCLUSION_VOLUME
Definition: Pharm/FeatureType.hpp:63