[afb7c0] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2016 Frederik Heber. All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | *
|
---|
| 7 | * This file is part of MoleCuilder.
|
---|
| 8 | *
|
---|
| 9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 10 | * it under the terms of the GNU General Public License as published by
|
---|
| 11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 12 | * (at your option) any later version.
|
---|
| 13 | *
|
---|
| 14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 17 | * GNU General Public License for more details.
|
---|
| 18 | *
|
---|
| 19 | * You should have received a copy of the GNU General Public License
|
---|
| 20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 21 | */
|
---|
| 22 |
|
---|
| 23 | /*
|
---|
| 24 | * TremoloPotentialTypes.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: Mar 9, 2016
|
---|
| 27 | * Author: heber
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 |
|
---|
| 31 | // include config.h
|
---|
| 32 | #ifdef HAVE_CONFIG_H
|
---|
| 33 | #include <config.h>
|
---|
| 34 | #endif
|
---|
| 35 |
|
---|
| 36 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 37 |
|
---|
| 38 | #include "TremoloPotentialTypes.hpp"
|
---|
| 39 |
|
---|
| 40 | #include <boost/assign.hpp>
|
---|
| 41 |
|
---|
| 42 | // static entities
|
---|
| 43 |
|
---|
| 44 | TremoloPotentialTypes::type_name_map_t TremoloPotentialTypes::TypeNameMap =
|
---|
| 45 | boost::assign::list_of< TremoloPotentialTypes::type_name_map_t::relation >
|
---|
| 46 | (particles, "particles")
|
---|
| 47 | (angles, "angles")
|
---|
| 48 | (bonds, "bonds")
|
---|
| 49 | (torsions, "torsions")
|
---|
| 50 | (impropers, "impropers")
|
---|
| 51 | (nonbonded_2body_potentials, "nonbonded_2body_potentials");
|
---|
| 52 |
|
---|
| 53 | TremoloPotentialTypes::TokenTypeMap_t TremoloPotentialTypes::TokenTypeMap =
|
---|
| 54 | boost::assign::list_of< TremoloPotentialTypes::TokenTypeMap_t::relation >
|
---|
| 55 | ( "harmonic_bond", "bonds")
|
---|
| 56 | ( "harmonic_angle", "angles")
|
---|
| 57 | ( "constant", "nonbonded_2body_potentials")
|
---|
| 58 | ( "tersoff", "nonbonded_2body_potentials")
|
---|
| 59 | ( "lennardjones", "nonbonded_2body_potentials")
|
---|
| 60 | ( "morse", "bonds")
|
---|
| 61 | ( "torsion", "torsions")
|
---|
| 62 | ( "improper", "impropers");
|
---|
| 63 |
|
---|
| 64 | static const std::string emptystring;
|
---|
| 65 | static const TremoloPotentialTypes::tokentype_t emptytoken = TremoloPotentialTypes::MAX_tokentype;
|
---|
| 66 |
|
---|
| 67 | const TremoloPotentialTypes::type_t &
|
---|
| 68 | TremoloPotentialTypes::getTypeFromTokenName(const token_t &_token)
|
---|
| 69 | {
|
---|
| 70 | const TokenTypeMap_t::left_const_iterator tokeniter = TokenTypeMap.left.find(_token);
|
---|
| 71 | if (tokeniter != TokenTypeMap.left.end())
|
---|
| 72 | return tokeniter->second;
|
---|
| 73 | else
|
---|
| 74 | return emptystring;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | const TremoloPotentialTypes::token_t &
|
---|
| 78 | TremoloPotentialTypes::getTokenFromType(const type_t &_type)
|
---|
| 79 | {
|
---|
| 80 | const TokenTypeMap_t::right_const_iterator typeiter = TokenTypeMap.right.find(_type);
|
---|
| 81 | if (typeiter != TokenTypeMap.right.end())
|
---|
| 82 | return typeiter->second;
|
---|
| 83 | else
|
---|
| 84 | return emptystring;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | const TremoloPotentialTypes::tokentype_t&
|
---|
| 88 | TremoloPotentialTypes::getTokenTypeFromType(const type_t &_type)
|
---|
| 89 | {
|
---|
| 90 | const type_name_map_t::right_const_iterator typeiter = TypeNameMap.right.find(_type);
|
---|
| 91 | if (typeiter != TypeNameMap.right.end())
|
---|
| 92 | return typeiter->second;
|
---|
| 93 | else
|
---|
| 94 | return emptytoken;
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | const TremoloPotentialTypes::type_t&
|
---|
| 98 | TremoloPotentialTypes::getTypeFromTokenType(const tokentype_t _tokentype)
|
---|
| 99 | {
|
---|
| 100 | const type_name_map_t::left_const_iterator tokeniter = TypeNameMap.left.find(_tokentype);
|
---|
| 101 | if (tokeniter != TypeNameMap.left.end())
|
---|
| 102 | return tokeniter->second;
|
---|
| 103 | else
|
---|
| 104 | return emptystring;
|
---|
| 105 | }
|
---|