IMP logo
IMP Reference Guide  develop.1a86c4215a,2024/04/24
The Integrative Modeling Platform
atom/python_only.h
Go to the documentation of this file.
1 /**
2  * \file IMP/atom/python_only.h
3  * \brief Functionality only available in Python.
4  *
5  * Copyright 2007-2022 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 available 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 
25 //! Print out the molecular hierarchy.
26 /** Equivalent to
27 \code
28 IMP::core::show(h);
29 \endcode
30 */
31 void show_molecular_hierarchy(Hierarchy h);
32 #endif
33 /** @} */
34 
35 IMPATOM_END_NAMESPACE
36 
37 #endif /* IMPATOM_PYTHON_ONLY_H */
void show_molecular_hierarchy(Hierarchy h)
Print out the molecular hierarchy.