IMP  2.1.1
The Integrative Modeling Platform
DerivativesToRefined.h
Go to the documentation of this file.
1 /**
2  * \file IMP/core/DerivativesToRefined.h
3  * \brief Accumulate the derivatives of the refined particles
4  *
5  * Copyright 2007-2013 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPCORE_DERIVATIVES_TO_REFINED_H
9 #define IMPCORE_DERIVATIVES_TO_REFINED_H
10 
11 #include <IMP/core/core_config.h>
12 
13 #include "XYZ.h"
14 #include <IMP/Refiner.h>
15 #include <IMP/singleton_macros.h>
16 #include <IMP/base/Pointer.h>
18 
19 IMPCORE_BEGIN_NAMESPACE
20 
21 //! Copy the derivatives from the particle to its refined particles.
22 /** \see DerivatvesFromRefinedSingletonModifier
23  \see CoverRefined
24  \see CentroidOfRefinedSingletonModifer
25  An example showing a how to use such a score state to maintain a cover
26  of the atoms of a protein by a sphere per residue.
27  \include cover_particles.py
28  */
29 class IMPCOREEXPORT DerivativesToRefined : public SingletonDerivativeModifier {
31  FloatKeys ks_;
32 
33  public:
34  //! Copy ks to the particles returned by r.
35  DerivativesToRefined(Refiner *r, FloatKeys ks = XYZ::get_xyz_keys());
36 
37  virtual void apply_index(kernel::Model *m, kernel::ParticleIndex a) const
38  IMP_OVERRIDE;
39  virtual kernel::ModelObjectsTemp do_get_inputs(
40  kernel::Model *m, const kernel::ParticleIndexes &pis) const IMP_OVERRIDE;
41  virtual kernel::ModelObjectsTemp do_get_outputs(
42  kernel::Model *m, const kernel::ParticleIndexes &pis) const IMP_OVERRIDE;
45 };
46 
47 IMPCORE_END_NAMESPACE
48 
49 #endif /* IMPCORE_DERIVATIVES_TO_REFINED_H */
A nullptr-initialized pointer to an IMP Object.
Copy the derivatives from the particle to its refined particles.
A smart pointer to a ref-counted Object that is a class memeber.
Definition: base/Pointer.h:147
Import IMP/kernel/singleton_macros.h in the namespace.
Simple xyz decorator.
Import IMP/kernel/Refiner.h in the namespace.
Import IMP/kernel/SingletonDerivativeModifier.h in the namespace.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
#define IMP_SINGLETON_MODIFIER_METHODS(Name)
Abstract class to implement hierarchical methods.
Class for storing model, its restraints, constraints, and particles.