IMP
2.1.0
The Integrative Modeling Platform
IMP Mainpage
All IMP Modules
Related Pages
Modules
Namespaces
Classes
Files
Examples
Indexes
File List
File Members
atom/python_only.h
Go to the documentation of this file.
1
/**
2
* \file IMP/atom/python_only.h
3
* \brief functionality only availble in python.
4
*
5
* Copyright 2007-2013 IMP Inventors. All rights reserved.
6
*
7
*/
8
9
#ifndef IMPATOM_PYTHON_ONLY_H
10
#define IMPATOM_PYTHON_ONLY_H
11
12
#include <IMP/atom/atom_config.h>
13
14
IMPATOM_BEGIN_NAMESPACE
15
16
/** \name Python Only
17
The following functions are only availale in Python as the
18
equivalent C++ functionality is provided via template
19
functions or in other ways that don't directly map to
20
python.
21
@{
22
*/
23
#ifdef IMP_DOXYGEN
24
/** Print out the molecular hierarchy. Equivalent to
25
\code
26
IMP::core::show(h);
27
\endcode
28
*/
29
void
show_molecular_hiearchy
(Hierarchy h);
30
#endif
31
/** @} */
32
33
IMPATOM_END_NAMESPACE
34
35
#endif
/* IMPATOM_PYTHON_ONLY_H */
IMP::atom::show_molecular_hiearchy
void show_molecular_hiearchy(Hierarchy h)