9 #ifndef IMPCORE_HIERARCHY_H
10 #define IMPCORE_HIERARCHY_H
12 #include <IMP/core/core_config.h>
13 #include "internal/hierarchy_helpers.h"
20 #include <IMP/internal/utility.h>
23 #include <boost/tuple/tuple.hpp>
29 IMPCORE_BEGIN_NAMESPACE
58 return parent_ == o.parent_;
84 for (
unsigned int i = 0; i < children.size(); ++i) {
92 do_setup_particle(m, pi,
get_indexes(children), traits);
96 void update_changed_trigger()
const {
102 traits, get_default_traits());
122 if (
get_model()->get_has_attribute(get_decorator_traits().get_parent_key(),
132 unsigned int get_number_of_children()
const {
143 Hierarchy get_child(
unsigned int i)
const {
144 IMP_USAGE_CHECK(i < get_number_of_children(),
"Invalid child requested");
146 get_decorator_traits().get_children_key(),
148 get_decorator_traits());
151 IMP_USAGE_CHECK(i < get_number_of_children(),
"Invalid child requested");
155 ParticleIndexes get_children_indexes()
const {
161 return ParticleIndexes();
164 GenericHierarchies get_children()
const {
165 GenericHierarchies ret(get_number_of_children());
166 for (
unsigned int i = 0; i < ret.size(); ++i) {
167 ret[i] = get_child(i);
171 void remove_child(
unsigned int i) {
172 IMP_USAGE_CHECK(i < get_number_of_children(),
"Invalid child requested");
173 Hierarchy c = get_child(i);
174 ParticleIndexes &pis =
get_model()->access_attribute(
176 pis.erase(pis.begin() + i);
178 c.get_particle_index());
179 update_changed_trigger();
181 void remove_child(Hierarchy h) { remove_child(h.get_child_index()); }
182 void clear_children() {
183 ParticleIndexes &pis =
get_model()->access_attribute(
185 for (
unsigned int i = 0; i < pis.size(); ++i) {
191 update_changed_trigger();
193 void add_child(Hierarchy h)
const {
197 ->access_attribute(get_decorator_traits().get_children_key(),
199 .push_back(h.get_particle_index());
203 ParticleIndexes(1, h.get_particle_index()));
207 update_changed_trigger();
209 void add_child_at(Hierarchy h,
unsigned int pos) {
213 ParticleIndexes &pis =
get_model()->access_attribute(
215 pis.insert(pis.begin() + pos, h.get_particle_index());
219 ParticleIndexes(1, h.get_particle_index()));
223 update_changed_trigger();
226 int get_child_index()
const;
228 static const HierarchyTraits &get_default_traits();
230 HierarchyTraits get_traits() {
return get_decorator_traits(); }
243 virtual bool operator()(
Hierarchy p) = 0;
260 sm_->apply_index(p.get_model(), p.get_particle_index());
266 #if !defined(SWIG) && !defined(IMP_DOXYGEN)
268 template <
class H,
class F,
class Out,
bool Slice = false>
271 Gather(F f, Out out) : f_(f), out_(out) {}
272 bool operator()(H p) {
276 if (Slice)
return false;
281 Out get_out()
const {
return out_; }
297 template <
class HD,
class F>
299 std::deque<HD> stack;
303 HD cur = stack.front();
307 for (
int i = cur.get_number_of_children() - 1; i >= 0; --i) {
308 stack.push_back(cur.get_child(i));
311 }
while (!stack.empty());
320 template <
class HD,
class F>
326 HD cur = stack.back();
330 for (
int i = cur.get_number_of_children() - 1; i >= 0; --i) {
331 stack.push_back(cur.get_child(i));
334 }
while (!stack.empty());
363 template <
class HD,
class F>
365 typename F::result_type data) {
366 typedef std::pair<typename F::result_type, HD> DP;
367 std::deque<DP> stack;
368 stack.push_back(DP(data, d));
371 DP cur = stack.front();
373 typename F::result_type r = f(cur.second.get_particle(), cur.first);
375 for (
int i = cur.second.get_number_of_children() - 1; i >= 0; --i) {
376 stack.push_back(std::make_pair(r, cur.second.get_child(i)));
378 }
while (!stack.empty());
387 template <
class HD,
class F>
389 typedef std::pair<typename F::result_type, HD> DP;
391 stack.push_back(DP(data, d));
394 DP cur = stack.back();
396 typename F::result_type r = f(cur.second, cur.first);
398 for (
int i = cur.second.get_number_of_children() - 1; i >= 0; --i) {
399 stack.push_back(DP(r, cur.second.get_child(i)));
401 }
while (!stack.empty());
411 IMP_PRINT_TREE(out,
Hierarchy, h, n.get_number_of_children(), n.get_child,
453 template <
class H,
class Out,
class F>
455 internal::Gather<H, F, Out>
gather(f, out);
457 return gather.get_out();
467 template <
class H,
class Out,
class F>
469 internal::Gather<H, F, Out, true>
gather(f, out);
471 return gather.get_out();
478 template <
class H,
class Out,
class K,
class V>
480 internal::Gather<H, internal::MatchAttribute<K, V>, Out>
gather(
481 internal::MatchAttribute<K, V>(k, v), out);
483 return gather.get_out();
490 template <
class H,
class Out,
class K0,
class V0,
class K1,
class V1>
492 internal::Gather<H, internal::MatchAttributes<K0, V0, K1, V1>, Out>
gather(
493 internal::MatchAttributes<K0, V0, K1, V1>(k0, v0, k1, v1), out);
495 return gather.get_out();
502 template <
class HD,
class F>
504 if (f(h.get_particle()))
return h;
509 HD cur = stack.back();
512 for (
int i = cur.get_number_of_children() - 1; i >= 0; --i) {
513 HD hd = cur.get_child(i);
514 if (f(hd.get_particle())) {
520 }
while (!stack.empty());
530 IMPCOREEXPORT GenericHierarchies
get_leaves(Hierarchy mhd);
535 IMPCOREEXPORT GenericHierarchies
get_internal(Hierarchy mhd);
551 IMPCORE_END_NAMESPACE
F visit_breadth_first(HD d, F f)
Apply the visitor to each particle, breadth first.
The base class for decorators.
A base class for modifiers of ParticlesTemp.
A visitor for traversal of a hierarchy.
A Modifier on ParticlesTemp.
ParticleIndex get_particle_index() const
Returns the particle index decorated by this decorator.
#define IMP_SHOWABLE_INLINE(Name, how_to_show)
Declare the methods needed by an object that can be printed.
static bool get_is_setup(Model *, ParticleIndex, HierarchyTraits=Hierarchy::get_default_traits())
F visit_depth_first(HD d, F &f)
Apply functor F to each particle, traversing the hierarchy depth first.
Model * get_model() const
Returns the Model containing the particle.
Storage of a model, its restraints, constraints and particles.
HD find_breadth_first(HD h, F f)
Find the first node which matches some criteria.
void remove_attribute(TypeKey attribute_key, ParticleIndex particle)
remove particle attribute with the specied key
Index< ParticleIndexTag > ParticleIndex
#define IMP_DECORATOR_TRAITS_SETUP_1(Name, FirstArgumentType,first_argument_name)
A more IMP-like version of the std::vector.
GenericHierarchies get_all_descendants(Hierarchy mhd)
Get all the particles in the subtree.
A visitor which applies a modifier to each Particle in a hierarchy.
Class for storing model, its restraints, constraints, and particles.
Out gather_by_attributes(H h, K0 k0, V0 v0, K1 k1, V1 v1, Out out)
Gather all the particles in the hierarchy which match on two attributes.
#define IMP_VALUES(Name, PluralName)
Define the type for storing sets of values.
F visit_depth_first_with_data(HD d, F f, typename F::result_type data)
Apply functor F to each particle, traversing the hierarchy depth first.
Hierarchy get_root(Hierarchy h)
Return the root of the hierarchy.
Hierarchy get_parent() const
void add_attribute(TypeKey attribute_key, ParticleIndex particle, Type value)
add particle atribute with the specied key and initial value
F visit_breadth_first_with_data(HD d, F f, typename F::result_type data)
Apply functor F to each particle, traversing the hierarchy breadth first.
Out gather_slice(H h, F f, Out out)
Gather all the uppermost particles in the hierarchy that meet some criteria.
A simple functor to count the number of particles in a hierarchy.
Define the type for a type of hierarchy.
Helper macros for implementing Decorators.
A smart pointer to a ref-counted Object that is a class member.
#define IMP_DECORATOR_TRAITS_SETUP_0(Name)
bool operator()(Hierarchy)
Increment the counter.
Out gather(H h, F f, Out out)
Gather all the particles in the hierarchy that meet some criteria.
Out gather_by_attribute(H h, K k, V v, Out out)
Gather all the particles in the hierarchy which match on an attribute.
GenericHierarchies get_internal(Hierarchy mhd)
Get all the non-leaves of the bit of hierarchy.
Interface to specialized Particle types (e.g. atoms)
Classes to handle individual model particles. (Note that implementation of inline functions is in int...
#define IMP_DECORATOR_WITH_TRAITS_METHODS(Name, Parent, TraitsType,traits_name, default_traits)
void show(Hierarchy h, std::ostream &out=std::cout)
Print out a molecular hierarchy.
A nullptr-initialized pointer to an IMP Object.
unsigned int get_count() const
Return how many nodes have been visited.
#define IMP_USAGE_CHECK(expr, message)
A runtime test for incorrect usage of a class or method.
A decorator for helping deal with a generalized hierarchy.
void set_trigger_updated(TriggerKey tk)
Update the given trigger.
Hierarchies get_leaves(Hierarchy h)
Type get_attribute(TypeKey attribute_key, ParticleIndex particle)
get the value of the particle attribute with the specified key
ParticleIndexes get_indexes(const ParticlesTemp &ps)
Get the indexes from a list of particles.
virtual bool operator()(Hierarchy p)
Return true if the traversal should visit this node's children.
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.