IMP logo
IMP Reference Guide  2.5.0
The Integrative Modeling Platform
ListPairContainer.h
Go to the documentation of this file.
1 // Autogenerated by ../../../../tmp/nightly-build-6636/imp-2.5.0/tools/build/make_containers.py
2 // from ../../../../tmp/nightly-build-6636/imp-2.5.0/tools/build/container_templates/container/ListClassnameContainer.h
3 // Do not edit - any changes will be lost!
4 
5 /**
6  * \file IMP/container/ListPairContainer.h
7  * \brief Store a list of ParticleIndexPairs.
8  *
9  * Copyright 2007-2015 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCONTAINER_LIST_PAIR_CONTAINER_H
13 #define IMPCONTAINER_LIST_PAIR_CONTAINER_H
14 
15 #include <IMP/container/container_config.h>
16 #include <IMP/object_macros.h>
17 #include <IMP/internal/StaticListContainer.h>
18 #include <IMP/PairContainer.h>
19 #include <IMP/PairModifier.h>
20 #include <IMP/base_types.h>
21 
22 IMPCONTAINER_BEGIN_NAMESPACE
23 
24 //! Store a list of ParticleIndexPairs
25 /** \note The order may change when particles are inserted
26  as the list is maintained in sorted order.
27 
28  \note Changing the contents of the container is a fairly heavy
29  weight operation as it resets part of the dependency graph. Use
30  a DynamicListPairContainer if you want to change the contents
31  frequently (eg via a ScoreState).
32  */
33 class IMPCONTAINEREXPORT ListPairContainer :
34 #if defined(IMP_DOXYGEN) || defined(SWIG)
35  public PairContainer
36 #else
37  public IMP::internal::StaticListContainer<PairContainer>
38 #endif
39  {
40  typedef IMP::internal::StaticListContainer<PairContainer> P;
41 
42  public:
43  ListPairContainer(Model *m, const ParticleIndexPairs &contents,
44  std::string name = "ListPairContainer%1%");
45 
47  std::string name = "ListPairContainer%1%");
48 
49  /** \deprecated_at{2.5} Use set() with indexes instead */
50  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
51  void set_particle_pairs(const ParticlePairsTemp &ps);
52 
53  /** \deprecated_at{2.5} Use set() instead */
54  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
55  void set_particle_pairs(const ParticleIndexPairs &contents);
56 #ifndef IMP_DOXYGEN
58  std::string name = "ListPairContainer %1%");
59  ListPairContainer(Model *m, const char *name);
60 
61  /** \deprecated_at{2.5} Use add() with indexes instead */
62  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
63  void add_particle_pair(const ParticlePair& vt);
64 
65  /** \deprecated_at{2.5} Use add() with indexes instead */
66  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
67  void add_particle_pairs(const ParticlePairsTemp &c);
68 
69  /** \deprecated_at{2.5} Use clear() instead */
70  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
71  void clear_particle_pairs();
72 #endif
73 #if defined(SWIG) || defined(IMP_DOXYGEN)
74  //! Add a single const ParticleIndexPair& to the container.
75  void add(const ParticleIndexPair& vt);
76 
77  //! Add ParticleIndexPairs to the container.
78  void add(const ParticleIndexPairs &c);
79 
80  //! Set the contents of the container to the given ParticleIndexPairs.
81  void set(ParticleIndexPairs cp);
82 
83  //! Clear the contents of the container.
84  void clear();
85 #endif
86 
87 #ifdef SWIG
91  void do_apply(const PairModifier *sm) const;
93 
94  private:
95  std::size_t do_get_contents_hash() const;
96 #endif
98 };
99 
101 
102 IMPCONTAINER_END_NAMESPACE
103 
104 #endif /* IMPCONTAINER_LIST_PAIR_CONTAINER_H */
virtual ParticleIndexPairs get_range_indexes() const =0
A shared container for Pairs.
Definition: PairContainer.h:37
Various general useful macros for IMP.
Basic types used by IMP.
A class to store an fixed array of same-typed values.
Definition: Array.h:33
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
A base class for modifiers of ParticlePairsTemp.
Definition: PairModifier.h:33
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
Store a list of ParticleIndexPairs.
A container for Pairs.
A Modifier on ParticlePairsTemp.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing sets of objects.
Definition: object_macros.h:42
virtual ParticleIndexes get_all_possible_indexes() const =0
Get contained particles.
virtual ParticleIndexPairs get_indexes() const =0
virtual ModelObjectsTemp do_get_inputs() const =0