9 #ifndef IMPATOM_CHARMM_PARAMETERS_H
10 #define IMPATOM_CHARMM_PARAMETERS_H
12 #include "internal/charmm_helpers.h"
21 IMPKERNEL_BEGIN_NAMESPACE
23 IMPKERNEL_END_NAMESPACE
26 IMPATOM_BEGIN_NAMESPACE
30 double force_constant;
34 out <<
"force constant: " << force_constant <<
"; ideal value: " << ideal;
38 friend class boost::serialization::access;
40 template<
class Archive>
void serialize(Archive &ar,
const unsigned int) {
41 ar & force_constant & ideal;
49 double force_constant;
54 out <<
"force constant: " << force_constant
55 <<
"; multiplicity: " << multiplicity <<
"; ideal value: " << ideal;
59 friend class boost::serialization::access;
61 template<
class Archive>
void serialize(Archive &ar,
const unsigned int) {
62 ar & force_constant & multiplicity & ideal;
86 std::map<std::string, Element> atom_type_to_element_;
87 std::map<ResidueType, Pointer<CHARMMIdealResidueTopology> >
89 std::map<std::string, Pointer<CHARMMPatch> > patches_;
90 std::map<internal::CHARMMBondNames, CHARMMBondParameters> bond_parameters_;
91 std::map<internal::CHARMMAngleNames, CHARMMBondParameters> angle_parameters_;
93 typedef Vector<std::pair<internal::CHARMMDihedralNames,
98 DihedralParameters::const_iterator find_dihedral(
99 DihedralParameters::const_iterator begin,
100 DihedralParameters::const_iterator end,
101 const internal::CHARMMDihedralNames &dihedral,
102 bool allow_wildcards)
const;
126 bool translate_names_to_pdb =
false);
136 residue_topologies_.insert(
137 std::make_pair(
ResidueType(res->get_type()), res));
143 residue_topologies_.find(type);
144 if (it != residue_topologies_.end()) {
159 patches_.insert(std::make_pair(patch->get_type(), patch));
164 std::map<std::string, CHARMMPatch>::iterator it = patches_.find(name);
165 if (it != patches_.end()) {
174 std::map<std::string, Pointer<CHARMMPatch> >::const_iterator it =
176 if (it != patches_.end()) {
199 std::string type2)
const {
200 internal::CHARMMBondNames types = internal::CHARMMBondNames(type1, type2);
201 if (bond_parameters_.find(types) != bond_parameters_.end()) {
202 return bond_parameters_.find(types)->second;
204 IMP_THROW(
"No CHARMM parameters found for bond " << type1 <<
"-" << type2,
215 std::string type3)
const {
216 internal::CHARMMAngleNames types =
217 internal::CHARMMAngleNames(type1, type2, type3);
218 if (angle_parameters_.find(types) != angle_parameters_.end()) {
219 return angle_parameters_.find(types)->second;
221 IMP_THROW(
"No CHARMM parameters found for angle " << type1 <<
"-" << type2
239 std::string type1, std::string type2, std::string type3,
240 std::string type4)
const {
242 internal::CHARMMDihedralNames types =
243 internal::CHARMMDihedralNames(type1, type2, type3, type4);
245 DihedralParameters::const_iterator match = find_dihedral(
246 dihedral_parameters_.begin(), dihedral_parameters_.end(), types,
false);
247 if (match != dihedral_parameters_.end()) {
248 param.push_back(match->second);
249 while ((match = find_dihedral(match + 1, dihedral_parameters_.end(),
250 match->first,
false)) !=
251 dihedral_parameters_.end()) {
252 param.push_back(match->second);
256 match = find_dihedral(
257 dihedral_parameters_.begin(), dihedral_parameters_.end(), types,
true);
258 if (match != dihedral_parameters_.end()) {
259 param.push_back(match->second);
260 while ((match = find_dihedral(match + 1, dihedral_parameters_.end(),
261 match->first,
true)) !=
262 dihedral_parameters_.end()) {
263 param.push_back(match->second);
268 if (param.size() == 0) {
269 IMP_THROW(
"No CHARMM parameters found for dihedral "
270 << type1 <<
"-" << type2 <<
"-" << type3 <<
"-" << type4,
286 std::string type1, std::string type2, std::string type3,
287 std::string type4)
const {
288 internal::CHARMMDihedralNames types =
289 internal::CHARMMDihedralNames(type1, type2, type3, type4);
291 DihedralParameters::const_iterator it = find_dihedral(
292 improper_parameters_.begin(), improper_parameters_.end(), types,
true);
293 if (it != improper_parameters_.end()) {
296 IMP_THROW(
"No CHARMM parameters found for improper "
297 << type1 <<
"-" << type2 <<
"-" << type3 <<
"-" << type4,
341 virtual String get_force_field_atom_type(
Atom atom)
const override;
343 void read_parameter_file(
TextInput input_file);
345 void read_topology_file(
TextInput input_file,
346 bool translate_names_to_pdb);
355 bool translate_names_to_pdb);
358 bool translate_names_to_pdb);
361 bool translate_names_to_pdb);
363 void parse_nonbonded_parameters_line(
String line);
364 void parse_bonds_parameters_line(
String line);
365 void parse_angles_parameters_line(
String line);
392 IMPATOM_END_NAMESPACE
The ideal topology of a single residue.
CHARMMParameters * get_heavy_atom_CHARMM_parameters()
Storage and access to force field.
#define IMP_SHOWABLE_INLINE(Name, how_to_show)
Declare the methods needed by an object that can be printed.
The parameters for a CHARMM bond or angle.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
The parameters for a CHARMM dihedral or improper.
Handling of file input/output.
const CHARMMBondParameters & get_angle_parameters(std::string type1, std::string type2, std::string type3) const
Get parameters for the angle between the three given CHARMM atom types.
A more IMP-like version of the std::vector.
const CHARMMBondParameters & get_bond_parameters(std::string type1, std::string type2) const
Get bond parameters for the bond between the two given CHARMM atom types.
Warnings with the same key within the context are only output once.
A smart pointer to a reference counted object.
CHARMM force field parameters.
Classes for handling CHARMM-style topology.
const CHARMMDihedralParameters & get_improper_parameters(std::string type1, std::string type2, std::string type3, std::string type4) const
Get parameters for the improper between the four given CHARMM atom types.
#define IMP_VALUES(Name, PluralName)
Define the type for storing sets of values.
The standard decorator for manipulating molecular structures.
Base class for all CHARMM residue-based topology.
A decorator for a particle representing an atom.
An exception for a request for an invalid member of a container.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing lists of object pointers.
#define IMP_THROW(message, exception_name)
Throw an exception with a message.
Macros for maintaining molecular hierarchies.
Class to handle individual particles of a Model object.
CHARMMDihedralParametersList get_dihedral_parameters(std::string type1, std::string type2, std::string type3, std::string type4) const
Get parameters for the dihedral between the four given CHARMM atom types.
The topology of a complete CHARMM model.
CHARMMParameters * get_all_atom_CHARMM_parameters()
An exception for an invalid value being passed to IMP.
std::string String
Basic string value.
void set_was_used(bool tf) const