IMP  2.2.0
The Integrative Modeling Platform
DynamicListQuadContainer.h
Go to the documentation of this file.
1 /**
2  * \file IMP/container/DynamicListQuadContainer.h
3  * \brief Store a list of kernel::ParticleQuadsTemp
4  *
5  * WARNING This file was generated from DynamicListQuadContainer.h
6  * in /tmp/nightly-build-28832/imp-2.2.0/tools/build/container_templates/container
7  * by tools/maintenance/setup_containers.py.
8  *
9  * Copyright 2007-2014 IMP Inventors. All rights reserved.
10  */
11 
12 #ifndef IMPCONTAINER_DYNAMIC_LIST_QUAD_CONTAINER_H
13 #define IMPCONTAINER_DYNAMIC_LIST_QUAD_CONTAINER_H
14 
15 #include <IMP/container/container_config.h>
16 #include <IMP/base/object_macros.h>
17 #include <IMP/kernel/internal/DynamicListContainer.h>
18 
19 IMPCONTAINER_BEGIN_NAMESPACE
20 
21 //! Store a kernel::ParticleIndexQuads
22 /** In contrast to ListQuadContainer, this list is designed to act
23  as the output of a ScoreState or another container. The key difference
24  is that it uses the passed Container to define the list of all
25  possible contents of the container.
26  */
27 class IMPCONTAINEREXPORT DynamicListQuadContainer :
28 #if defined(IMP_DOXYGEN) || defined(SWIG)
29  public QuadContainer
30 #else
31  public IMP::kernel::internal::DynamicListContainer<
32  kernel::QuadContainer>
33 #endif
34  {
35  typedef IMP::kernel::internal::DynamicListContainer<
37 
38  public:
39  DynamicListQuadContainer(Container *m, std::string name =
40  "ListQuadContainer %1%");
41 
42  /** @name Methods to control the contained objects
43 
44  This container stores a list of Quad objects. To manipulate
45  the list use these methods.
46  */
47  /**@{*/
48  void add_particle_quad(const kernel::ParticleQuad& vt);
49  void add_particle_quads(const kernel::ParticleQuadsTemp &c);
50  void set_particle_quads(kernel::ParticleQuadsTemp c);
51  void clear_particle_quads();
52 /**@}*/
53 #ifdef SWIG
57  void do_apply(const QuadModifier *sm) const;
59 #endif
61 };
62 
64 
65 IMPCONTAINER_END_NAMESPACE
66 
67 #endif /* IMPCONTAINER_DYNAMIC_LIST_QUAD_CONTAINER_H */
virtual ParticleIndexes get_all_possible_indexes() const =0
Get contained particles.
virtual kernel::ParticleIndexQuads get_indexes() const =0
A shared container for Quads.
Store a kernel::ParticleIndexQuads.
Abstract class for containers of particles.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing sets of objects.
virtual ModelObjectsTemp do_get_inputs() const =0
virtual kernel::ParticleIndexQuads get_range_indexes() const =0
Various general useful macros for IMP.
A base class for modifiers of kernel::ParticleQuadsTemp.