IMP
2.0.0
The Integrative Modeling Platform
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
kernel/input_output.h
Go to the documentation of this file.
1
/**
2
* \file IMP/kernel/input_output.h
3
* \brief Single variable function.
4
*
5
* Copyright 2007-2013 IMP Inventors. All rights reserved.
6
*/
7
8
#ifndef IMPKERNEL_INPUT_OUTPUT_H
9
#define IMPKERNEL_INPUT_OUTPUT_H
10
11
#include <IMP/kernel/kernel_config.h>
12
#include "
base_types.h
"
13
#include "
container_base.h
"
14
#include "
Particle.h
"
15
16
IMPKERNEL_BEGIN_NAMESPACE
17
18
/** \name Inputs and outputs
19
These methods recursively find all inputs or outputs of a given type.
20
21
If you don't want recursive, use the non input/output variants.
22
@{
23
*/
24
/** Return all the input particles for a given ModelObject.*/
25
IMPKERNELEXPORT ParticlesTemp
get_input_particles
(
const
ModelObjectsTemp
&mos);
26
27
/** Return all the input particles for a given ModelObject.*/
28
IMPKERNELEXPORT
ContainersTemp
29
get_input_containers
(
const
ModelObjectsTemp
&mos);
30
31
/** Return all the output particles for a given ModelObject.*/
32
IMPKERNELEXPORT ParticlesTemp
33
get_output_particles
(
const
ModelObjectsTemp
&mos);
34
35
/** Return all the output particles for a given ModelObject.*/
36
IMPKERNELEXPORT
ContainersTemp
37
get_output_containers
(
const
ModelObjectsTemp
&mos);
38
/** @} */
39
40
IMPKERNEL_END_NAMESPACE
41
42
#endif
/* IMPKERNEL_INPUT_OUTPUT_H */