IMP logo
IMP Reference Guide  develop.cb6747d2d1,2024/03/28
The Integrative Modeling Platform
PairContainerSet.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-61059/imp-20240328.develop.cb6747d2d1/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-61059/imp-20240328.develop.cb6747d2d1/tools/build/container_templates/container/ClassnameContainerSet.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/container/PairContainerSet.h
7  * \brief Store a set of PairContainers
8  *
9  * Copyright 2007-2022 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCONTAINER_PAIR_CONTAINER_SET_H
13 #define IMPCONTAINER_PAIR_CONTAINER_SET_H
14 
15 #include <IMP/container/container_config.h>
16 #include <IMP/PairContainer.h>
17 #include <IMP/container_macros.h>
18 #include <IMP/internal/container_helpers.h>
19 #include <IMP/scoped.h>
20 
21 IMPCONTAINER_BEGIN_NAMESPACE
22 
23 //! Stores a set of PairContainers
24 /** The input sets must be disjoint. This can change if there is
25  demand for it.
26 
27  \usesconstraint
28 */
29 class IMPCONTAINEREXPORT PairContainerSet : public PairContainer {
30  Ints versions_;
31  static PairContainerSet *get_set(PairContainer *c) {
32  return dynamic_cast<PairContainerSet *>(c);
33  }
34  virtual std::size_t do_get_contents_hash() const override;
35 
36  public:
37  //! Construct an empty set
39  std::string name = "PairContainerSet %1%");
40 
42  std::string name = "PairContainerSet %1%");
43 
44  /** \brief apply modifier sm to all pair containers */
45  IMP_IMPLEMENT(void do_apply(const PairModifier *sm) const override);
46 
47  IMP_IMPLEMENT(void do_apply_moved(const PairModifier *sm,
48  const ParticleIndexes &moved_pis,
49  const ParticleIndexes &reset_pis) const override);
50 
51  template <class M>
52  void apply_generic(const M *m) const {
53  apply(m);
54  }
55 
56  template <class M>
57  void apply_generic_moved(const M *m, const ParticleIndexes &moved_pis,
58  const ParticleIndexes &reset_pis) const {
59  apply_moved(m, moved_pis, reset_pis);
60  }
61 
64 
65  /** @name Methods to control the nested container
66 
67  This container merges a set of nested containers. To add
68  or remove nested containers, use the methods below.
69  */
70  /**@{*/
71  IMP_LIST_ACTION(public, PairContainer, PairContainers,
72  pair_container, pair_containers,
74  {
75  obj->set_was_used(true);
76  versions_.clear();
77  },
78  {}, );
79 /**@}*/
80 
81 #ifndef IMP_DOXYGEN
82  ParticleIndexPairs get_indexes() const override;
83  ParticleIndexPairs get_range_indexes() const override;
84  ModelObjectsTemp do_get_inputs() const override;
85 #endif
86 
87  protected:
88  //! Insert the contents of the container into output
89  //! instead of output's current content
90  virtual void get_indexes_in_place(ParticleIndexPairs& output)
91  const override;
92 };
93 
94 IMPCONTAINER_END_NAMESPACE
95 
96 #endif /* IMPCONTAINER_PAIR_CONTAINER_SET_H */
virtual ParticleIndexPairs get_range_indexes() const =0
A shared container for Pairs.
Definition: PairContainer.h:39
Temporarily set particle attributes.
void apply_moved(const PairModifier *sm, const ParticleIndexes &moved_pis, const ParticleIndexes &reset_pis) const
Apply a PairModifier to the contents.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
void apply(const PairModifier *sm) const
Apply a PairModifier to the contents.
#define IMP_IMPLEMENT(signature)
Macros to define containers of objects.
A base class for modifiers of ParticlePairsTemp.
Definition: PairModifier.h:32
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:86
A container for Pairs.
void apply_generic_moved(const PairModifier *m, const ParticleIndexes &moved_pis, const ParticleIndexes &reset_pis) const
Just use apply_moved() in the base class.
void apply_generic(const M *m) const
apply modifier sm to all pair containers
Stores a set of PairContainers.
virtual ParticleIndexes get_all_possible_indexes() const =0
Get contained particles.
virtual ParticleIndexPairs get_indexes() const =0
virtual ModelObjectsTemp do_get_inputs() const =0