IMP  2.4.0
The Integrative Modeling Platform
DecayPairContainerOptimizerState.h
Go to the documentation of this file.
1 /**
2  * \file IMP/misc/DecayPairContainerOptimizerState.h
3  * \brief A pair container with a decaying list of pairs.
4  *
5  * Copyright 2007-2015 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPMISC_DECAY_PAIR_CONTAINER_OPTIMIZER_STATE_H
9 #define IMPMISC_DECAY_PAIR_CONTAINER_OPTIMIZER_STATE_H
10 
11 #include <IMP/misc/misc_config.h>
12 #include <IMP/OptimizerState.h>
13 #include <IMP/PairContainer.h>
14 #include <IMP/PairContainer.h>
19 #include <IMP/base/Pointer.h>
20 
21 IMPMISC_BEGIN_NAMESPACE
22 
23 //! Maintain a pair container with a decaying list of pairs.
24 /** The pair container passed to the constructor provides an initial
25  list of pairs. Periodically (see the set_period() method), the
26  predicate is applied to all the remaining pairs and ones for which
27  it evaluates to 0 are removed.
28  */
30  : public kernel::OptimizerState {
34 
35  public:
37  PairPredicate *pred, const kernel::ParticlePairsTemp &initial_list,
38  std::string name = "DecayPairContainerOptimizerState%1%");
39  PairContainer *get_output_container() const { return output_; }
40  virtual void do_update(unsigned int call_num) IMP_OVERRIDE;
42 };
43 
44 IMPMISC_END_NAMESPACE
45 
46 #endif /* IMPMISC_DECAY_PAIR_CONTAINER_OPTIMIZER_STATE_H */
virtual void do_update(unsigned int)
A smart pointer to a ref-counted Object that is a class member.
Definition: Pointer.h:147
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
Shared optimizer state that is invoked upon commitment of new coordinates.
Maintain a pair container with a decaying list of pairs.
A shared container for Pairs.
Store a list of kernel::ParticlePairsTemp.
Import IMP/kernel/PairContainer.h in the namespace.
Shared optimizer state.
Define PairPredicate.
A container for Pairs.
Abstract predicate function.
A nullptr-initialized pointer to an IMP Object.
Import IMP/kernel/OptimizerState.h in the namespace.
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.