IMP  2.4.0
The Integrative Modeling Platform
InContainerSingletonFilter.h
Go to the documentation of this file.
1 /**
2  * \file IMP/container/InContainerSingletonFilter.h
3  * \brief A filter for Singletons.
4  *
5  * This file is generated by a script (core/tools/make-containers).
6  * Do not edit directly.
7  *
8  * Copyright 2007-2015 IMP Inventors. All rights reserved.
9  */
10 
11 #ifndef IMPCONTAINER_IN_CONTAINER_SINGLETON_FILTER_H
12 #define IMPCONTAINER_IN_CONTAINER_SINGLETON_FILTER_H
13 
14 #include <IMP/container/container_config.h>
15 #include <IMP/SingletonPredicate.h>
16 #include <IMP/SingletonContainer.h>
17 #include <IMP/kernel/internal/container_helpers.h>
18 #include "internal/SingletonContainerIndex.h"
19 #include <IMP/singleton_macros.h>
20 #include <IMP/base/object_macros.h>
22 
23 IMPCONTAINER_BEGIN_NAMESPACE
24 
25 //! A filter which returns true if a container containers the Singleton
26 /** This predicate returns 1 if the passed tuple is in the container.
27  \note Use the handle_permutations parameter to the constructor to
28  determine whether only exact matchers, or matches under permutation
29  are considered matching. By default they are are.
30  */
31 class IMPCONTAINEREXPORT InContainerSingletonFilter
32  : public SingletonPredicate {
34 
35  public:
37  std::string name = "SingletonFilter %1%");
38  InContainerSingletonFilter(SingletonContainer *c, bool handle_permutations,
39  std::string name = "SingletonFilter %1%");
40 
42  IMP_OVERRIDE {
43  return c_->get_contains(vt);
44  }
48  ret.push_back(c_);
49  return ret;
50  }
53 };
54 
56 
57 IMPCONTAINER_END_NAMESPACE
58 
59 #endif /* IMPCONTAINER_IN_CONTAINER_SINGLETON_FILTER_H */
virtual int get_value_index(kernel::Model *, kernel::ParticleIndex vt) const
Compute the predicate and the derivative if needed.
Various general useful macros for IMP.
Import IMP/kernel/SingletonContainer.h in the namespace.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
ParticlesTemp get_particles(kernel::Model *m, const ParticleIndexes &ps)
Import IMP/kernel/singleton_macros.h in the namespace.
Import IMP/kernel/SingletonPredicate.h in the namespace.
A filter which returns true if a container containers the Singleton.
Various general useful macros for IMP.
#define IMP_SINGLETON_PREDICATE_METHODS(Name)
Define extra the functions needed for a SingletonPredicate.
Abstract predicate function.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing sets of objects.
Definition: object_macros.h:52
virtual kernel::ModelObjectsTemp do_get_inputs(kernel::Model *m, const kernel::ParticleIndexes &pi) const
A shared container for Singletons.
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.
Class for storing model, its restraints, constraints, and particles.
Definition: kernel/Model.h:73