8 #ifndef IMPATOM_COULOMB_PAIR_SCORE_H
9 #define IMPATOM_COULOMB_PAIR_SCORE_H
11 #include <IMP/atom/atom_config.h>
19 IMPATOM_BEGIN_NAMESPACE
32 double relative_dielectric_;
33 double multiplication_factor_;
35 void calculate_multiplication_factor();
37 double evaluate_index_fast(
Model *m,
40 const double *charge_array)
const;
44 set_relative_dielectric(1.0);
47 void set_relative_dielectric(
double relative_dielectric) {
48 relative_dielectric_ = relative_dielectric;
49 calculate_multiplication_factor();
52 double get_relative_dielectric()
const {
return relative_dielectric_; }
62 const double *charge_array = Charged::get_charge_array(m),
63 evaluate_index_fast(m, p[i], da, charge_array) );
Abstract class for scoring object(s) of type ParticleIndexPair.
Macros for various classes.
Coulomb (electrostatic) score between a pair of particles.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
A more IMP-like version of the std::vector.
Class for storing model, its restraints, constraints, and particles.
A smart pointer to a ref-counted Object that is a class member.
virtual ModelObjectsTemp do_get_inputs(Model *m, const ParticleIndexes &pis) const =0
Overload this method to specify the inputs.
virtual bool check_indexes(Model *m, const ParticleIndexes &pis) const
Check the given particle indexes for necessary attributes.
Classes to smooth nonbonded interactions.
A decorator for a point particle that has an electrostatic charge.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing lists of object pointers.
A nullptr-initialized pointer to an IMP Object.
Base class for smoothing nonbonded interactions as a function of distance.
#define IMP_PAIR_SCORE_METHODS_UNCHECKED(Name, Setup, Evaluate)
virtual double evaluate_index(Model *m, const ParticleIndexPair &vt, DerivativeAccumulator *da) const =0
Compute the score and the derivative if needed.
Class for adding derivatives from restraints to the model.
Compile-time generic restraint and constraint support.