IMP  2.0.1
The Integrative Modeling Platform
IMP::core::HierarchyTraits Class Reference

Define the type for a type of hierarchy. More...

#include <IMP/core/Hierarchy.h>

Public Member Functions

 HierarchyTraits (std::string name)
 Create a HierarchyTraits with the given name.
 
ParticleIndexesKey get_children_key () const
 
ParticleIndexKey get_parent_key () const
 
bool operator== (const HierarchyTraits &o) const
 
void show (std::ostream &out=std::cout) const
 

Detailed Description

The hierarchy class is identified by the passed string so two hierarchies created with the same initialization string will be the same.

This example shows how to make and use a custom hierarchy:

1 ## \example core/custom_hierarchy.py
2 ## This example shows how to create and use a custom hierarchy of particles.
3 
4 import IMP
5 import IMP.core
6 
7 def custom_hierarchy(parent_particle, children_particles):
8  tr= IMP.core.HierarchyTraits("my hierarchy")
9  pd= IMP.core.Hierarchy.setup_particle(parent_particle, tr)
10  for p in children_particles:
12  pd.add_child(cd)
13  pd.show()
14 
15 m = IMP.Model()
16 p1 = IMP.Particle(m)
17 p2 = IMP.Particle(m)
18 p3 = IMP.Particle(m)
19 custom_hierarchy(p1, (p2, p3))
See Also
Hierarchy

Definition at line 47 of file core/Hierarchy.h.


The documentation for this class was generated from the following file: