IMP logo
IMP Reference Guide  develop.d4e9f3251e,2024/04/26
The Integrative Modeling Platform
KinkPairScore.h
Go to the documentation of this file.
1 /**
2  * \file IMP/spb/KinkPairScore.h
3  * \brief A Score on the crossing angle between two rigid bodies
4  *
5  * Copyright 2007-2022 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPSPB_KINK_PAIR_SCORE_H
9 #define IMPSPB_KINK_PAIR_SCORE_H
10 
11 #include <IMP/spb/spb_config.h>
12 
13 #include <IMP/Pointer.h>
14 #include <IMP/PairScore.h>
15 #include <IMP/UnaryFunction.h>
16 #include <IMP/pair_macros.h>
17 
18 IMPSPB_BEGIN_NAMESPACE
19 
20 //! Score on the crossing angles between two helices
21 class IMPSPBEXPORT KinkPairScore : public PairScore {
23 
24  public:
26 
27  virtual double evaluate_index(IMP::Model *m, const IMP::ParticleIndexPair &p,
28  DerivativeAccumulator *da) const override;
29 
31  IMP::Model *m, const IMP::ParticleIndexes &pis) const override;
32 
33  // void show(std::ostream &out) const ;
34 
38 };
39 
41 
42 IMPSPB_END_NAMESPACE
43 
44 #endif /* IMPSPB_KINK_PAIR_SCORE_H */
Abstract class for scoring object(s) of type ParticleIndexPair.
Definition: PairScore.h:44
Macros for various classes.
#define IMP_PAIR_SCORE_METHODS(Name)
Definition: pair_macros.h:25
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
Single variable function.
#define IMP_SHOWABLE(Name)
Score on the crossing angles between two helices.
Definition: KinkPairScore.h:21
A more IMP-like version of the std::vector.
Definition: Vector.h:50
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:86
Define PairScore.
A smart pointer to a ref-counted Object that is a class member.
Definition: Pointer.h:143
virtual ModelObjectsTemp do_get_inputs(Model *m, const ParticleIndexes &pis) const =0
Overload this method to specify the inputs.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing lists of object pointers.
Definition: object_macros.h:44
A nullptr-initialized pointer to an IMP Object.
Abstract single variable functor class for score functions.
Definition: UnaryFunction.h:27
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.