IMP logo
IMP Reference Guide  develop.d4e9f3251e,2024/04/26
The Integrative Modeling Platform
InContainerTripletFilter.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-21565/imp-20240426.develop.d4e9f3251e/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-21565/imp-20240426.develop.d4e9f3251e/tools/build/container_templates/container/InContainerClassnameFilter.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/container/InContainerTripletFilter.h
7  * \brief A filter for Triplets.
8  *
9  * Copyright 2007-2022 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCONTAINER_IN_CONTAINER_TRIPLET_FILTER_H
13 #define IMPCONTAINER_IN_CONTAINER_TRIPLET_FILTER_H
14 
15 #include <IMP/container/container_config.h>
16 #include <IMP/TripletPredicate.h>
17 #include <IMP/TripletContainer.h>
18 #include <IMP/internal/container_helpers.h>
19 #include "internal/TripletContainerIndex.h"
20 #include <IMP/triplet_macros.h>
21 #include <IMP/object_macros.h>
22 #include <IMP/warning_macros.h>
23 
24 IMPCONTAINER_BEGIN_NAMESPACE
25 
26 //! A filter which returns true if a container contains the Triplet
27 /** This predicate returns 1 if the passed tuple is in the container.
28  \note Use the handle_permutations parameter to the constructor to
29  determine whether only exact matches, or matches under permutation
30  are considered matching. By default permutations are allowed.
31  */
32 class IMPCONTAINEREXPORT InContainerTripletFilter
33  : public TripletPredicate {
35 
36  public:
38  std::string name = "TripletFilter %1%");
39  InContainerTripletFilter(TripletContainer *c, bool handle_permutations,
40  std::string name = "TripletFilter %1%");
41 
42  virtual int get_value_index(Model *, const ParticleIndexTriplet& vt) const
43  override {
44  return c_->get_contains(vt);
45  }
47  Model *m, const ParticleIndexes &pi) const override {
49  ret.push_back(c_);
50  return ret;
51  }
54 };
55 
57 
58 IMPCONTAINER_END_NAMESPACE
59 
60 #endif /* IMPCONTAINER_IN_CONTAINER_TRIPLET_FILTER_H */
#define IMP_TRIPLET_PREDICATE_METHODS(Name)
Define extra the functions needed for a TripletPredicate.
Helper macros for implementing IMP Objects.
A filter which returns true if a container contains the Triplet.
A container for Triplets.
A class to store a fixed array of same-typed values.
Definition: Array.h:40
Macros for various classes.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
Define TripletPredicate.
ParticlesTemp get_particles(Model *m, const ParticleIndexes &ps)
Get the particles from a list of indexes.
A more IMP-like version of the std::vector.
Definition: Vector.h:50
virtual int get_value_index(Model *, const ParticleIndexTriplet &vt) const override
Compute the predicate and the derivative if needed.
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:86
Abstract predicate function.
Macros to control compiler warnings.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing lists of object pointers.
Definition: object_macros.h:44
virtual ModelObjectsTemp do_get_inputs(Model *m, const ParticleIndexes &pi) const override
Overload this method to specify the inputs.
A shared container for Triplets.