00001
00002
00003
00004
00005
00006
00007 #ifndef IMPATOM_FORCE_FIELDS_H
00008 #define IMPATOM_FORCE_FIELDS_H
00009
00010 #include "atom_config.h"
00011 #include "Hierarchy.h"
00012 #include "ForceFieldParameters.h"
00013
00014 #include <string>
00015
00016 IMPATOM_BEGIN_NAMESPACE
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 IMPATOMEXPORT void add_bonds(Hierarchy d,
00027 const ForceFieldParameters* ffp
00028 =default_force_field_parameters());
00029
00030
00031
00032
00033
00034
00035
00036
00037 IMPATOMEXPORT void add_radii(Hierarchy d,
00038 const ForceFieldParameters *ffp
00039 = default_force_field_parameters(),
00040 FloatKey radius_key= FloatKey("radius"));
00041
00042 IMPATOM_END_NAMESPACE
00043
00044 #endif