Chemical Data Processing Library C++ API - Version 1.1.1
MOL2ChargeType.hpp
Go to the documentation of this file.
1 /*
2  * MOL2ChargeType.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_CHEM_MOL2CHARGETYPE_HPP
30 #define CDPL_CHEM_MOL2CHARGETYPE_HPP
31 
32 
33 namespace CDPL
34 {
35 
36  namespace Chem
37  {
38 
42  namespace MOL2ChargeType
43  {
44 
45  const unsigned int UNKNOWN = 0;
46  const unsigned int NO_CHARGES = 1;
47  const unsigned int DEL_RE = 2;
48  const unsigned int GASTEIGER = 3;
49  const unsigned int GAST_HUCK = 4;
50  const unsigned int HUCKEL = 5;
51  const unsigned int PULLMAN = 6;
52  const unsigned int GAUSS80 = 7;
53  const unsigned int AMPAC = 8;
54  const unsigned int MULLIKEN = 9;
55  const unsigned int DICT = 10;
56  const unsigned int MMFF94 = 11;
57  const unsigned int USER = 12;
58  } // namespace MOL2ChargeType
59  } // namespace Chem
60 } // namespace CDPL
61 
62 #endif // CDPL_CHEM_MOL2CHARGETYPE_HPP
CDPL::Chem::MOL2ChargeType::MMFF94
const unsigned int MMFF94
Definition: MOL2ChargeType.hpp:56
CDPL::Chem::MOL2ChargeType::DEL_RE
const unsigned int DEL_RE
Definition: MOL2ChargeType.hpp:47
CDPL::Chem::MOL2ChargeType::GASTEIGER
const unsigned int GASTEIGER
Definition: MOL2ChargeType.hpp:48
CDPL::Chem::MOL2ChargeType::MULLIKEN
const unsigned int MULLIKEN
Definition: MOL2ChargeType.hpp:54
CDPL::Chem::MOL2ChargeType::AMPAC
const unsigned int AMPAC
Definition: MOL2ChargeType.hpp:53
CDPL::Chem::MOL2ChargeType::GAUSS80
const unsigned int GAUSS80
Definition: MOL2ChargeType.hpp:52
CDPL::Chem::MOL2ChargeType::NO_CHARGES
const unsigned int NO_CHARGES
Definition: MOL2ChargeType.hpp:46
CDPL::Chem::MOL2ChargeType::DICT
const unsigned int DICT
Definition: MOL2ChargeType.hpp:55
CDPL::Chem::MOL2ChargeType::UNKNOWN
const unsigned int UNKNOWN
Definition: MOL2ChargeType.hpp:45
CDPL::Chem::MOL2ChargeType::PULLMAN
const unsigned int PULLMAN
Definition: MOL2ChargeType.hpp:51
CDPL::Chem::MOL2ChargeType::USER
const unsigned int USER
Definition: MOL2ChargeType.hpp:57
CDPL
The namespace of the Chemical Data Processing Library.
CDPL::Chem::MOL2ChargeType::HUCKEL
const unsigned int HUCKEL
Definition: MOL2ChargeType.hpp:50
CDPL::Chem::MOL2ChargeType::GAST_HUCK
const unsigned int GAST_HUCK
Definition: MOL2ChargeType.hpp:49