IMP  2.3.0
The Integrative Modeling Platform
interactive.h
Go to the documentation of this file.
1 /**
2  * \file IMP/domino/interactive.h
3  * \brief Functions to get report statistics about the used attributes.
4  *
5  * Copyright 2007-2014 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPDOMINO_INTERACTIVE_H
9 #define IMPDOMINO_INTERACTIVE_H
10 
11 #include <IMP/domino/domino_config.h>
12 #include "Assignment.h"
13 #include "Subset.h"
14 #include "subset_filters.h"
15 #include "assignment_containers.h"
16 #include <IMP/kernel/Particle.h>
17 #include <IMP/SingletonContainer.h>
18 #include <IMP/RestraintSet.h>
19 #include <IMP/kernel/Model.h>
20 #include <IMP/core/internal/CoreClosePairContainer.h>
21 #include <IMP/display/Writer.h>
22 #include <IMP/dependency_graph.h>
24 
25 #ifdef IMP_DOMINO_USE_IMP_RMF
26 #include <RMF/HDF5/Group.h>
27 #endif
28 
29 IMPDOMINO_BEGIN_NAMESPACE
30 
31 //! Fill in assignments for a leaf
32 IMPDOMINOEXPORT void load_leaf_assignments(const Subset &subset,
33  AssignmentsTable *at,
34  AssignmentContainer *ac);
35 
36 //! Fill in assignments for an internal node
37 /** The passed assignments, the ordering for the children is that of
38  the node indexes for the children.
39 */
40 IMPDOMINOEXPORT void load_merged_assignments(
41  const Subset &first_subset, AssignmentContainer *first,
42  const Subset &second_subset, AssignmentContainer *second,
43  const SubsetFilterTablesTemp &filters, AssignmentContainer *ret);
44 
45 //! Sample from the merged assignments.
46 /** The passed assignments, the ordering for the children is that of
47  the node indexes for the children.
48 
49  It will try maximum_tries times to merge an assignment from the first
50  set with a randomly chosen assignment from the second. Note that
51  duplicate
52  solutions may be present in the output and the output will never be
53  guaranteed to be complete.
54 
55  \unstable{load_sampled_merged_assignments}
56  */
57 IMPDOMINOEXPORT void load_merged_assignments_random_order(
58  const Subset &first_subset, AssignmentContainer *first,
59  const Subset &second_subset, AssignmentContainer *second,
60  const SubsetFilterTablesTemp &filters, unsigned int maximum_tries,
61  AssignmentContainer *ret);
62 
63 IMPDOMINO_END_NAMESPACE
64 
65 #endif /* IMPDOMINO_INTERACTIVE_H */
IMP::base::Vector< IMP::base::WeakPointer< SubsetFilterTable > > SubsetFilterTablesTemp
Import IMP/kernel/SingletonContainer.h in the namespace.
Import IMP/kernel/RestraintSet.h in the namespace.
A Bayesian inference-based sampler.
A Bayesian inference-based sampler.
Cluster sets of points.
void load_leaf_assignments(const Subset &subset, AssignmentsTable *at, AssignmentContainer *ac)
Fill in assignments for a leaf.
void load_merged_assignments(const Subset &first_subset, AssignmentContainer *first, const Subset &second_subset, AssignmentContainer *second, const SubsetFilterTablesTemp &filters, AssignmentContainer *ret)
Fill in assignments for an internal node.
Base class for writing geometry to a file.
Storage of a model, its restraints, constraints and particles.
Classes to handle individual model particles. (Note that implementation of inline functions in in int...
A Bayesian inference-based sampler.
void load_merged_assignments_random_order(const Subset &first_subset, AssignmentContainer *first, const Subset &second_subset, AssignmentContainer *second, const SubsetFilterTablesTemp &filters, unsigned int maximum_tries, AssignmentContainer *ret)
Sample from the merged assignments.
A Bayesian inference-based sampler.
Import IMP/kernel/dependency_graph.h in the namespace.