IMP  2.1.1
The Integrative Modeling Platform
InContainerQuadFilter.h
Go to the documentation of this file.
1 /**
2  * \file IMP/container/InContainerQuadFilter.h
3  * \brief A filter for Quads.
4  *
5  * This file is generated by a script (core/tools/make-containers).
6  * Do not edit directly.
7  *
8  * Copyright 2007-2013 IMP Inventors. All rights reserved.
9  */
10 
11 #ifndef IMPCONTAINER_IN_CONTAINER_QUAD_FILTER_H
12 #define IMPCONTAINER_IN_CONTAINER_QUAD_FILTER_H
13 
14 #include <IMP/container/container_config.h>
15 #include <IMP/QuadPredicate.h>
16 #include <IMP/QuadContainer.h>
17 #include <IMP/kernel/internal/container_helpers.h>
18 #include "internal/QuadContainerIndex.h"
19 #include <IMP/quad_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 Quad
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 InContainerQuadFilter
32  : public QuadPredicate {
34 
35  public:
37  std::string name = "QuadFilter %1%");
38  InContainerQuadFilter(QuadContainer *c, bool handle_permutations,
39  std::string name = "QuadFilter %1%");
40 
41  virtual int get_value_index(kernel::Model *, const ParticleIndexQuad& vt) const IMP_OVERRIDE {
42  return c_->get_contains(vt);
43  }
45  const IMP_OVERRIDE {
47  ret.push_back(c_);
48  return ret;
49  }
52 };
53 
55 
56 IMPCONTAINER_END_NAMESPACE
57 
58 #endif /* IMPCONTAINER_IN_CONTAINER_QUAD_FILTER_H */
Import IMP/kernel/QuadPredicate.h in the namespace.
A shared container for Quads.
ParticlesTemp get_particles(kernel::Model *m, const ParticleIndexes &ps)
A filter which returns true if a container containers the Quad.
Import IMP/kernel/quad_macros.h in the namespace.
Import IMP/kernel/QuadContainer.h in the namespace.
Abstract predicate function.
Various general useful macros for IMP.
virtual kernel::ModelObjectsTemp do_get_inputs(kernel::Model *m, const kernel::ParticleIndexes &pi) const
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
#define IMP_QUAD_PREDICATE_METHODS(Name)
Define extra the functions needed for a QuadPredicate.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing sets of objects.
virtual int get_value_index(kernel::Model *m, const ParticleIndexQuad &vt) const
Compute the predicate and the derivative if needed.
Various general useful macros for IMP.
Class for storing model, its restraints, constraints, and particles.