IMP logo
IMP Reference Guide  2.5.0
The Integrative Modeling Platform
ListSingletonContainer.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/ListSingletonContainer.h
7  * \brief Store a list of ParticleIndexes.
8  *
9  * Copyright 2007-2015 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCONTAINER_LIST_SINGLETON_CONTAINER_H
13 #define IMPCONTAINER_LIST_SINGLETON_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/SingletonContainer.h>
19 #include <IMP/SingletonModifier.h>
20 #include <IMP/base_types.h>
21 
22 IMPCONTAINER_BEGIN_NAMESPACE
23 
24 //! Store a list of ParticleIndexes
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 DynamicListSingletonContainer if you want to change the contents
31  frequently (eg via a ScoreState).
32  */
33 class IMPCONTAINEREXPORT ListSingletonContainer :
34 #if defined(IMP_DOXYGEN) || defined(SWIG)
35  public SingletonContainer
36 #else
37  public IMP::internal::StaticListContainer<SingletonContainer>
38 #endif
39  {
40  typedef IMP::internal::StaticListContainer<SingletonContainer> P;
41 
42  public:
43  ListSingletonContainer(Model *m, const ParticleIndexes &contents,
44  std::string name = "ListSingletonContainer%1%");
45 
47  std::string name = "ListSingletonContainer%1%");
48 
49  /** \deprecated_at{2.5} Use set() with indexes instead */
50  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
51  void set_particles(const ParticlesTemp &ps);
52 
53  /** \deprecated_at{2.5} Use set() instead */
54  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
55  void set_particles(const ParticleIndexes &contents);
56 #ifndef IMP_DOXYGEN
58  std::string name = "ListSingletonContainer %1%");
59  ListSingletonContainer(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(Particle* vt);
64 
65  /** \deprecated_at{2.5} Use add() with indexes instead */
66  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
67  void add_particles(const ParticlesTemp &c);
68 
69  /** \deprecated_at{2.5} Use clear() instead */
70  IMPCONTAINER_DEPRECATED_METHOD_DECL(2.5)
71  void clear_particles();
72 #endif
73 #if defined(SWIG) || defined(IMP_DOXYGEN)
74  //! Add a single ParticleIndex to the container.
75  void add(ParticleIndex vt);
76 
77  //! Add ParticleIndexes to the container.
78  void add(const ParticleIndexes &c);
79 
80  //! Set the contents of the container to the given ParticleIndexes.
81  void set(ParticleIndexes cp);
82 
83  //! Clear the contents of the container.
84  void clear();
85 #endif
86 
87 #ifdef SWIG
91  void do_apply(const SingletonModifier *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_SINGLETON_CONTAINER_H */
A base class for modifiers of ParticlesTemp.
A Modifier on ParticlesTemp.
Various general useful macros for IMP.
Basic types used by IMP.
virtual ParticleIndexes get_indexes() const =0
void add_particles(RMF::FileHandle fh, const ParticlesTemp &hs)
A container for Singletons.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
virtual ParticleIndexes get_range_indexes() const =0
void add_particle(RMF::FileHandle fh, Particle *hs)
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
Store a list of ParticleIndexes.
A shared container for Singletons.
#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.
Class to handle individual model particles.
Definition: Particle.h:37
virtual ModelObjectsTemp do_get_inputs() const =0